Re: BUG #17347: pg_upgrade: analyze_new_cluster script analyzes wrong cluster

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: mathiaskunter(at)gmail(dot)com
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #17347: pg_upgrade: analyze_new_cluster script analyzes wrong cluster
Date: 2021-12-28 16:00:35
Message-ID: 1760674.1640707235@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> When upgrading a PostgreSQL cluster with pg_upgrade (tested while upgrading
> from 11.14 to 12.9, but supposedly affects all versions), and the --new-port
> argument is used to specify a new port number for the upgraded cluster, then
> the generated analyze_new_cluster script will connect to and analyze a
> different cluster instead of the upgraded one.
> The vacuumdb command found within the analyze_new_cluster script should
> explicitly specify the port number of the upgraded cluster, so that it will
> actually analyze the correct cluster after the upgrade.

Hmm. I'm not sure whether changing that would be an improvement.
The assumption you're making is that --new-port will be the new
cluster's port number after it's started for real. But it seems
at least as likely that it's just a nonce specification used for
long enough to finish sucking data out of your old cluster, and
then you'll start the new server in place of your old one (ie
using the old port).

It's a bit moot now anyway, since pg_upgrade doesn't create
that script anymore in v14 and up.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message hubert depesz lubaczewski 2021-12-28 16:12:32 Re: BUG #17348: Can never install pgsql on Ubuntu
Previous Message PG Bug reporting form 2021-12-28 14:22:52 BUG #17348: Can never install pgsql on Ubuntu