From 36ab691df44fbf0f09165172bef6a2cef3127b40 Mon Sep 17 00:00:00 2001 From: st-shchetinin Date: Fri, 20 Dec 2024 12:53:17 +0000 Subject: [PATCH 1/2] changelog backup/restore changefeeds --- ydb/apps/ydb/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/ydb/apps/ydb/CHANGELOG.md b/ydb/apps/ydb/CHANGELOG.md index 000afbcccbe5..680cf2f5f761 100644 --- a/ydb/apps/ydb/CHANGELOG.md +++ b/ydb/apps/ydb/CHANGELOG.md @@ -1,6 +1,7 @@ * Replaced option `--query-settings` by `--query-prefix` one in `ydb workload run`. * Added new options to `ydb workload topic`: --tx-commit-interval and --tx-commit-messages, allowing you to specify commit interval either in milliseconds or in number of messages written. Also now you can load test YDB topics, using wide transactions that span over all partitions in the topic. This works both in write and in end-to-end workload scenarios. +* Backup/restore of changefeeds has been added to `ydb tools dump`/`ydb tools restore`. As a result, there are changes in the backup file structure: for tables with changefeeds, a subdirectory is created for each changefeed, named after the changefeed. This subdirectory contains two files: `changefeed_description.pb`, which contains the changefeed description, and `topic_description.pb`, which contains information about the underlying topic. ## 2.18.0 ## From 7dad7ef2cfcdd455d7d5e8c57563ecbda16b4015 Mon Sep 17 00:00:00 2001 From: st-shchetinin Date: Mon, 23 Dec 2024 11:10:51 +0000 Subject: [PATCH 2/2] fix --- ydb/apps/ydb/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/apps/ydb/CHANGELOG.md b/ydb/apps/ydb/CHANGELOG.md index 680cf2f5f761..4c7a62c08215 100644 --- a/ydb/apps/ydb/CHANGELOG.md +++ b/ydb/apps/ydb/CHANGELOG.md @@ -1,7 +1,7 @@ * Replaced option `--query-settings` by `--query-prefix` one in `ydb workload run`. * Added new options to `ydb workload topic`: --tx-commit-interval and --tx-commit-messages, allowing you to specify commit interval either in milliseconds or in number of messages written. Also now you can load test YDB topics, using wide transactions that span over all partitions in the topic. This works both in write and in end-to-end workload scenarios. -* Backup/restore of changefeeds has been added to `ydb tools dump`/`ydb tools restore`. As a result, there are changes in the backup file structure: for tables with changefeeds, a subdirectory is created for each changefeed, named after the changefeed. This subdirectory contains two files: `changefeed_description.pb`, which contains the changefeed description, and `topic_description.pb`, which contains information about the underlying topic. +* Backup and restore of changefeeds has been added to `ydb tools dump` and `ydb tools restore`. As a result, there are changes in the backup file structure: for tables with changefeeds, a subdirectory is created for each changefeed, named after the changefeed. This subdirectory contains two files: `changefeed_description.pb`, which contains the changefeed description, and `topic_description.pb`, which contains information about the underlying topic. ## 2.18.0 ##