use scalar for file shape; increase shape for small-type columns

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2025-01-25 02:06:44 +00:00
parent 29a19ba437
commit 186c459584
2 changed files with 5 additions and 3 deletions

View file

@ -33,7 +33,7 @@ fn descriptor_cf_options(
opts.set_write_buffer_size(desc.write_size);
opts.set_target_file_size_base(desc.file_size);
opts.set_target_file_size_multiplier(desc.file_shape[0]);
opts.set_target_file_size_multiplier(desc.file_shape);
opts.set_level_zero_file_num_compaction_trigger(desc.level0_width);
opts.set_level_compaction_dynamic_level_bytes(false);