Re: pg_xlog and standby

Поиск
Список
Период
Сортировка
От Greg Smith
Тема Re: pg_xlog and standby
Дата
Msg-id Pine.GSO.4.64.0801231954450.12679@westnet.com
обсуждение исходный текст
Ответ на Re: pg_xlog and standby  ("Roberto Scattini" <roberto.scattini@gmail.com>)
Список pgsql-general
On Wed, 23 Jan 2008, Roberto Scattini wrote:

> the problem that im having is that i have A LOT of
> archive files on pg_xlog dir, and thats because the archive_command
> keeps failing (the standby server had filled his disk with archives
> received but not proccesed), so now, i dont know how i can remove
> those files and start again...

Under normal operation the checkpoint process will look at the number of
already created archive files, keep around up to (2*checkpoint_segments+1)
of them for future use, and delete the rest of them.  You never delete
them yourself, the server will take care of that automatically once it
gets to where it makes that decision.  If you set checkpoint_segments to
some very high number they can end up taking many GB worth of storage,
increasing that parameter has at least two costs associated with it (the
other being a longer recovery time).

Managing old archive logs on the backup server is your problem and related
tools like pg_standby help deal with that.  Managing them on the primary
server is that server's problem and you shouldn't touch them.  You can
execute a manual CHECKPOINT at the psql prompt if you want to force this
reclaimation to happen (there has to have been some activity since the
last checkpoint for this to work which doesn't sound like a problem on
your server).

--
* Greg Smith gsmith@gregsmith.com http://www.gregsmith.com Baltimore, MD

В списке pgsql-general по дате отправления:

Предыдущее
От: "Dominique Bessette - Halsema"
Дата:
Сообщение: constraints in table
Следующее
От: Raymond O'Donnell
Дата:
Сообщение: Re: constraints in table