Postgresql Processes
Parameters max_worker_processes: parallel processes. Usually, default value is low. Load stress with pgbench Reference pgbench is provided with postgres-client package. 1 pgbench -h <host> -U <user> -T 60 -c 10 -j 2 <dbname> First step: Initialise db The pgbench_branches table in the target database. This table is automatically created during initialisation with pgbench. To solve this problem, you need to initialise the database with the following command: -i initialise pgbench tables (pgbench_branches, pgbench_accounts, pgbench_tellers, etc....