Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions native/shuffle/benches/shuffle_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ fn criterion_benchmark(c: &mut Criterion) {
}
}

// This 8,000-column schema uses about 1.4 MiB of the serialized-plus-parsed cache budget.
// Compare warm and cold decoding here to catch accidental cache-admission cutoffs.
let batch = batch_of(8000, 64, Strings::Plain);
let block = encode_block(&batch, codec.clone());
bench_block(&mut group, &format!("{codec_name}/8000col_64row"), &block);

// the dictionary batch before every record batch, at a narrow and a wide block
for num_rows in [64usize, 8192] {
let batch = batch_of(5, num_rows, Strings::Dictionary);
Expand Down
Loading
Loading