ansible/test/integration/targets/setup_postgresql_replication/templates/replica_postgresql.conf.j2
Andrey Klychkov 22fe622589 postgresql_subscription: new module (#63661)
* postgresql_subscription: setup master-standby cluster into one container

* postgresql_subscription: setup master-standby cluster into one container, fix

* postgresql_subscription: setup master-standby cluster into one container, set up publication

* postgresql_subscription: setup master-standby cluster into one container, add module template

* postgresql_subscription: setup master-standby cluster into one container, fix tests

* postgresql_subscription: setup master-standby cluster into one container, create subscr via shell

* postgresql_subscription: setup replication, state stat

* postgresql_subscription: add basic present mode

* postgresql_subscription: add assertions

* postgresql_subscription: add samples

* postgresql_subscription: state absent, cascade

* postgresql_subscription: add owner param

* postgresql_subscription: update

* postgresql_subscription: refresh

* postgresql_subscription: doc, warns

* postgresql_subscription: relinfo

* postgresql_subscription: fixes

* postgresql_subscription: fix CI tests
2019-11-06 14:19:30 +00:00

28 lines
709 B
Django/Jinja

# Important parameters:
listen_addresses='*'
port = {{ replica_port }}
wal_level = logical
max_wal_senders = 8
track_commit_timestamp = on
max_replication_slots = 10
# Unimportant parameters:
max_connections=10
shared_buffers=8MB
dynamic_shared_memory_type=posix
log_destination='stderr'
logging_collector=on
log_directory='log'
log_filename='postgresql-%a.log'
log_truncate_on_rotation=on
log_rotation_age=1d
log_rotation_size=0
log_line_prefix='%m[%p]'
log_timezone='W-SU'
datestyle='iso,mdy'
timezone='W-SU'
lc_messages='en_US.UTF-8'
lc_monetary='en_US.UTF-8'
lc_numeric='en_US.UTF-8'
lc_time='en_US.UTF-8'
default_text_search_config='pg_catalog.english'