pg_upgrade?: Upgrade method from/to any version on random OS?

From: Hans Schou <hans(dot)schou(at)gmail(dot)com>
To: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: pg_upgrade?: Upgrade method from/to any version on random OS?
Date: 2017-09-27 19:48:29
Message-ID: CAApBw369Y7vnuceCzATzb_hdp8GB3Ew1asTHbiyQpQLRxdRvfA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

If I ask this question without mention the PG version I upgrade from and
to, and don't mention the operating system, and don't mention replication,
would the standard answer be:
Use pg_upgrade!

I have looked through
https://www.postgresql.org/docs/9.6/static/pgupgrade.html
but it seems more complicated than necessary.

My actual situation was PG version from 9.3 to 9.6, on the same server, no
replication, and OS was Windows.

I did:
* SET PGUSER=postgres
* SET /P PGPASSWORD=
* change port number in 9.3 and restart
* 9.3\bin\pg_dumpall.exe --port=5431 | 9.6\bin\psql.exe --port=5433
* change port number on 9.6 to 5432 and restart, done

It went very good but took 100 minutes - where we had downtime - not so
good.

Would it have been:
* better
* faster
* safer
* easier
with pg_upgrade?

The way I did it is similar to what I have done with Oracle and MySQL. It
feels right.

best regards
Hans

Responses

Browse pgsql-general by date

  From Date Subject
Next Message David G. Johnston 2017-09-27 19:55:03 Re: pg_upgrade?: Upgrade method from/to any version on random OS?
Previous Message Scott Mead 2017-09-27 19:48:05 Re: Rsync to a recovering streaming replica?