diff options
| author | Ilnaz Nizametdinov <[email protected]> | 2024-09-27 08:43:27 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-27 08:43:27 +0300 |
| commit | 4c49b0d1667cbca36df26632c262edee91800ca9 (patch) | |
| tree | d0ad21e57c018b5bf925fd87e8502a23ae4167c2 | |
| parent | 652c970c5ed87f1b8c3de6d217376f787929b33f (diff) | |
Added a warning about automatic partitioning during the initial scan (#9754)
| -rw-r--r-- | ydb/docs/en/core/concepts/cdc.md | 6 | ||||
| -rw-r--r-- | ydb/docs/ru/core/concepts/cdc.md | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ydb/docs/en/core/concepts/cdc.md b/ydb/docs/en/core/concepts/cdc.md index 95c82fb880c..930c70a1744 100644 --- a/ydb/docs/en/core/concepts/cdc.md +++ b/ydb/docs/en/core/concepts/cdc.md @@ -56,6 +56,12 @@ The record with the source row value is labeled as an [update](#restrictions) re During the scanning process, depending on the table update frequency, you might see too many `OVERLOADED` errors. This is because, besides the update records, you also need to deliver records with the source row values. When the scan is complete, the changefeed switches to normal operation. +{% note warning %} + +[Automatic partitioning](datamodel/table.md#partitioning) processes are suspended in the table during the initial scan. + +{% endnote %} + ## Record structure {#record-structure} Depending on the [changefeed parameters](../yql/reference/syntax/alter_table/changefeed.md), the structure of a record may differ. diff --git a/ydb/docs/ru/core/concepts/cdc.md b/ydb/docs/ru/core/concepts/cdc.md index 2dbf339e704..f8baf058b1a 100644 --- a/ydb/docs/ru/core/concepts/cdc.md +++ b/ydb/docs/ru/core/concepts/cdc.md @@ -58,6 +58,12 @@ Change Data Capture (CDC) обеспечивает захват изменени В процессе сканирования, в зависимости от частоты обновления данных таблицы, возможен повышенный фон ошибок `OVERLOADED` из-за того, что, помимо записей об изменениях, необходимо доставить также записи с исходными значениями строк. По окончании сканирования поток изменений переходит в нормальный режим работы. +{% note warning %} + +На время первоначального сканирования в таблице приостанавливаются процессы [автоматического партиционирования](datamodel/table.md#partitioning_row_table). + +{% endnote %} + ## Структура записи {#record-structure} В зависимости от [параметров потока](../yql/reference/syntax/alter_table/changefeed.md) структура записи может отличаться. |
