Pg_upgrade remote copy

Started by AI Rummanover 10 years ago5 messageshackers
Jump to latest
#1AI Rumman
rummandba@gmail.com

Hi,

In pg_upgrade, how about adding a feature to copy data directory over
network.
That is, we can run pg_upgrade from our new host, where old host will be a
remote machine.
We can add two parameters - oldhost and if it is used, pg_upgrade will
identify the old host as remote and instead of local copy, it will use
remote copy.

What do you think about it?

Thanks.

#2Bruce Momjian
bruce@momjian.us
In reply to: AI Rumman (#1)
Re: Pg_upgrade remote copy

On Fri, Aug 28, 2015 at 10:34:38PM -0700, AI Rumman wrote:

Hi,

In pg_upgrade, how about adding a feature to copy data directory over network.
That is, we can run pg_upgrade from our new host, where old host will be a
remote machine.
We can add two parameters - oldhost and if it is used, pg_upgrade will identify
the old host as remote and instead of local copy, it will use remote copy.

What do you think about it?

Well, you could NFS-mount the remote directory and have it work that
way. One complexity is that you need to start/stop the old and new
servers, so doing something without NFS is going to be vary hard.

I think it is much simpler to just copy the old clsuter to the remote
server and run pg_upgrade in --link mode on the remote server.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#3Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#2)
Re: Pg_upgrade remote copy

Bruce Momjian wrote:

On Fri, Aug 28, 2015 at 10:34:38PM -0700, AI Rumman wrote:

In pg_upgrade, how about adding a feature to copy data directory over network.
That is, we can run pg_upgrade from our new host, where old host will be a
remote machine.

I think it is much simpler to just copy the old clsuter to the remote
server and run pg_upgrade in --link mode on the remote server.

Couldn't it run pg_basebackup as a first step?

--
�lvaro Herrera http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#4Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#3)
Re: Pg_upgrade remote copy

On Wed, Sep 2, 2015 at 04:50:32PM -0300, Alvaro Herrera wrote:

Bruce Momjian wrote:

On Fri, Aug 28, 2015 at 10:34:38PM -0700, AI Rumman wrote:

In pg_upgrade, how about adding a feature to copy data directory over network.
That is, we can run pg_upgrade from our new host, where old host will be a
remote machine.

I think it is much simpler to just copy the old clsuter to the remote
server and run pg_upgrade in --link mode on the remote server.

Couldn't it run pg_basebackup as a first step?

Yes. I was thinking it would be simpler to just shut down the server
and copy it, but pg_basebackup would allow the server to be up during
the copy.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#5AI Rumman
rummandba@gmail.com
In reply to: Bruce Momjian (#4)
Re: Pg_upgrade remote copy

Thanks for the solution.

On Wed, Sep 2, 2015 at 4:15 PM, Bruce Momjian <bruce@momjian.us> wrote:

Show quoted text

On Wed, Sep 2, 2015 at 04:50:32PM -0300, Alvaro Herrera wrote:

Bruce Momjian wrote:

On Fri, Aug 28, 2015 at 10:34:38PM -0700, AI Rumman wrote:

In pg_upgrade, how about adding a feature to copy data directory

over network.

That is, we can run pg_upgrade from our new host, where old host

will be a

remote machine.

I think it is much simpler to just copy the old clsuter to the remote
server and run pg_upgrade in --link mode on the remote server.

Couldn't it run pg_basebackup as a first step?

Yes. I was thinking it would be simpler to just shut down the server
and copy it, but pg_basebackup would allow the server to be up during
the copy.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +