Disabled replicated max parallel fetches/sends, because it does not work properly [#CLICKHOUSE-2960].

This commit is contained in:
Alexey Milovidov 2017-04-20 21:38:17 +03:00
parent ee6a7ee204
commit 110defd56f

View File

@ -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;