Re: pg_upgrade + streaming replication ?

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Lonni J Friedman <netllama(at)gmail(dot)com>
Cc: Jeff Davis <pgsql(at)j-davis(dot)com>, pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: pg_upgrade + streaming replication ?
Date: 2012-03-20 20:49:16
Message-ID: 20120320204916.GB26163@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, Mar 20, 2012 at 02:58:20PM -0400, Bruce Momjian wrote:
> On Tue, Mar 20, 2012 at 11:56:29AM -0700, Lonni J Friedman wrote:
> > >> So how can you resume streaming without rebuilding the slaves?
> > >
> > > Oh, wow, I never thought of the fact that the system tables will be
> > > different?   I guess you could assume the pg_dump restore is going to
> > > create things exactly the same on all the systems, but I never tested
> > > that.  Do the system id's have to match?  That would be a problem
> > > because you are initdb'ing on each server.  OK, crazy idea, but I
> > > wonder if you could initdb on the master, then copy that to the slaves,
> > > then run pg_upgrade on each of them.  Obviously this needs some testing.
> >
> > Wouldn't it be easier to just pg_upgrade the master, then setup the
> > slaves from scratch (with rsync, etc)? It certainly wouldn't be any
> > more work to do it that way (although still a lot more work than
> > simply running pg_upgrade on all servers).
>
> Hey, wow, that is an excellent idea because rsync is going to realize
> that all the user-data files are exactly the same and skip them --- that
> is the winner solution. I should probably add this to the pg_upgrade
> documentaiton. Thanks.

Actually, I am not sure how well rsync will work, because by default it
only skips files with matching file timestamp and size, and I bet many
of the file will have different times because of streaming replication
lag, and server time lag. I think we need this rsync options:

-c, --checksum
This changes the way rsync checks if the files have been
changed and are in need of a transfer. Without this option,
rsync uses a "quick check" that (by default) checks if each
file's size and time of last modification match
between the sender and receiver. This option changes
this to compare a 128-bit checksum for each file that has
a matching size. Generating the check sums means that
both sides will expend a lot of disk I/O reading all the
data in the files in the transfer (and this is prior to
any reading that will be done to transfer changed files),
so this can slow things down significantly.

The sending side generates its checksums while it is
doing the file-system scan that builds the list of the
available files. The receiver generates its checksums when
it is scanning for changed files, and will checksum any file
that has the same size as the corresponding sender's file:
files with either a changed size or a changed checksum are
selected for transfer.

and I suspect that will be slow. Probably better than nothing, but not
super-fast either.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ It's impossible for everything to be true. +

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Guillaume Lelarge 2012-03-20 20:53:41 Re: pg-admin development snapshots
Previous Message Bryan Lee Nuse 2012-03-20 20:16:01 Re: Is it even possible?