0

I did not enable parallel configurations in postgres. However while debugging found that parallel configurations has been enabled. On googling found how to set parallel configurations. Postgresql 10 - Parallel configuration

But how can I know my current configurations?

Postgres version: PostgreSQL 10.6

jarlh
  • 42,561
  • 8
  • 45
  • 63
Surya
  • 2,429
  • 1
  • 21
  • 42

1 Answers1

2

You can check the settings e.g. using this:

select *
from pg_settings
where name like '%parallel%';

Or for individual settings, use e.g. show max_parallel_workers_per_gather;