diff options
author | shmel1k <shmel1k@ydb.tech> | 2022-09-15 20:24:04 +0300 |
---|---|---|
committer | shmel1k <shmel1k@ydb.tech> | 2022-09-15 20:24:04 +0300 |
commit | f5683eb1a7572efd69c18d03f560983e14917a4b (patch) | |
tree | 8019a0f5995a5a8f8d090fd50d482c77837ec666 | |
parent | 84543ee623fa69dccd62adac6f56cb0e7d9607f3 (diff) | |
download | ydb-f5683eb1a7572efd69c18d03f560983e14917a4b.tar.gz |
[] changed default retention period
-rw-r--r-- | ydb/public/lib/ydb_cli/commands/ydb_service_topic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/public/lib/ydb_cli/commands/ydb_service_topic.cpp b/ydb/public/lib/ydb_cli/commands/ydb_service_topic.cpp index dda2810536a..1543ff0442c 100644 --- a/ydb/public/lib/ydb_cli/commands/ydb_service_topic.cpp +++ b/ydb/public/lib/ydb_cli/commands/ydb_service_topic.cpp @@ -193,7 +193,7 @@ namespace NYdb::NConsoleClient { .DefaultValue(1) .StoreResult(&PartitionsCount_); config.Opts->AddLongOption("retention-period-hours", "Duration in hours for which data in topic is stored") - .DefaultValue(18) + .DefaultValue(24) .Optional() .StoreResult(&RetentionPeriodHours_); config.Opts->AddLongOption("partition-write-speed-kbps", "Partition write speed in kilobytes per second") |