Skip to content

Commit 8622793

Browse files
committed
0.1MB resize
Signed-off-by: Martin Prammer <martin@spiraldb.com>
1 parent 9406303 commit 8622793

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

vortex-file/src/strategy.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,10 @@ impl WriteStrategyBuilder {
248248
// sufficient read concurrency for the desired throughput. One megabyte is small
249249
// enough to achieve this for S3 (Durner et al., "Exploiting Cloud Object Storage for
250250
// High-Performance Analytics", VLDB Vol 16, Iss 11).
251-
block_size_minimum: ONE_MEG,
251+
// 2026.04.15: try 0.1MB instead of 1MB.
252+
block_size_minimum: ONE_MEG / 10,
252253
block_len_multiple: self.row_block_size,
253-
block_size_target: Some(ONE_MEG),
254+
block_size_target: Some(ONE_MEG / 10),
254255
canonicalize: true,
255256
},
256257
);

0 commit comments

Comments
 (0)