-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[doc][cdc] Update logical replication limitation on table rewrite DDLs #25511
Conversation
✅ Deploy Preview for infallible-bardeen-164bc9 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Can you also add this limitation to the preview version in docs |
docs/content/stable/develop/change-data-capture/using-logical-replication/_index.md
Outdated
Show resolved
Hide resolved
docs/content/v2024.1/develop/change-data-capture/using-logical-replication/_index.md
Outdated
Show resolved
Hide resolved
@@ -103,7 +103,7 @@ For reference documentation, see [YugabyteDB Connector](./yugabytedb-connector/) | |||
|
|||
- CDC is not supported on a target table for xCluster replication [11829](https://github.com/yugabyte/yugabyte-db/issues/11829). | |||
|
|||
- Currently, CDC doesn't support schema evolution for changes that require table rewrites (for example, [ALTER TYPE](../../../api/ysql/the-sql-language/statements/ddl_alter_table/#alter-type-with-table-rewrite)), or DROP TABLE and TRUNCATE TABLE operations. | |||
- Currently, CDC doesn't support schema evolution for changes that require table rewrites (for example, [ALTER TYPE](../../../api/ysql/the-sql-language/statements/ddl_alter_table/#alter-type-with-table-rewrite)), or DROP TABLE and TRUNCATE TABLE operations after the replication slot is created. However, these operations can be performed before the replication slot creation without any issues. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does "after the replication slot is created" apply to both schema evolution changes and Drop/Truncate, or only Drop/Truncate?
#25511) * [docs] Update logical replication limitation on table rewrite DDLs * Apply suggestions from code review * copy to preview (2.25) --------- Co-authored-by: Dwight Hodge <[email protected]> Co-authored-by: Dwight Hodge <[email protected]>
Updated logical replication limitations to reflect the recent changes of allowing table re-write DDLs before the slot creation.
For more info:
DOC-611