Skip to content

Commit

Permalink
fixed max_spill_size default value
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjsj authored and hntd187 committed Aug 19, 2024
1 parent 25905c9 commit b762cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/src/operations/optimize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ impl<'a> OptimizeBuilder<'a> {
commit_properties: CommitProperties::default(),
preserve_insertion_order: false,
max_concurrent_tasks: num_cpus::get(),
max_spill_size: 20 * 1024 * 1024 * 2014, // 20 GB.
max_spill_size: 20 * 1024 * 1024 * 1024, // 20 GB.
optimize_type: OptimizeType::Compact,
min_commit_interval: None,
}
Expand Down

0 comments on commit b762cb2

Please sign in to comment.