Skip to content

Commit

Permalink
chore/change-default-compaction-output-size-limit:
Browse files Browse the repository at this point in the history
 ### Update `TwcsOptions` Default Configuration

 - Modified the default value of `max_output_file_size` in `TwcsOptions` to `Some(ReadableSize::gb(2))` in `src/mito2/src/region/options.rs`.
  • Loading branch information
v0y4g3r committed Jan 16, 2025
1 parent 57f8afc commit 3885d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mito2/src/region/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ impl Default for TwcsOptions {
max_inactive_window_runs: 1,
max_inactive_window_files: 1,
time_window: None,
max_output_file_size: None,
max_output_file_size: Some(ReadableSize::gb(2)),
remote_compaction: false,
fallback_to_local: true,
}
Expand Down

0 comments on commit 3885d45

Please sign in to comment.