Re: About the structure of WAL Files.

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: About the structure of WAL Files.
Дата
Msg-id 20060315135230.GI5222@surnet.cl
обсуждение исходный текст
Ответ на Re: [PATCHES] About the structure of WAL Files.  (Simon Riggs <simon@2ndquadrant.com>)
Список pgsql-hackers
Simon Riggs wrote:
> On Wed, 2006-03-15 at 09:12 -0400, Alvaro Herrera wrote:
> > Charlie Wang wrote:
> > > I want to write a function to expose the content of WAL Files as streams,
> > > and then send to somewhere else, record by record. 
> > 
> > Re: the WAL records, most likely they are useless outside the server
> > that generated them, because they refer to relations using Oids, and to
> > specific page addresses which are probably not going to be exactly the
> > same anywhere else (consider VACUUM commands running at different
> > times).
> 
> Yet it should be pointed out that there is a commercial product that
> says it uses this information to provide a replication system for
> PostgreSQL, so presumably that problem can be solved...

Are you referring to Mammoth Replicator?  Let me point out that it
doesn't really use the WAL.

Now that I think of it, maybe the problem _can_ be solved.  Consider
e.g. the WAL-dispatcher resolving the relation Oids to relnames before
shipping, and the WAL-receiver resolving that back to a local Oid before
"applying".  And it only needs to get the tuple contents; it can ignore
the position, and it can resolve the indexing by itself.

-- 
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support


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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: Re: [PATCHES] About the structure of WAL Files.
Следующее
От: "Jonah H. Harris"
Дата:
Сообщение: Re: [PATCHES] About the structure of WAL Files.