Re: Upgrade from PG12 to PG

Поиск
Список
Период
Сортировка
От Scott Ribe
Тема Re: Upgrade from PG12 to PG
Дата
Msg-id D8E10854-1B65-4603-A401-F624B8CABED1@elevated-dev.com
обсуждение исходный текст
Ответ на Re: Upgrade from PG12 to PG  (Jef Mortelle <jefmortelle@gmail.com>)
Ответы Re: Upgrade from PG12 to PG  (Jef Mortelle <jefmortelle@gmail.com>)
Список pgsql-admin
> On Jul 24, 2023, at 12:38 AM, Jef Mortelle <jefmortelle@gmail.com> wrote:

> For some reason Postgres creates a new subdirectory for each PG version (I make use of tablespaces for each database
inmy PG cluster), also with using the link option. 
> So after some upgrade,  it ends in a really mess with directory's?

At the end of pg_upgrade, you can start up the old version against the old directory, or the new version against the
newdirectory. (With --link, only until writing into the db, then you are committed to the running version.) Once you
arecomfortable that everything is good with the new version, you should delete the old data. Alternatively, if there is
aproblem forcing you back to the old version, you delete the new data. 

> => pg_dump schema_only, after RAM upgrade from 8GB up to 64GB (otherwise the query against pg_largeobject ends in a
OUTof Memory error) runs in about 3-4 minutes 
> => pg_restore takes 7 hours, which is 99% used for executing the query like:  SELECT pg_catalog.lo_unlink('oid');

Given the tests you've run, it seems to me that it is doing something which it ought not when using --link.

> Database is 95GB, so not so big ;-) but have ~25miljon large objects in it.

I suppose the use of large objects here is an artifact of support for other databases which have much lower limits on
varcharcolumn length. 





В списке pgsql-admin по дате отправления:

Предыдущее
От: Dan Smith
Дата:
Сообщение: Re: Is a PS - MSSQL Logical Replication Possible??
Следующее
От: Jef Mortelle
Дата:
Сообщение: Re: Upgrade from PG12 to PG