Raising limit on max size for merge (step 1 of 4) [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2017-08-19 01:56:19 +03:00
parent 8ee56421ab
commit e25f232b5a

View File

@ -22,7 +22,7 @@ struct MergeTreeSettings
/** Merge settings. */
/// Maximum in total size of parts to merge, when there are maximum (minimum) free threads in background pool (or entries in replication queue).
size_t max_bytes_to_merge_at_max_space_in_pool = 100ULL * 1024 * 1024 * 1024;
size_t max_bytes_to_merge_at_max_space_in_pool = 150ULL * 1024 * 1024 * 1024;
size_t max_bytes_to_merge_at_min_space_in_pool = 1024 * 1024;
/// How many tasks of merging parts are allowed simultaneously in ReplicatedMergeTree queue.