Skip to content

Commit

Permalink
Merge pull request #232 from superfly/sync-cleared-versions
Browse files Browse the repository at this point in the history
calculate cost better
  • Loading branch information
somtochiama committed Jul 5, 2024
2 parents 47ae385 + af3443f commit 55352db
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/corro-agent/src/agent/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ pub async fn handle_emptyset(
Some(change) => {
if let Changeset::EmptySet { versions, ts } = change.changeset {
buf.entry(change.actor_id).or_insert(VecDeque::new()).push_back((versions.clone(), ts));
cost += versions.len();
cost += versions.iter().map(|versions| cmp::min((versions.end().0 - versions.start().0) as usize + 1, 20)).sum::<usize>();
} else {
warn!("received non-emptyset changes in emptyset channel from {}", change.actor_id);
}
Expand All @@ -451,12 +451,14 @@ pub async fn handle_emptyset(
}

if process {

for (actor, changes) in &mut buf {
while !changes.is_empty() {
let change = changes.pop_front().unwrap();
match process_emptyset(agent.clone(), bookie.clone(), *actor, &change).await {
Ok(()) => {
cost -= change.0.len();
// cost -= change.0.len();
cost -= change.0.iter().map(|versions| cmp::min((versions.end().0 - versions.start().0) as usize + 1, 20)).sum::<usize>();
}
Err(e) => {
warn!("encountered error when processing emptyset - {e}");
Expand All @@ -467,6 +469,7 @@ pub async fn handle_emptyset(
}
}
}

}

println!("shutting down handle empties loop");
Expand Down

0 comments on commit 55352db

Please sign in to comment.