You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ydb/apps/ydb/CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,5 @@
1
+
* Added `--retries` to `ydb workload <clickbenh|tpch|tpcds> run` command.
2
+
* Added `--partition-size` param to `ydb workload <clickbench/tpcds/tpch> init`.
1
3
* Fixed return code of command `ydb workload * run --check-canonical` for the case when benchmark query results differ from canonical ones.
2
4
* Added support for dual configuration mode in the `ydb admin cluster config fetch` command, allowing it to handle separate cluster and storage config sections.
3
5
* Add options for client certificates in SSL/TLS connections.
config.Opts->AddLongOption("query-prefix", "Query prefix.\nEvery prefix is a line that will be added to the beginning of each query. For multiple prefixes lines use this option several times.")
config.Opts->AddLongOption("retries", "Max retry count for every request.").StoreResult(&RetrySettings.MaxRetries_).DefaultValue(RetrySettings.MaxRetries_);
46
47
auto fillTestCases = [](TStringBuf line, std::function<void(ui32)>&& op) {
47
48
for (constauto& token : StringSplitter(line).Split(',').SkipEmpty()) {
48
49
TStringBuf part = token.Token();
@@ -352,7 +353,7 @@ int TWorkloadCommandBenchmark::RunBench(TClient* client, NYdbWorkload::IWorkload
352
353
TQueryBenchmarkResult res = TQueryBenchmarkResult::Error("undefined", "undefined", "undefined");
353
354
try {
354
355
if (client) {
355
-
res = Explain(query, *client, GetDeadline());
356
+
res = Explain(query, *client, GetBenchmarkSettings(false));
356
357
} else {
357
358
res = TQueryBenchmarkResult::Result(TQueryBenchmarkResult::TRawResults(), TDuration::Zero(), "", "");
358
359
}
@@ -369,18 +370,13 @@ int TWorkloadCommandBenchmark::RunBench(TClient* client, NYdbWorkload::IWorkload
369
370
break;
370
371
}
371
372
TQueryBenchmarkResult res = TQueryBenchmarkResult::Error("undefined", "undefined", "undefined");
0 commit comments