Skip to content

Commit

Permalink
Update cdc.md
Browse files Browse the repository at this point in the history
Updating to clarify deduplication removes records with NOT NULL values for `_ab_cdc_deleted_at`
  • Loading branch information
johnwasserman authored Aug 10, 2024
1 parent 2a15fbd commit 5be07c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/understanding-airbyte/cdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ We add some metadata columns for CDC sources which all begin with the `_ab_cdc_`
- The modifications you are trying to capture must be made using `DELETE`/`INSERT`/`UPDATE`. For example, changes made from `TRUNCATE`/`ALTER` won't appear in logs and therefore in your destination.
- There are database-specific limitations. See the documentation pages for individual connectors for more information.
- The records produced by `DELETE` statements only contain primary keys. All other data fields are unset.
- For `Incremental | Append + Dedupe` sync modes, records produced by `DELETE` will be removed from the final table during dedupelication. To retain these records in the final table, use `Incremental | Append` sync mode. Records produced by `DELETE` will be still be accessible in the `airbyte_internal` schema.

## Current Support

Expand Down

0 comments on commit 5be07c8

Please sign in to comment.