Skip to content

Commit

Permalink
chore(bench): increase key count (#15002)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel authored Feb 7, 2024
1 parent 8735491 commit 8313b0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/storage/benches/bench_compactor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ pub fn test_key_of(idx: usize, epoch: u64) -> FullKey<Vec<u8>> {
)
}

const MAX_KEY_COUNT: usize = 128 * 1024;
/// 8M keys.
const MAX_KEY_COUNT: usize = 8 * 1024 * 1024;

async fn build_table(
sstable_store: SstableStoreRef,
Expand Down

0 comments on commit 8313b0a

Please sign in to comment.