-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] Add subcommands in workload-transfer #1462
Conversation
✅ Documentation buildRevision built successfully |
@@ -82,7 +82,10 @@ | |||
`--message-size`, `-m` | Размер сообщения в байтах. Возможно задание в КБ, МБ, ГБ путем добавления суффиксов `K`, `M`, `G` соответственно | `10240` | |||
`--message-rate` | Целевая суммарная скорость записи. В сообщениях в секунду. Исключает использование параметра `--byte-rate` | `0` | |||
`--byte-rate` | Целевая суммарная скорость записи. В байтах в секунду. Исключает использование параметра --message-rate. Возможно задание в КБ/с, МБ/с, ГБ/с путем добавления суффиксов `K`, `M`, `G` соответственно | `0` | |||
`--commit-period` | Период между вызовами `COMMIT`. В секундах | `10` | |||
`--commit-period` | Период между вызовами `COMMIT`. В секундах | `10` | |||
`--commit-messages` | Период между вызовами `COMMIT`. В количестве сообщений | `1024*1000` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Значение по умолчанию равно 1000000
.
https://github.com/ydb-platform/ydb/blob/main/ydb/public/lib/ydb_cli/commands/transfer_workload/transfer_workload_topic_to_table_run.cpp#L90
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вместо "В количестве сообщений" лучше "Количество сообщений"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вместо "В количестве сообщений" лучше "Количество сообщений"
Значение по умолчанию равно1000000
.
✅
@@ -120,6 +123,7 @@ Window Write speed Write time Inflight Lag Lag time | |||
* `Lag` — максимальное число сообщений, ожидающих чтения, в окне сбора статистики. Учитываются сообщения по всем партициям. | |||
* `Lag time` — процентиль времени задержки сообщений в мс. | |||
* `Read speed` — скорость чтения сообщений читателями. В сообщениях в секунду и в мегабайтах в секунду. | |||
* `Select time`, `Upsert time`, `Commit time` — время выполнения операций Select, Upsert, Commit в мс. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"процентиль времени выполнения...". Как для Lag time
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"процентиль времени выполнения...". Как для
Lag time
✅
✅ Documentation buildRevision built successfully |
✅ Documentation buildRevision built successfully |
✅ Documentation buildRevision built successfully |
Co-authored-by: Ivan Blinkov <ivan@blinkov.ru>
✅ Documentation buildRevision built successfully |
✅ Documentation buildRevision built successfully |
`--commit-period` | The period between `COMMIT` calls. In seconds | `10` | ||
`--commit-messages` | The period between `COMMIT` calls. In number of messages | `1000000` | ||
`--only-topic-in-tx` | Only topic partitions are forced to participate in transactions Excludes the use of the `--only-table-in-tx` parameter | `0` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A point symbol is missed befor "Excludes".
"in transactions Excludes"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A point symbol is missed befor "Excludes". "in transactions Excludes"
✅
@@ -112,6 +115,7 @@ Window Write speed Write time Inflight Lag Lag time | |||
* `Lag` — the specified percentile of maximum number of messages waiting to be read in the statistics collection window. Messages for all batches are taken into account. | |||
* `Lag time` — the specified percentile of message delay time in ms. | |||
* `Read speed` — the speed of reading messages by consumers. In messages per second and in megabytes per second. | |||
* `Select time`, `Upsert time`, `Commit time` — the specified percentile of the execution time of Select, Insert, Commit operations in ms. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't see this columns in the table above. It may be OK, just noticed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't see this columns in the table above. It may be OK, just noticed.
✅
✅ Documentation buildRevision built successfully |
[docs] Add subcommands in workload-transfer