Have you played with any of these settings? postgres=# select version(); version --------------------------------------------------------------------------------------------------------- PostgreSQL 10.7 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36), 64-bit (1 row) postgres=# select name, setting, unit,short_desc from pg_settings where name ~ 'para'; name | setting | unit | short_desc ---------------------------------+---------+------+---------------------------------------------------------------------------------------------------- force_parallel_mode | off | | Forces use of parallel query facilities. max_parallel_workers | 16 | | Sets the maximum number of parallel workers that can be active at one time. max_parallel_workers_per_gather | 8 | | Sets the maximum number of parallel processes per executor node. min_parallel_index_scan_size | 64 | 8kB | Sets the minimum amount of index data for a parallel scan. min_parallel_table_scan_size | 1024 | 8kB | Sets the minimum amount of table data for a parallel scan. parallel_setup_cost | 1000 | | Sets the planner's estimate of the cost of starting up worker processes for parallel query. parallel_tuple_cost | 0.1 | | Sets the planner's estimate of the cost of passing each tuple (row) from worker to master backend. ssl_dh_params_file | | | Location of the SSL DH parameters file. (8 rows) |