Skip to content

Commit

Permalink
fix: use larger batch size and smaller linger for anchor worker
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Oct 26, 2023
1 parent 69b3591 commit 5d5042e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operator/src/network/cas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,12 +426,12 @@ pub fn cas_stateful_set_spec(
},
EnvVar {
name: "ANCHOR_BATCH_SIZE".to_owned(),
value: Some("1".to_owned()),
value: Some("20".to_owned()),
..Default::default()
},
EnvVar {
name: "ANCHOR_BATCH_LINGER".to_owned(),
value: Some("5m".to_owned()),
value: Some("10s".to_owned()),
..Default::default()
},
// Disable worker monitoring since we're not launching workers
Expand Down

0 comments on commit 5d5042e

Please sign in to comment.