You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unsure if a transaction that was in-flight and had created new data would be included in a publication if that table was added during the transaction.
That's confusing, this may be clearer:
begin;
insert into example (msg) values ('hello');
*commit;
Imagine we add the example table to our publication at * in the transaction. Does our hello end up being replicated? I suspect it doesn't.
Proposal
Wait for any on-going transactions to complete, after adding a table to the publication, before we create an import job. This will ensure we capture any transactions that might have lost data in our import process.
The text was updated successfully, but these errors were encountered:
I'm unsure if a transaction that was in-flight and had created new data would be included in a publication if that table was added during the transaction.
That's confusing, this may be clearer:
Imagine we add the
example
table to our publication at*
in the transaction. Does ourhello
end up being replicated? I suspect it doesn't.Proposal
Wait for any on-going transactions to complete, after adding a table to the publication, before we create an import job. This will ensure we capture any transactions that might have lost data in our import process.
The text was updated successfully, but these errors were encountered: