You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 12, 2020. It is now read-only.
I'd like to increase the max_connections setting in the postgresql.conf file. I understand that on a first-run, this file will be created by initdb. Is there a way to adjust the config settings when (or after) the file is written, or in any case before starting the server process?
The text was updated successfully, but these errors were encountered:
attila-kiss-it
pushed a commit
to attila-kiss-it/postgresql-embedded
that referenced
this issue
Oct 19, 2018
hi, why do you expose parameters as list, it is so confusing. I have to guess whether this should be asList("param", "value", "param2", "value2") or asList("param=value", "param2=value2").
cannot it be just a Map/Properties that will be transformed internally to something else???
looking at AbstractPostgresConfig.java it should be something like asList("-c", "max_replication_slots=1", "-c", "max_wal_senders=1", "-c", "wal_level=logical")
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'd like to increase the
max_connections
setting in the postgresql.conf file. I understand that on a first-run, this file will be created byinitdb
. Is there a way to adjust the config settings when (or after) the file is written, or in any case before starting the server process?The text was updated successfully, but these errors were encountered: