From: | Sameer Kumar <sameer(dot)kumar(at)ashnik(dot)com> |
---|---|
To: | Xavier 12 <maniatux(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: pg_xlog on a hot_stanby slave |
Date: | 2015-06-17 01:17:06 |
Message-ID: | CADp-Sm6gQ_e4Uo39BO78MgQZWLSJK+Qe+MC34SCwiDqsZ+E57A@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-general |
On Tue, 16 Jun 2015 16:55 Xavier 12 <maniatux(at)gmail(dot)com> wrote:
Hi everyone,
Questions about pg_xlogs again...
I have two Postgresql 9.1 servers in a master/slave stream replication
(hot_standby).
Psql01 (master) is backuped with Barman and pg_xlogs is correctly
purged (archive_command is used).
Hower, Psql02 (slave) has a huge pg_xlog (951 files, 15G for 7 days
only, it keeps growing up until disk space is full). I have found
documentation and tutorials, mailing list, but I don't know what is
suitable for a Slave. Leads I've found :
- checkpoints
- archive_command
- archive_cleanup
Master postgresq.conf :
[...]
wal_level = 'hot_standby'
archive_mode = on
archive_command = 'rsync -az /var/lib/postgresql/9.1/main/pg_xlog/%f
barman(at)nas(dot)lan:/data/pgbarman/psql01/incoming/%f'
max_wal_senders = 5
wal_keep_segments = 64
What's this parameter's value on Slave?
autovacuum = on
Slave postgresql.conf :
[...]
wal_level = minimal
wal_keep_segments = 32
hot_standby = on
Slave recovery.conf :
standby_mode = 'on'
primary_conninfo = 'host=10.0.0.1 port=5400 user=postgres'
trigger_file = '/var/lib/postgresql/9.1/triggersql'
restore_command='cp /var/lib/postgresql/9.1/wal_archive/%f "%p"'
archive_cleanup_command =
'/usr/lib/postgresql/9.1/bin/pg_archivecleanup
/var/lib/postgresql/9.1/wal_archive/ %r'
How can I reduce the number of WAL files on the hot_stanby slave ?
Thanks
Regards.
Xavier C.
--
Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Munro | 2015-06-17 01:25:53 | Re: BUG #13440: unaccent does not remove all diacritics |
Previous Message | digoal | 2015-06-17 00:45:24 | BUG #13448: DOC about : pg_dump use logical replication snapshot |
From | Date | Subject | |
---|---|---|---|
Next Message | Bill Moran | 2015-06-17 01:45:10 | Re: serialization failure why? |
Previous Message | Douglas Stetner | 2015-06-17 01:09:02 | pg_dump 8.4.9 failing after upgrade to openssl-1.0.1e-30.el6_6.11.x86_64 on redhat linux |