无法设置 `task_executor_type`

Can not set `task_executor_type`

当我尝试将 citus 集群配置值放入 postgresql.conf 文件时:

citus.task_executor_type =  "task-tracker"

我收到错误:

service postgresql restart
Error: Invalid line 637 in /etc/postgresql/9.5/main/postgresql.conf: »citus.task_executor_type =  "task-tracker"«
 * No PostgreSQL clusters exist; see "man pg_createcluster"

请告诉我如何默认设置此配置值? 我还没有准备好 运行 SET citus.task_executor_type TO "task-tracker" 每个连接。

我不确定,但您使用的是双引号而不是单引号,这可能是问题所在。尝试使用单引号,例如:

citus.task_executor_type = 'task-tracker'