diff options
author | alextarazanov <alextarazanov@yandex-team.com> | 2023-03-27 10:15:42 +0300 |
---|---|---|
committer | alextarazanov <alextarazanov@yandex-team.com> | 2023-03-27 10:15:42 +0300 |
commit | 88f3e78e84b8d90be17376f9a41272f1de779804 (patch) | |
tree | 9745c30c95290fe4f6ffd7fd0bd99cd87f1eff31 | |
parent | 619d768eab1f13562793ee2c9d83d160dc60c77d (diff) | |
download | ydb-88f3e78e84b8d90be17376f9a41272f1de779804.tar.gz |
translation
Перевод https://st.yandex-team.ru/
-rw-r--r-- | ydb/docs/en/core/changelog.md | 28 | ||||
-rw-r--r-- | ydb/docs/en/core/concepts/cdc.md | 2 |
2 files changed, 15 insertions, 15 deletions
diff --git a/ydb/docs/en/core/changelog.md b/ydb/docs/en/core/changelog.md index 11b24d7018c..1a3452d0377 100644 --- a/ydb/docs/en/core/changelog.md +++ b/ydb/docs/en/core/changelog.md @@ -1,6 +1,6 @@ # Changelog -## 07.03.2023 {#07-03-2023} +## 07/03/2023 {#07-03-2023} ### {{ ydb-short-name }} 22.5 {#ydb-22-5} @@ -8,20 +8,20 @@ To update to version **22.5**, select the [Downloads](downloads/index.md) sectio **What's new:** -* Added [changefeed configuration settings](yql/reference/syntax/alter_table#changefeed-options) to transfer additional info about changes to topic. -* Added support of [rename for tables](concepts/datamodel/table.md#rename) with TTL setting enabled. -* Added [retention period setting](concepts/cdc#retention-period) for cdc-log. +* Added [changefeed configuration parameters](yql/reference/syntax/alter_table#changefeed-options) to transfer additional information about changes to a topic. +* You can now [rename tables](concepts/datamodel/table.md#rename) that have TTL enabled. +* You can now [manage the record retention period](concepts/cdc#retention-period). -**BugFixes & Improvements:** +**Bug fixes and improvements:** -* Fixed: Error inserting 0 rows via BulkUpsert. -* Fixed: Error when importing Date/DateTime columns from CSV. -* Fixed: Error importing data from CSV with line breaks in values. -* Fixed: Error importing data from CSV with empty values. -* Improved Query Processing performance (WorkerActor was replaced with SessionActor). -* DataShard compaction now starts immediately after split or merge operations. +* Fixed an error inserting 0 rows with a BulkUpsert. +* Fixed an error importing Date/DateTime columns from CSV. +* Fixed an error importing CSV data with line breaks. +* Fixed an error importing CSV data with NULL values. +* Improved Query Processing performance (by replacing WorkerActor with SessionActor). +* DataShard compaction now starts immediately after a split or merge. -## 10.12.2022 {#10-12-2022} +## 12/10/2022 {#12-10-2022} **What's new in version 22.4** @@ -58,7 +58,7 @@ To update to version **22.4**, select the [Downloads](downloads/index.md) sectio * Added support for authentication with static credentials. * Added system tables for query performance troubleshooting. -## 09.22.2022 {#22-09-2022} +## 20/09/2022 {#22-09-2022} {{ ydb-short-name }} CLI 2.0.0: @@ -83,7 +83,7 @@ To update to version **22.4**, select the [Downloads](downloads/index.md) sectio * Added the ability to import data in JSON format from a file or stdin (see the `ydb import file json` command). * Improved command processing. Improved the accuracy of user input parsing and validation. -## 06.25.2022 {#25-06-2022} +## 25/06/2022 {#25-06-2022} {{ ydb-short-name }} CLI 1.9.1: diff --git a/ydb/docs/en/core/concepts/cdc.md b/ydb/docs/en/core/concepts/cdc.md index c73647ba9e7..207e5bc8737 100644 --- a/ydb/docs/en/core/concepts/cdc.md +++ b/ydb/docs/en/core/concepts/cdc.md @@ -129,7 +129,7 @@ Records whose retention time has expired are deleted, regardless of whether they Deleting records before they are processed by the client will cause [offset](topic.md#offset) skips, which means that the offsets of the last record read from the partition and the earliest available record will differ by more than one. -To configure the record retention period, specify the parameter [RETENTION_PERIOD](../yql/reference/syntax/alter_table.md#changefeed-options) when creating a changefeed. +To set up the record retention period, specify the [RETENTION_PERIOD](../yql/reference/syntax/alter_table.md#changefeed-options) parameter when creating a changefeed. ## Creating and deleting a changefeed {#ddl} |