RE: [PoC] pg_upgrade: allow to upgrade publisher node
Hayato Kuroda (Fujitsu) <kuroda.hayato@fujitsu.com>
From: "Hayato Kuroda (Fujitsu)" <kuroda.hayato@fujitsu.com>
To: 'Amit Kapila' <amit.kapila16@gmail.com>, Dilip Kumar <dilipbalaut@gmail.com>
Cc: "Zhijie Hou (Fujitsu)" <houzj.fnst@fujitsu.com>, Peter Smith <smithpb2250@gmail.com>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>, Bruce Momjian <bruce@momjian.us>, Julien Rouhaud <rjuju123@gmail.com>, vignesh C <vignesh21@gmail.com>, Masahiko Sawada <sawada.mshk@gmail.com>
Date: 2023-09-15T03:13:48Z
Lists: pgsql-hackers
Attachments
- v37-0001-pg_upgrade-Allow-to-replicate-logical-replicatio.patch (application/octet-stream) patch v37-0001
- v37-0002-Reads-all-WAL-records-ahead-confirmed_flush_lsn.patch (application/octet-stream) patch v37-0002
Dear hackers, > > So basically, while scanning from confirmed_flush we must ensure that > > we find a first record as SHUTDOWN CHECKPOINT record at the same LSN, > > and after that, we should not get any other WAL other than like you > > said shutdown checkpoint, running_xacts. That way we will ensure both > > aspect that the confirmed flush LSN is at the shutdown checkpoint and > > after that there is no real activity in the system. > > > > Right. > > > I think to me, > > this seems like the best available option so far. > > > > Yeah, let's see if someone else has a different opinion or has a better idea. Based on the recent discussion, I made a prototype which reads all WAL records and verifies their type. A new upgrade function binary_upgrade_validate_wal_record_types_after_lsn() does that. This function reads WALs from start_lsn (confirmed_flush), and returns true if they can ignore. The type of ignored records are listed in [1]. Kindly Hou found that XLOG_HEAP2_PRUNE may be generated during the pg_upgrade --check, so it was added to acceptable type. [1]: https://www.postgresql.org/message-id/TYAPR01MB58660273EACEFC5BF256B133F50DA@TYAPR01MB5866.jpnprd01.prod.outlook.com Best Regards, Hayato Kuroda FUJITSU LIMITED
Commits
-
Fix issues in binary_upgrade_logical_slot_has_caught_up().
- 0bf62460bb9e 17.0 landed
-
Fix a random failure in 003_logical_slots.pl.
- 63c5df126abb 17.0 landed
-
Fix a test in 003_logical_slots.
- 3e36e48d8efe 17.0 landed
-
Fix uninitialized slot array access during the upgrade.
- a7db71ed2787 17.0 landed
-
Fix the test 003_logical_slots.
- 8af917be6bad 17.0 landed
-
Commit b195e6d482 forgot to update meson.build.
- 8949b978ff49 17.0 landed
-
Use shorter file names in the upgrade logical slots test.
- b195e6d482b8 17.0 landed
-
Migrate logical slots to the new node during an upgrade.
- 29d0a77fa660 17.0 landed
-
Flush logical slots to disk during a shutdown checkpoint if required.
- e0b2eed047df 17.0 landed
-
Prevent possibility of panics during shutdown checkpoint.
- c6c333436491 10.0 cited