Skip to content

Commit

Permalink
Enabling parallel merging of intermediate aggregation results in memo…
Browse files Browse the repository at this point in the history
…ry efficient mode [#METR-22237].
  • Loading branch information
alexey-milovidov committed Sep 19, 2016
1 parent 891a0ea commit 2dd04b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dbms/include/DB/Interpreters/Settings.h
Expand Up @@ -103,9 +103,9 @@ struct Settings
M(SettingUInt64, group_by_two_level_threshold_bytes, 100000000) \
/** Включён ли экономный по памяти режим распределённой агрегации. */ \
M(SettingBool, distributed_aggregation_memory_efficient, false) \
/** Сколько потоков использовать для мерджа результатов в режиме, экономном по памяти. Чем больше, чем больше памяти расходуется. \
* 0, означает - столько же, сколько max_threads. Временно выставленно в 1, так как реализация некорректна. */ \
M(SettingUInt64, aggregation_memory_efficient_merge_threads, 1) \
/** Number of threads to use for merge intermediate aggregation results in memory efficient mode. When bigger, then more memory is consumed. \
* 0 means - same as 'max_threads'. */ \
M(SettingUInt64, aggregation_memory_efficient_merge_threads, 0) \
\
/** Максимальное количество используемых реплик каждого шарда при выполнении запроса */ \
M(SettingUInt64, max_parallel_replicas, 1) \
Expand Down Expand Up @@ -223,7 +223,7 @@ struct Settings
\
/** Write add http CORS header */ \
M(SettingBool, add_http_cors_header, false) \

/// Всевозможные ограничения на выполнение запроса.
Limits limits;

Expand Down

0 comments on commit 2dd04b3

Please sign in to comment.