diff options
author | bazeltsev <bazeltsev@ydb.tech> | 2022-09-22 14:07:29 +0300 |
---|---|---|
committer | bazeltsev <bazeltsev@ydb.tech> | 2022-09-22 14:07:29 +0300 |
commit | d3bd0ef3935d14b61118f2ea4fa6250c09aab12b (patch) | |
tree | a769e8beb0fe0dffcccd1c393596ae4e0df20da4 | |
parent | 4f5037c60dfb721f001ff5d262e39eae98d0c3d9 (diff) | |
download | ydb-d3bd0ef3935d14b61118f2ea4fa6250c09aab12b.tar.gz |
Added ydb cli 2.0.0 changelog
updated
-rw-r--r-- | ydb/docs/en/core/changelog.md | 25 | ||||
-rw-r--r-- | ydb/docs/ru/core/changelog.md | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/ydb/docs/en/core/changelog.md b/ydb/docs/en/core/changelog.md index ac3b2333dc3..0f3c88724a4 100644 --- a/ydb/docs/en/core/changelog.md +++ b/ydb/docs/en/core/changelog.md @@ -1,5 +1,30 @@ # Releases
+## 20.09.2022 {#20-09-2022}
+
+{{ ydb-short-name }} CLI 2.0.0:
+
+* Added `ydb topic` commands for operating with YDB topics:
+ * `ydb topic create` — creates a topic with provided options;
+ * `ydb topic alter` — changes topic configuration with provided options;
+ * `ydb topic write` — writes data to provided topic;
+ * `ydb topic read` — reads data from provided topic;
+ * `ydb topic drop` drops provided topic.
+
+* Added a new load testing type `ydb workload kv`:
+ * `ydb workload kv init` — creates a table for kv load testing;
+ * `ydb workload kv run` — starts one of 3 load types: launches several sessions performing insertion using `UPSERT`, launches several sessions performing insertion using `INSERT` or launches several sessions that create GET-requests by primary key;
+ * `ydb workload kv clean` — drops the table created with init command.
+
+* Added `ydb config profile deactivate` command to deactivate current active profile.
+* Added `--force` option for `ydb config profile remove` command to remove profile without interactive confirmation.
+* Added changefeed support for `ydb scheme describe` command.
+* Added `ydb monitoring healthcheck` command to check current state of a database.
+* Added `ydb auth get-token` command to print auth info (token) that would be sent with requests to YDB with current auth settings.
+* `ydb import` commands can now read data from std input (i.e. via pipe) instead of a file.
+* Added `ydb import file json` command to import data in JSON format to YDB from file or std input.
+* Improved command processing. User input parsing and validation is now more precise.
+
## 25.06.2022 {#25-06-2022}
{{ ydb-short-name }} CLI 1.9.1:
diff --git a/ydb/docs/ru/core/changelog.md b/ydb/docs/ru/core/changelog.md index 9d3e66cfe78..b638430c279 100644 --- a/ydb/docs/ru/core/changelog.md +++ b/ydb/docs/ru/core/changelog.md @@ -1,5 +1,30 @@ # История изменений +## 20.09.2022 {#22-09-2022} + +{{ ydb-short-name }} CLI 2.0.0: + +* Добавлена возможность работы с топиками: + * `ydb topic create` — создание топика; + * `ydb topic alter` — изменение топика; + * `ydb topic write` — запись данных в топик; + * `ydb topic read` — чтение данных из топика; + * `ydb topic drop` — удаление топика. + +* Добавлен новый тип нагрузочного тестирования: + * `ydb workload kv init` — создание таблицы для тестирования kv нагрузки; + * `ydb workload kv run` — запуск одной из 3 видов нагрузки: запуск нескольких сессий вставки `UPSERT`, запуск нескольких сессий вставки `INSERT` или запуск нескольких сессий с GET-запросами по первичному ключу; + * `ydb workload kv clean` — удаление тестовой таблицы. + +* Добавлена возможность деактивировать текущий активный профиль (см. команду `ydb config profile deactivate`). +* Добавлена возможность неинтерактивного удаления профиля без подтверждения (см. параметр `--force` команды `ydb config profile remove`). +* Добавлена поддержка CDC для команды `ydb scheme describe`. +* Добавлена возможность просмотра текущего статуса БД (см. команду `ydb monitoring healthcheck`). +* Добавлена возможность просмотра аутентификационной информации (токена), с которой будут отправляться запросы к БД при текущих настройках аутентификации (см. команду `ydb auth get-token`). +* Добавлена возможность чтения данных из стандартного потока ввода для команды `ydb import`. +* Добавлена возможность импорта данных в формате JSON из файла или стандартного потока ввода (см. команду `ydb import file json`). +* Улучшен процессинг команд. Парсинг и валидация пользовательского ввода теперь более точные. + ## 25.06.2022 {#25-06-2022} {{ ydb-short-name }} CLI 1.9.1: |