diff options
author | Pisarenko Grigoriy <79596613+GrigoriyPA@users.noreply.github.com> | 2024-05-06 15:45:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 15:45:23 +0300 |
commit | da52d326c570ca0b3284ba4bb5f1a380360afaf5 (patch) | |
tree | 93100e3f7950dac9715577dafad9294c7c8b19f0 | |
parent | 0a0e28e390631aa9c3ffd63a056e4311d7811d4f (diff) | |
download | ydb-da52d326c570ca0b3284ba4bb5f1a380360afaf5.tar.gz |
YQ-3185, YQ-3186 added node count option and time printing in kqprun (#4316)
-rw-r--r-- | ydb/tests/tools/kqprun/kqprun.cpp | 37 | ||||
-rw-r--r-- | ydb/tests/tools/kqprun/src/common.h | 1 | ||||
-rw-r--r-- | ydb/tests/tools/kqprun/src/ydb_setup.cpp | 2 |
3 files changed, 26 insertions, 14 deletions
diff --git a/ydb/tests/tools/kqprun/kqprun.cpp b/ydb/tests/tools/kqprun/kqprun.cpp index b419ee2214..ce435e542a 100644 --- a/ydb/tests/tools/kqprun/kqprun.cpp +++ b/ydb/tests/tools/kqprun/kqprun.cpp @@ -43,44 +43,44 @@ struct TExecutionOptions { void RunScript(const TExecutionOptions& executionOptions, const NKqpRun::TRunnerOptions& runnerOptions) { NColorizer::TColors colors = NColorizer::AutoColors(Cout); - Cout << colors.Yellow() << "Initialization of kqp runner..." << colors.Default() << Endl; + Cout << colors.Yellow() << TInstant::Now().ToIsoStringLocal() << " Initialization of kqp runner..." << colors.Default() << Endl; NKqpRun::TKqpRunner runner(runnerOptions); if (executionOptions.SchemeQuery) { - Cout << colors.Yellow() << "Executing scheme query..." << colors.Default() << Endl; + Cout << colors.Yellow() << TInstant::Now().ToIsoStringLocal() << " Executing scheme query..." << colors.Default() << Endl; if (!runner.ExecuteSchemeQuery(executionOptions.SchemeQuery, executionOptions.TraceId)) { - ythrow yexception() << "Scheme query execution failed"; + ythrow yexception() << TInstant::Now().ToIsoStringLocal() << " Scheme query execution failed"; } } if (executionOptions.ScriptQuery) { - Cout << colors.Yellow() << "Executing script..." << colors.Default() << Endl; + Cout << colors.Yellow() << TInstant::Now().ToIsoStringLocal() << " Executing script..." << colors.Default() << Endl; switch (executionOptions.ClearExecution) { case TExecutionOptions::EClearExecutionCase::Disabled: if (!runner.ExecuteScript(executionOptions.ScriptQuery, executionOptions.ScriptQueryAction, executionOptions.TraceId)) { - ythrow yexception() << "Script execution failed"; + ythrow yexception() << TInstant::Now().ToIsoStringLocal() << " Script execution failed"; } - Cout << colors.Yellow() << "Fetching script results..." << colors.Default() << Endl; + Cout << colors.Yellow() << TInstant::Now().ToIsoStringLocal() << " Fetching script results..." << colors.Default() << Endl; if (!runner.FetchScriptResults()) { - ythrow yexception() << "Fetch script results failed"; + ythrow yexception() << TInstant::Now().ToIsoStringLocal() << " Fetch script results failed"; } if (executionOptions.ForgetExecution) { - Cout << colors.Yellow() << "Forgetting script execution operation..." << colors.Default() << Endl; + Cout << colors.Yellow() << TInstant::Now().ToIsoStringLocal() << " Forgetting script execution operation..." << colors.Default() << Endl; if (!runner.ForgetExecutionOperation()) { - ythrow yexception() << "Forget script execution operation failed"; + ythrow yexception() << TInstant::Now().ToIsoStringLocal() << " Forget script execution operation failed"; } } break; case TExecutionOptions::EClearExecutionCase::GenericQuery: if (!runner.ExecuteQuery(executionOptions.ScriptQuery, executionOptions.ScriptQueryAction, executionOptions.TraceId)) { - ythrow yexception() << "Query execution failed"; + ythrow yexception() << TInstant::Now().ToIsoStringLocal() << " Query execution failed"; } break; case TExecutionOptions::EClearExecutionCase::YqlScript: if (!runner.ExecuteYqlScript(executionOptions.ScriptQuery, executionOptions.ScriptQueryAction, executionOptions.TraceId)) { - ythrow yexception() << "Yql script execution failed"; + ythrow yexception() << TInstant::Now().ToIsoStringLocal() << " Yql script execution failed"; } break; } @@ -90,7 +90,7 @@ void RunScript(const TExecutionOptions& executionOptions, const NKqpRun::TRunner runner.PrintScriptResults(); } - Cout << colors.Yellow() << "Finalization of kqp runner..." << colors.Default() << Endl; + Cout << colors.Yellow() << TInstant::Now().ToIsoStringLocal() << " Finalization of kqp runner..." << colors.Default() << Endl; } @@ -118,7 +118,7 @@ void ReplaceTemplate(const TString& variableName, const TString& variableValue, TIntrusivePtr<NKikimr::NMiniKQL::IMutableFunctionRegistry> CreateFunctionRegistry(const TString& udfsDirectory, TVector<TString> udfsPaths, bool excludeLinkedUdfs) { if (!udfsDirectory.empty() || !udfsPaths.empty()) { NColorizer::TColors colors = NColorizer::AutoColors(Cout); - Cout << colors.Yellow() << "Fetching udfs..." << colors.Default() << Endl; + Cout << colors.Yellow() << TInstant::Now().ToIsoStringLocal() << " Fetching udfs..." << colors.Default() << Endl; } NKikimr::NMiniKQL::FindUdfsInDir(udfsDirectory, &udfsPaths); @@ -245,6 +245,11 @@ void RunMain(int argc, const char* argv[]) { .NoArgument() .DefaultValue(emulateYt) .SetFlag(&emulateYt); + options.AddLongOption('N', "node-count", "Number of nodes to create") + .Optional() + .RequiredArgument("INT") + .DefaultValue(runnerOptions.YdbSettings.NodeCount) + .StoreResult(&runnerOptions.YdbSettings.NodeCount); options.AddLongOption('u', "udf", "Load shared library with UDF by given path") .Optional() @@ -318,6 +323,10 @@ void RunMain(int argc, const char* argv[]) { // Ydb settings + if (runnerOptions.YdbSettings.NodeCount < 1) { + ythrow yexception() << "Number of nodes less than one"; + } + if (logFile != "-") { runnerOptions.YdbSettings.LogOutputFile = logFile; std::remove(logFile.c_str()); @@ -360,6 +369,7 @@ void RunMain(int argc, const char* argv[]) { RunScript(executionOptions, runnerOptions); } + void KqprunTerminateHandler() { NColorizer::TColors colors = NColorizer::AutoColors(Cerr); @@ -370,6 +380,7 @@ void KqprunTerminateHandler() { abort(); } + int main(int argc, const char* argv[]) { std::set_terminate(KqprunTerminateHandler); diff --git a/ydb/tests/tools/kqprun/src/common.h b/ydb/tests/tools/kqprun/src/common.h index 5d833e6701..c15300b934 100644 --- a/ydb/tests/tools/kqprun/src/common.h +++ b/ydb/tests/tools/kqprun/src/common.h @@ -14,6 +14,7 @@ namespace NKqpRun { constexpr char YQL_TOKEN_VARIABLE[] = "YQL_TOKEN"; struct TYdbSetupSettings { + i32 NodeCount = 1; TString DomainName = "Root"; bool TraceOptEnabled = false; diff --git a/ydb/tests/tools/kqprun/src/ydb_setup.cpp b/ydb/tests/tools/kqprun/src/ydb_setup.cpp index d39667c726..74e1df18d7 100644 --- a/ydb/tests/tools/kqprun/src/ydb_setup.cpp +++ b/ydb/tests/tools/kqprun/src/ydb_setup.cpp @@ -114,7 +114,7 @@ private: ui32 msgBusPort = PortManager_.GetPort(); NKikimr::Tests::TServerSettings serverSettings(msgBusPort); - serverSettings.SetNodeCount(1); + serverSettings.SetNodeCount(Settings_.NodeCount); serverSettings.SetDomainName(Settings_.DomainName); serverSettings.SetAppConfig(Settings_.AppConfig); |