Re: Replication question

From: Jeff Janes <jeff(dot)janes(at)gmail(dot)com>
To: Scot(dot)Kreienkamp(at)la-z-boy(dot)com
Cc: Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Replication question
Date: 2018-10-23 13:06:06
Message-ID: CAMkU=1yUJfbukEoq8JGdj6H=M0njUUV2HvpdG_=cbt1WX76o9w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Mon, Oct 22, 2018 at 1:20 PM Scot Kreienkamp <
Scot(dot)Kreienkamp(at)la-z-boy(dot)com> wrote:

> I remember thinking it was pulling from archive with the restore command
> if necessary to augment what it had on disk. If that was the case I wanted
> to configure it. I don’t care for the replication slots due to the
> possible disk space issue as we don’t run shifts around the clock. So I’ll
> have to mount the archive via NFS like I had before, not a big deal.
>

If the archive partition fills up, then your archive command will start
failing, which means your pg_xlog will also start filling up. If you can
dedicate the same amount of space to the new pg_xlog as you currently have
dedicated to pg_wal + archive partition, then there should be no increased
risk of running out of disk space. Except that you can have
archive_command compress the WAL files upon archival, which can save a lot
of space. Of course there are a variety of reasons that that might not
work, like you use small fast disk for pg_xlog and big slow ones for
archive, or pg_xlog is your problem while archive is some other guy's
problem. But it is something to consider.

> As an alternative to NFS I was thinking about making the archives
> available via HTTPD and using wget or curl in my script instead of a copy
> from NFS. That seems like it would work better from the remote sites.
>
>
>
Yeah, or rsync or scp.

Cheers,

Jeff

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Hellmuth Vargas 2018-10-23 13:10:10 Re: Postgres 10, slave not catching up with master
Previous Message Hellmuth Vargas 2018-10-23 13:05:44 Re: Select "todays" timestamps in an index friendly way