Skip to content

Describe additional guarantee #2448

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

Merged
merged 2 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ydb/docs/en/core/concepts/cdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ When adding, updating, or deleting a table row, CDC generates a change record by
* Change records are sharded across topic partitions by primary key.
* Each change is only delivered once (exactly-once delivery).
* Changes by the same primary key are delivered to the same topic partition in the order they took place in the table.
* Change record is delivered to the topic partition only after the corresponding transaction in the table has been committed.

## Limitations {#restrictions}

Expand Down
3 changes: 2 additions & 1 deletion ydb/docs/ru/core/concepts/cdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ Change Data Capture (CDC) обеспечивает захват изменени

## Гарантии {#guarantees}

* Записи об изменении шардированы между партициями топика по первичному ключу.
* Записи об изменениях шардированы между партициями топика по первичному ключу.
* Каждое изменение доставляется ровно один раз (exactly-once семантика).
* Изменения по одному и тому же первичному ключу доставляются в том же порядке, в котором они происходили в таблице в одну и ту же партицию топика.
* Запись об изменении доставляется до партиции топика только после фиксации (коммита) соответствующей транзакции в таблице.

## Ограничения {#restrictions}

Expand Down