Skip to content

Commit

Permalink
Merge branch 'feat/INFRA-2749' into feat/INFRA-2749builder-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechsromek committed Aug 5, 2024
2 parents 672f50e + 236f155 commit d4a8be2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bin/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::{collections::HashMap, sync::Arc, time::Duration};
use tokio::{spawn, sync::Mutex, time::sleep};
use uuid::Uuid;

const N_QUERIES: usize = 32 * 20;
const N_QUERIES: usize = 64 * 20;
const REGION: &str = "eu-north-1";
const RNG_SEED_SERVER: u64 = 42;
const DB_SIZE: usize = 8 * 1_000;
Expand Down
2 changes: 1 addition & 1 deletion src/bin/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};

const REGION: &str = "eu-north-1";
const DB_SIZE: usize = 8 * 1_000;
const N_QUERIES: usize = 32;
const N_QUERIES: usize = 64;
const N_BATCHES: usize = 100;
const RNG_SEED: u64 = 42;
const SYNC_RESULTS: usize = N_QUERIES * 2;
Expand Down
2 changes: 1 addition & 1 deletion src/store/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub fn sync(comm: &Comm, state: &SyncState) -> Result<SyncResult> {
}

impl SyncState {
pub const MAX_REQUESTS: usize = 64;
pub const MAX_REQUESTS: usize = 128;
const SERIAL_SIZE: usize = 8192;

/// Serialize the state to a fixed-size buffer.
Expand Down

0 comments on commit d4a8be2

Please sign in to comment.