Postgresql Автоматическая очистка архива не происходит
Я прочитал несколько документов по восстановлению и очистке архива postgresql, но мой сервер postgresql все еще не удаляет архив, или я не совсем понял, как он работает.
Просто я написал сценарий оболочки для очистки архива WAL. Когда я запускаю сценарий из командной строки, он работает и удаляет мой архив (я оставляю только архив не позднее трех дней). Мой скрипт называется pg_archive_cleanup, он исполняемый и находится здесь: / usr / sbin /
И я настраиваю свой /etc/postgresql/9.3/main/recovery.conf следующим образом:
# -------------------------------
# PostgreSQL recovery config file
# -------------------------------
#
# Edit this file to provide the parameters that PostgreSQL needs to
# perform an archive recovery of a database, or to act as a replication
# standby.
#
# If "recovery.conf" is present in the PostgreSQL data directory, it is
# read on postmaster startup. After successful recovery, it is renamed
# to "recovery.done" to ensure that we do not accidentally re-enter
# archive recovery or standby mode.
#
# This file consists of lines of the form:
#
# name = value
#
# Comments are introduced with '#'.
#
# The complete list of option names and allowed values can be found
# in the PostgreSQL documentation.
#
#---------------------------------------------------------------------------
# ARCHIVE RECOVERY PARAMETERS
#---------------------------------------------------------------------------
# archive_cleanup_command
#
# specifies an optional shell command to execute at every restartpoint.
# This can be useful for cleaning up the archive of a standby server.
#
archive_cleanup_command = '/usr/sbin/pg_archive_cleanup'
#
#---------------------------------------------------------------------------
# RECOVERY TARGET PARAMETERS
#---------------------------------------------------------------------------
#
# By default, recovery will rollforward to the end of the WAL log.
# If you want to stop rollforward at a specific point, you
# must set a recovery target.
#
# You may set a recovery target either by transactionId, by name,
# or by timestamp. Recovery may either include or exclude the
# transaction(s) with the recovery target value (ie, stop either
# just after or just before the given target, respectively).
#
#
#recovery_target_name = '' # e.g. 'daily backup 2011-01-26'
#
#recovery_target_time = '' # e.g. '2004-07-14 22:39:00 EST'
#
#recovery_target_xid = ''
#
#recovery_target_inclusive = true
#
#
# If you want to recover into a timeline other than the "main line" shown in
# pg_control, specify the timeline number here, or write 'latest' to get
# the latest branch for which there's a history file.
#
#recovery_target_timeline = 'latest'
#
#
# If pause_at_recovery_target is enabled, recovery will pause when
# the recovery target is reached. The pause state will continue until
# pg_xlog_replay_resume() is called. This setting has no effect if
# hot standby is not enabled, or if no recovery target is set.
#
#pause_at_recovery_target = true
#
#---------------------------------------------------------------------------
# STANDBY SERVER PARAMETERS
#---------------------------------------------------------------------------
#
# standby_mode
#
# When standby_mode is enabled, the PostgreSQL server will work as a
# standby. It will continuously wait for the additional XLOG records, using
# restore_command and/or primary_conninfo.
#
standby_mode = on
restore_command = 'cp /var/lib/postgresql/database/archive/%f "%p"'
#
# primary_conninfo
#
# If set, the PostgreSQL server will try to connect to the primary using this
# connection string and receive XLOG records continuously.
#
primary_conninfo = 'host=db-master port=5432 user=repli password=Esibfegiav4' # e.g. 'host=localhost port=5432'
#
#
# By default, a standby server keeps restoring XLOG records from the
# primary indefinitely. If you want to stop the standby mode, finish recovery
# and open the system in read/write mode, specify path to a trigger file.
# The server will poll the trigger file path periodically and start as a
# primary server when it's found.
#
trigger_file = '/var/lib/postgresql/database/failover_trigger'
#
#---------------------------------------------------------------------------
# HOT STANDBY PARAMETERS
#---------------------------------------------------------------------------
#
# Hot Standby related parameters are listed in postgresql.conf
#
#---------------------------------------------------------------------------
Вы можете увидеть линию
archive_cleanup_command = '/usr/sbin/pg_archive_cleanup'
Мой скрипт очистки:
#!/bin/bash
ARCHIVEDIR='/var/lib/postgresql/database/archive'
CHECKPOINT=$(find $ARCHIVEDIR -type f -mtime +3 -type f -printf '%f\n' | sort -r | head -1)
cd $ARCHIVEDIR
/usr/bin/pg_archivecleanup $ARCHIVEDIR $CHECKPOINT
find $ARCHIVEDIR -type f -mtime +3 -a -type f -a ! -newer $CHECKPOINT -delete
Но через 4 дня дисковое пространство выросло. Я видел в документации, что файл recovery.conf читается по адресу check_point и restart_point... Итак, я хотел бы знать, почему архив не удаляется автоматически? Где я могу установить происшествие? Когда Postgresl должен провести чистку? Я хочу, чтобы это происходило каждый день, я должен вместо этого поместить мой скрипт очистки в crontab? Или где-то еще? И у меня также нет никаких следов в моих файлах журнала postgresql. Где пишется журнал очистки?
Спасибо за ваши ответы.
2 ответа
pg_archivecleanup
принимает аргументы:
$ /usr/pgsql-9.4/bin/pg_archivecleanup
pg_archivecleanup: must specify archive location
Try "pg_archivecleanup --help" for more information.
Если вы посмотрите в журналах реплики, вы, вероятно, увидите повторное сообщение справки от pg_archivecleanup
,
Руководство показывает, что archive_cleanup_command
имеет %r
подстановка последней действительной точки перезапуска, и показывает пример конфигурации:
archive_cleanup_command = 'pg_archivecleanup /mnt/server/archivedir %r'
Я решил проблему.
Мой сценарий и моя конфигурация были хорошими. Я просто не перезапускал сервис postgresql, чтобы получить новую точку перезапуска с учетом моих изменений.
Я перезапустил сервис, и теперь он работает нормально, как и ожидалось.
Спасибо @Craig