On Thursday, July 18, 2024 10:11 AM Kuroda, Hayato/黒田 隼人 <kuroda.hay...@fujitsu.com> wrote: > > Dear Peter, > > Thanks for giving comments! PSA new version.
I did a few more tests and analysis and didn't find issues. Just share the cases I tested: 1. After manually rolling back xacts for two_pc and switch two_pc option from true to false, does the prepared transaction again get replicated again when COMMIT PREPARED happens. It work as expected in this case. E.g. the transaction will be sent to subscriber after disabling two_pc. And I think there wouldn't be race conditions between the ALTER command and apply worker because user needs to disable the subscription(the apply worker will stop) before altering the two_phase the option. And the WALs for the prepared transaction is retained until the COMMIT PREPARED, because we don't advance the slot's restart_lsn over the ongoing transactions(e.g. the prepared transaction in this case): SnapBuildProcessRunningXacts ... txn = ReorderBufferGetOldestTXN(builder->reorder); ... /* * oldest ongoing txn might have started when we didn't yet serialize * anything because we hadn't reached a consistent state yet. */ if (txn != NULL && txn->restart_decoding_lsn != InvalidXLogRecPtr) LogicalIncreaseRestartDecodingForSlot(lsn, txn->restart_decoding_lsn); So, the data of the prepared transaction is safe. 2. Test when prepare is already processed but we alter the option false to true. This case works as expected as well e.g. the whole transaction will be sent to the subscriber on COMMIT PREPARE using two_pc flow: "begin prepare" -> "txn data" -> "prepare" -> "commit prepare" Due to the same reason in case 1, there is no concurrency issue and the data of the transaction will be retained until COMMIT PREPARED. Best Regards, Hou zj