diff options
Diffstat (limited to 'src/bin/pg_resetxlog/pg_resetxlog.c')
-rw-r--r-- | src/bin/pg_resetxlog/pg_resetxlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_resetxlog/pg_resetxlog.c b/src/bin/pg_resetxlog/pg_resetxlog.c index 2b76f640797..1beee7f8eb8 100644 --- a/src/bin/pg_resetxlog/pg_resetxlog.c +++ b/src/bin/pg_resetxlog/pg_resetxlog.c @@ -584,7 +584,7 @@ GuessControlValues(void) ControlFile.wal_log_hints = false; ControlFile.track_commit_timestamp = false; ControlFile.MaxConnections = 100; - ControlFile.max_worker_processes = 8; + ControlFile.max_worker_processes = 16; ControlFile.max_prepared_xacts = 0; ControlFile.max_locks_per_xact = 64; @@ -800,7 +800,7 @@ RewriteControlFile(void) ControlFile.wal_log_hints = false; ControlFile.track_commit_timestamp = false; ControlFile.MaxConnections = 100; - ControlFile.max_worker_processes = 8; + ControlFile.max_worker_processes = 16; ControlFile.max_prepared_xacts = 0; ControlFile.max_locks_per_xact = 64; |