mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 20:32:56 +00:00
chore: change default compaction output size limit to 2GB (#5378)
chore/change-default-compaction-output-size-limit: ### 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`.
This commit is contained in:
@@ -248,7 +248,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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user