getting "ERROR: unrecognized configuration parameter "max_parallel_workers_per_gather" while doing parallel processing in Postgres SQL
getting "ERROR: unrecognized configuration parameter "max_parallel_workers_per_gather" while doing parallel processing in Postgres SQL
我的代码
SET max_parallel_workers_per_gather = 2;
错误
ERROR: unrecognized configuration parameter "max_parallel_workers_per_gather"
注意- 当我想启用并行处理时使用 Postgres SQL,出现上述错误。
我使用的是 postgresql 9.6,没有出现任何错误。
这是我的做法:
使用 root 权限打开 /etc/postgresql/9.6/main/postgresql.conf
取消注释 max_parallel_workers_per_gather
并相应地设置值。
保存它然后通过
重新启动 postgresql
sudo 服务 postgresql 重启
postgresql.conf内部:-
max_worker_processes = 8 # (change requires restart)
max_parallel_workers_per_gather = 4 # taken from max_worker_processes
我的代码
SET max_parallel_workers_per_gather = 2;
错误
ERROR: unrecognized configuration parameter "max_parallel_workers_per_gather"
注意- 当我想启用并行处理时使用 Postgres SQL,出现上述错误。
我使用的是 postgresql 9.6,没有出现任何错误。
这是我的做法:
使用 root 权限打开 /etc/postgresql/9.6/main/postgresql.conf
取消注释 max_parallel_workers_per_gather
并相应地设置值。
保存它然后通过
sudo 服务 postgresql 重启
postgresql.conf内部:-
max_worker_processes = 8 # (change requires restart)
max_parallel_workers_per_gather = 4 # taken from max_worker_processes