Re: how to upgrade production PostgreSQL from 9.4 to 11.3

From: Avinash Kumar <avinash(dot)vallarapu(at)gmail(dot)com>
To: Andreas Kretschmer <andreas(at)a-kretschmer(dot)de>
Cc: Rahul Chordiya <rahulchordiya(at)gmail(dot)com>, pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: how to upgrade production PostgreSQL from 9.4 to 11.3
Date: 2019-06-12 13:52:05
Message-ID: CAN0TujdwfV6K4p8c9PCH9E4feSj0H5jUca1OU_aRe2_jBqMt7Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Rahul,

You may look into the following blogs.

https://www.percona.com/blog/2019/04/12/fast-upgrade-of-legacy-postgresql-with-minimum-downtime-using-pg_upgrade/
https://www.percona.com/blog/2019/04/04/replication-between-postgresql-versions-using-logical-replication/
https://www.percona.com/blog/2019/04/09/continuous-replication-from-legacy-postgresql-version-using-slony/
https://www.percona.com/blog/2019/03/27/postgresql-upgrade-using-pg_dump-pg_restore/
https://www.percona.com/blog/2019/03/18/postgresql-upgrade-using-pg_dumpall/

https://www.percona.com/resources/webinars/upgrading-migrating-your-legacy-postgresql-newer-postgresql-versions

Thanks,
Avinash.

On Wed, Jun 12, 2019 at 10:31 AM Andreas Kretschmer <andreas(at)a-kretschmer(dot)de>
wrote:

>
>
> Am 12.06.19 um 14:50 schrieb Rahul Chordiya:
> > postgres=#
> > postgres=# select subscription_name, status FROM
> > pglogical.show_subscription_status();
> > subscription_name | status
> > -------------------+--------
> > (0 rows)
> >
> > postgres=# select pglogical.create_subscription(subscription_name :=
> > 'subscription1', provider_dsn := 'host=10.101.40.70 port=5432
> > dbname=registration user=repuser password=password', replication_sets
> > := '{my_set}');
> > *ERROR: could not fetch remote node info: ERROR: schema "pglogical"
> > does not exist*
> >
> > What should I do?
> >
>
> you have create the replication set (on the provider) in the
> postgres-database, but now you referencing to an other database,
> registration. There isn't this replication set defined.
>
>
> Regards, Andreas
>
> --
> 2ndQuadrant - The PostgreSQL Support Company.
> www.2ndQuadrant.com
>
>
>
>

--
9000799060

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Andrew Gierth 2019-06-12 17:49:37 Re: found xmin * from before relfrozenxid *
Previous Message Andreas Kretschmer 2019-06-12 13:31:35 Re: how to upgrade production PostgreSQL from 9.4 to 11.3