Streaming a base backup from master

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Streaming a base backup from master
Дата
Msg-id 4C80D9B8.2020301@enterprisedb.com
обсуждение исходный текст
Ответы Re: Streaming a base backup from master  (Thom Brown <thom@linux.com>)
Re: Streaming a base backup from master  (Dave Page <dpage@pgadmin.org>)
Re: Streaming a base backup from master  (Magnus Hagander <magnus@hagander.net>)
Re: Streaming a base backup from master  (Greg Stark <gsstark@mit.edu>)
Список pgsql-hackers
It's been discussed before that it would be cool if you could stream a
new base backup from the master server, via libpq. That way you would
not need low-level filesystem access to initialize a new standby.

Magnus mentioned today that he started hacking on that, and
coincidentally I just started experimenting with it yesterday as well
:-). So let's get this out on the mailing list.

Here's a WIP patch. It adds a new "TAKE_BACKUP" command to the
replication command set. Upon receiving that command, the master starts
a COPY, and streams a tarred copy of the data directory to the client.
The patch includes a simple command-line tool, pg_streambackup, to
connect to a server and request a backup that you can then redirect to a
.tar file or pipe to "tar x".

TODO:

* We need a smarter way to do pg_start/stop_backup() with this. At the
moment, you can only have one backup running at a time, but we shouldn't
have that limitation with this built-in mechanism.

* The streamed backup archive should contain all the necessary WAL files
too, so that you don't need to set up archiving to use this. You could
just point the tiny client tool to the server, and get a backup archive
containing everything that's necessary to restore correctly.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

Вложения

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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: thousand unrelated data files in pg_default tablespace
Следующее
От: Thom Brown
Дата:
Сообщение: Re: Streaming a base backup from master