Hi, love your work!
One thing I've noticed by having a play is that you're setting far too many bgworkers which floods Postgres. For a 4CPU system try this:
'max_worker_processes': '8',
'max_parallel_workers': '4',
'max_parallel_workers_per_gather': '2',
When I set these I got much better results 😊
Hi, love your work!
One thing I've noticed by having a play is that you're setting far too many bgworkers which floods Postgres. For a 4CPU system try this:
When I set these I got much better results 😊