mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Disabled replicated max parallel fetches/sends, because it does not work properly [#CLICKHOUSE-2960].
This commit is contained in:
parent
ee6a7ee204
commit
110defd56f
@ -80,11 +80,11 @@ struct MergeTreeSettings
|
||||
size_t replicated_max_missing_active_parts = 20;
|
||||
|
||||
/// Limit parallel fetches
|
||||
size_t replicated_max_parallel_fetches = 4;
|
||||
size_t replicated_max_parallel_fetches_for_table = 2;
|
||||
size_t replicated_max_parallel_fetches = 0;
|
||||
size_t replicated_max_parallel_fetches_for_table = 0;
|
||||
/// Limit parallel sends
|
||||
size_t replicated_max_parallel_sends = 4;
|
||||
size_t replicated_max_parallel_sends_for_table = 2;
|
||||
size_t replicated_max_parallel_sends = 0;
|
||||
size_t replicated_max_parallel_sends_for_table = 0;
|
||||
|
||||
/// If ration of wrong parts to total number of parts is less than this - allow to start anyway.
|
||||
double replicated_max_ratio_of_wrong_parts = 0.05;
|
||||
|
Loading…
Reference in New Issue
Block a user