remove occurrences of task-tracker from gucs

pull/4042/head
Sait Talha Nisanci 2020-07-20 10:54:03 +03:00
parent 6aa29abd86
commit a3dc8fe2b5
1 changed files with 2 additions and 5 deletions

View File

@ -1249,10 +1249,7 @@ RegisterCitusConfigVariables(void)
gettext_noop("The master node chooses between two different executor types " gettext_noop("The master node chooses between two different executor types "
"when executing a distributed query.The adaptive executor is " "when executing a distributed query.The adaptive executor is "
"optimal for simple key-value lookup queries and queries that " "optimal for simple key-value lookup queries and queries that "
"involve aggregations and/or co-located joins on multiple shards. " "involve aggregations and/or co-located joins on multiple shards. "),
"The task-tracker executor is optimal for long-running, complex "
"queries that touch thousands of shards and/or that involve table "
"repartitioning."),
&TaskExecutorType, &TaskExecutorType,
MULTI_EXECUTOR_ADAPTIVE, MULTI_EXECUTOR_ADAPTIVE,
task_executor_type_options, task_executor_type_options,
@ -1262,7 +1259,7 @@ RegisterCitusConfigVariables(void)
DefineCustomBoolVariable( DefineCustomBoolVariable(
"citus.enable_repartition_joins", "citus.enable_repartition_joins",
gettext_noop("Allows Citus to use task-tracker executor when necessary."), gettext_noop("Allows Citus to repartition data between nodes."),
NULL, NULL,
&EnableRepartitionJoins, &EnableRepartitionJoins,
false, false,