We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9406303 commit 8622793Copy full SHA for 8622793
1 file changed
vortex-file/src/strategy.rs
@@ -248,9 +248,10 @@ impl WriteStrategyBuilder {
248
// sufficient read concurrency for the desired throughput. One megabyte is small
249
// enough to achieve this for S3 (Durner et al., "Exploiting Cloud Object Storage for
250
// High-Performance Analytics", VLDB Vol 16, Iss 11).
251
- block_size_minimum: ONE_MEG,
+ // 2026.04.15: try 0.1MB instead of 1MB.
252
+ block_size_minimum: ONE_MEG / 10,
253
block_len_multiple: self.row_block_size,
- block_size_target: Some(ONE_MEG),
254
+ block_size_target: Some(ONE_MEG / 10),
255
canonicalize: true,
256
},
257
);
0 commit comments