diff --git a/ydb/core/grpc_services/rpc_execute_data_query.cpp b/ydb/core/grpc_services/rpc_execute_data_query.cpp index f5b7e87043ff..19f392a0d310 100644 --- a/ydb/core/grpc_services/rpc_execute_data_query.cpp +++ b/ydb/core/grpc_services/rpc_execute_data_query.cpp @@ -185,9 +185,8 @@ class TExecuteDataQueryRPC : public TRpcKqpRequestActormutable_result_sets()->Swap(record.MutableResponse()->MutableYdbResults()); - } else { - NKqp::ConvertKqpQueryResultsToDbResult(kqpResponse, queryResult); } + ConvertQueryStats(kqpResponse, queryResult); if (kqpResponse.HasTxMeta()) { queryResult->mutable_tx_meta()->CopyFrom(kqpResponse.GetTxMeta()); diff --git a/ydb/core/grpc_services/rpc_execute_yql_script.cpp b/ydb/core/grpc_services/rpc_execute_yql_script.cpp index 72b8350d8b74..53fd5f6ff146 100644 --- a/ydb/core/grpc_services/rpc_execute_yql_script.cpp +++ b/ydb/core/grpc_services/rpc_execute_yql_script.cpp @@ -97,7 +97,11 @@ class TExecuteYqlScriptRPC : public TRpcKqpRequestActor(Request_); try { - NKqp::ConvertKqpQueryResultsToDbResult(kqpResponse, queryResult); + const auto& results = kqpResponse.GetYdbResults(); + for (const auto& result : results) { + queryResult->add_result_sets()->CopyFrom(result); + } + } catch (const std::exception& ex) { NYql::TIssues issues; issues.AddIssue(NYql::ExceptionToIssue(ex)); diff --git a/ydb/core/grpc_services/rpc_stream_execute_yql_script.cpp b/ydb/core/grpc_services/rpc_stream_execute_yql_script.cpp index d36c122c2c47..343b97e13bf8 100644 --- a/ydb/core/grpc_services/rpc_stream_execute_yql_script.cpp +++ b/ydb/core/grpc_services/rpc_stream_execute_yql_script.cpp @@ -49,7 +49,7 @@ namespace { {} NKqp::TEvKqp::TEvDataQueryStreamPart::TPtr Handle; - google::protobuf::RepeatedPtrField::const_iterator ResultIterator; + google::protobuf::RepeatedPtrField::const_iterator ResultIterator; }; enum EStreamRpcWakeupTag : ui64 { @@ -218,7 +218,7 @@ class TStreamExecuteYqlScriptRPC auto result = response.mutable_result(); try { - NKqp::ConvertKqpQueryResultToDbResult(kqpResult, result->mutable_result_set()); + result->mutable_result_set()->CopyFrom(kqpResult); } catch (std::exception ex) { ReplyFinishStream(ex.what()); } diff --git a/ydb/core/kqp/common/events/query.h b/ydb/core/kqp/common/events/query.h index 18818e958182..b1d01c8b5159 100644 --- a/ydb/core/kqp/common/events/query.h +++ b/ydb/core/kqp/common/events/query.h @@ -70,7 +70,9 @@ struct TEvQueryRequest: public NActors::TEventLocalSetUsePublicResponseDataFormat(true); + } bool IsSerializable() const override { return true; diff --git a/ydb/core/kqp/common/kqp.h b/ydb/core/kqp/common/kqp.h index 14785394faa1..e0bccb2e5027 100644 --- a/ydb/core/kqp/common/kqp.h +++ b/ydb/core/kqp/common/kqp.h @@ -33,18 +33,9 @@ namespace NKikimr::NKqp { -void ConvertKqpQueryResultToDbResult(const NKikimrMiniKQL::TResult& from, Ydb::ResultSet* to); - TString ScriptExecutionRunnerActorIdString(const NActors::TActorId& actorId); bool ScriptExecutionRunnerActorIdFromString(const TString& executionId, TActorId& actorId); -template -inline void ConvertKqpQueryResultsToDbResult(const TFrom& from, TTo* to) { - const auto& results = from.GetResults(); - for (const auto& result : results) { - ConvertKqpQueryResultToDbResult(result, to->add_result_sets()); - } -} class TKqpRequestInfo { public: @@ -80,7 +71,7 @@ class IQueryReplayBackend : public TNonCopyable { /// Accepts query text virtual void Collect(const TString& queryData) = 0; - virtual bool IsNull() { return false; } + virtual bool IsNull() { return false; } virtual ~IQueryReplayBackend() {}; diff --git a/ydb/core/kqp/common/kqp_event_impl.cpp b/ydb/core/kqp/common/kqp_event_impl.cpp index cadd44a1c89e..a64a05c19404 100644 --- a/ydb/core/kqp/common/kqp_event_impl.cpp +++ b/ydb/core/kqp/common/kqp_event_impl.cpp @@ -90,6 +90,11 @@ void TEvKqp::TEvQueryRequest::PrepareRemote() const { Record.MutableRequest()->SetPoolId(PoolId); } + if (!DatabaseId.empty()) { + Record.MutableRequest()->SetDatabaseId(DatabaseId); + } + + Record.MutableRequest()->SetUsePublicResponseDataFormat(true); Record.MutableRequest()->SetSessionId(SessionId); Record.MutableRequest()->SetAction(QueryAction); Record.MutableRequest()->SetType(QueryType); diff --git a/ydb/core/kqp/gateway/kqp_ic_gateway.cpp b/ydb/core/kqp/gateway/kqp_ic_gateway.cpp index d26e2a041e50..fa4359c4258a 100644 --- a/ydb/core/kqp/gateway/kqp_ic_gateway.cpp +++ b/ydb/core/kqp/gateway/kqp_ic_gateway.cpp @@ -226,7 +226,7 @@ class TKqpScanQueryRequestHandler : public TRequestHandlerBase< void HandleResponse(typename TResponse::TPtr &ev, const TActorContext &ctx) { auto& response = *ev->Get()->Record.GetRef().MutableResponse(); - NKikimr::ConvertYdbResultToKqpResult(ResultSet,*response.AddResults()); + response.AddYdbResults()->CopyFrom(ResultSet); for (auto& execStats : Executions) { response.MutableQueryStats()->AddExecutions()->Swap(&execStats); } @@ -285,20 +285,18 @@ class TKqpStreamRequestHandler : public TRequestHandlerBase< virtual void HandleResponse(typename TResponse::TPtr &ev, const TActorContext &ctx) { auto& record = ev->Get()->Record.GetRef(); if (record.GetYdbStatus() == Ydb::StatusIds::SUCCESS) { - if (record.MutableResponse()->GetResults().size()) { + if (record.MutableResponse()->GetYdbResults().size()) { // Send result sets to RPC actor TStreamExecuteYqlScriptRPC auto evStreamPart = MakeHolder(); ActorIdToProto(this->SelfId(), evStreamPart->Record.MutableGatewayActorId()); - for (int i = 0; i < record.MutableResponse()->MutableResults()->size(); ++i) { + for (int i = 0; i < record.MutableResponse()->MutableYdbResults()->size(); ++i) { // Workaround to avoid errors on Pull execution stage which would expect some results - Ydb::ResultSet resultSet; - NKikimr::ConvertYdbResultToKqpResult(resultSet, *evStreamPart->Record.AddResults()); + evStreamPart->Record.AddResults(); } - evStreamPart->Record.MutableResults()->Swap(record.MutableResponse()->MutableResults()); + evStreamPart->Record.MutableResults()->Swap(record.MutableResponse()->MutableYdbResults()); this->Send(TargetActorId, evStreamPart.Release()); - // Save response without data to send it later ResponseHandle = ev.Release(); } else { @@ -404,7 +402,7 @@ class TKqpForwardStreamRequestHandler : public TRequestHandlerBase< auto& response = *ev->Get()->Record.GetRef().MutableResponse(); Ydb::ResultSet resultSet; - NKikimr::ConvertYdbResultToKqpResult(resultSet, *response.AddResults()); + response.AddYdbResults()->CopyFrom(resultSet); for (auto& execStats : Executions) { response.MutableQueryStats()->AddExecutions()->Swap(&execStats); } @@ -510,7 +508,7 @@ class TKqpGenericQueryRequestHandler: public TRequestHandlerBase< auto& response = *ev->Get()->Record.GetRef().MutableResponse(); for (auto& resultSet : ResultSets) { - ConvertYdbResultToKqpResult(std::move(resultSet.ResultSet), *response.AddResults()); + response.AddYdbResults()->Swap(&resultSet.ResultSet); } TBase::HandleResponse(ev, ctx); @@ -671,8 +669,8 @@ void KqpResponseToQueryResult(const NKikimrKqp::TEvQueryResponse& response, IKqp queryResult.AddIssue(NYql::IssueFromMessage(issue)); } - for (auto& result : queryResponse.GetResults()) { - auto arenaResult = google::protobuf::Arena::CreateMessage( + for (auto& result : queryResponse.GetYdbResults()) { + auto arenaResult = google::protobuf::Arena::CreateMessage( queryResult.ProtobufArenaPtr.get()); arenaResult->CopyFrom(result); diff --git a/ydb/core/kqp/host/kqp_host.cpp b/ydb/core/kqp/host/kqp_host.cpp index 890b5cea1a09..08623eb55528 100644 --- a/ydb/core/kqp/host/kqp_host.cpp +++ b/ydb/core/kqp/host/kqp_host.cpp @@ -288,8 +288,8 @@ class TAsyncExecuteYqlResult : public TKqpAsyncResultBase(queryResult.ProtobufArenaPtr.get())); - NKikimrMiniKQL::TResult* result = queryResult.Results.back(); + google::protobuf::Arena::CreateMessage(queryResult.ProtobufArenaPtr.get())); + Ydb::ResultSet* result = queryResult.Results.back(); if (!result->ParseFromArray(resultStr.data(), resultStr.size())) { queryResult = ResultFromError("Failed to parse run result."); diff --git a/ydb/core/kqp/host/kqp_runner.cpp b/ydb/core/kqp/host/kqp_runner.cpp index 3f42256e7790..d6d76208ec0e 100644 --- a/ydb/core/kqp/host/kqp_runner.cpp +++ b/ydb/core/kqp/host/kqp_runner.cpp @@ -116,17 +116,7 @@ class TPrepareQueryAsyncResult : public TKqpAsyncResultBase results; - for (auto& phyResult : TransformCtx.PhysicalQueryResults) { - auto result = google::protobuf::Arena::CreateMessage( - queryResult.ProtobufArenaPtr.get()); - - result->CopyFrom(phyResult); - results.push_back(result); - } - queryResult.QueryStats.CopyFrom(TransformCtx.QueryStats); - queryResult.Results = std::move(results); } private: diff --git a/ydb/core/kqp/host/kqp_transform.h b/ydb/core/kqp/host/kqp_transform.h index bdf95715ba9d..0004340de583 100644 --- a/ydb/core/kqp/host/kqp_transform.h +++ b/ydb/core/kqp/host/kqp_transform.h @@ -26,18 +26,13 @@ struct TKqlTransformContext : TThrRefBase { NKqpProto::TKqpStatsQuery QueryStats; std::shared_ptr PhysicalQuery; - TVector> MkqlResults; - TVector PhysicalQueryResults; - NYql::TExprNode::TPtr ExplainTransformerInput; // Explain transformer must work after other transformers, but use input before peephole TMaybe DataQueryBlocks; void Reset() { ReplyTarget = {}; - MkqlResults.clear(); QueryStats = {}; PhysicalQuery = nullptr; - PhysicalQueryResults.clear(); ExplainTransformerInput = nullptr; DataQueryBlocks = Nothing(); } diff --git a/ydb/core/kqp/provider/yql_kikimr_exec.cpp b/ydb/core/kqp/provider/yql_kikimr_exec.cpp index 591f5bf4b4cd..8d256586cfeb 100644 --- a/ydb/core/kqp/provider/yql_kikimr_exec.cpp +++ b/ydb/core/kqp/provider/yql_kikimr_exec.cpp @@ -980,16 +980,12 @@ class TKiSourceCallableExecutionTransformer : public TAsyncCallbackTransformer columnHints(NCommon::GetResOrPullColumnHints(node)); auto protoValue = &resultValue; YQL_ENSURE(resultValue.GetArena()); - if (IsRawKikimrResult(resultValue)) { - protoValue = KikimrResultToProto(resultValue, columnHints, fillSettings, resultValue.GetArena()); - } - YQL_ENSURE(fillSettings.Format == IDataProvider::EResultFormat::Custom); YQL_ENSURE(fillSettings.FormatDetails == KikimrMkqlProtoFormat); diff --git a/ydb/core/kqp/provider/yql_kikimr_gateway.h b/ydb/core/kqp/provider/yql_kikimr_gateway.h index 062ab15a8e35..63683179ba53 100644 --- a/ydb/core/kqp/provider/yql_kikimr_gateway.h +++ b/ydb/core/kqp/provider/yql_kikimr_gateway.h @@ -856,8 +856,9 @@ class IKikimrGateway : public TThrRefBase { struct TQueryResult : public TGenericResult { TString SessionId; - TVector Results; + TVector Results; TMaybe Profile; // TODO: Deprecate. + a491b73df3 (get rid of mkql results in scripting (#9997)) NKqpProto::TKqpStatsQuery QueryStats; std::unique_ptr PreparingQuery; std::shared_ptr PreparedQuery; diff --git a/ydb/core/kqp/session_actor/kqp_response.cpp b/ydb/core/kqp/session_actor/kqp_response.cpp index e1864d104c19..cc90a3031bf2 100644 --- a/ydb/core/kqp/session_actor/kqp_response.cpp +++ b/ydb/core/kqp/session_actor/kqp_response.cpp @@ -53,36 +53,6 @@ bool HasSchemeOrFatalIssues(const TIssue& issue) { } // namespace -void ConvertKqpQueryResultToDbResult(const NKikimrMiniKQL::TResult& from, Ydb::ResultSet* to) { - const auto& type = from.GetType(); - TStackVec columnTypes; - Y_ENSURE(type.GetKind() == NKikimrMiniKQL::ETypeKind::Struct); - for (const auto& member : type.GetStruct().GetMember()) { - if (member.GetType().GetKind() == NKikimrMiniKQL::ETypeKind::List) { - for (const auto& column : member.GetType().GetList().GetItem().GetStruct().GetMember()) { - auto columnMeta = to->add_columns(); - columnMeta->set_name(column.GetName()); - columnTypes.push_back(column.GetType()); - ConvertMiniKQLTypeToYdbType(column.GetType(), *columnMeta->mutable_type()); - } - } - } - for (const auto& responseStruct : from.GetValue().GetStruct()) { - for (const auto& row : responseStruct.GetList()) { - auto newRow = to->add_rows(); - ui32 columnCount = static_cast(row.StructSize()); - Y_ENSURE(columnCount == columnTypes.size()); - for (ui32 i = 0; i < columnCount; i++) { - const auto& column = row.GetStruct(i); - ConvertMiniKQLValueToYdbValue(columnTypes[i], column, *newRow->add_items()); - } - } - if (responseStruct.Getvalue_valueCase() == NKikimrMiniKQL::TValue::kBool) { - to->set_truncated(responseStruct.GetBool()); - } - } -} - TMaybe GetYdbStatus(const TIssue& issue) { if (issue.GetSeverity() == TSeverityIds::S_FATAL) { return Ydb::StatusIds::INTERNAL_ERROR; diff --git a/ydb/core/kqp/session_actor/kqp_session_actor.cpp b/ydb/core/kqp/session_actor/kqp_session_actor.cpp index e1ef6da66ea7..9f8adedc4509 100644 --- a/ydb/core/kqp/session_actor/kqp_session_actor.cpp +++ b/ydb/core/kqp/session_actor/kqp_session_actor.cpp @@ -1771,7 +1771,6 @@ class TKqpSessionActor : public TActorBootstrapped { // Result for scan query is sent directly to target actor. Y_ABORT_UNLESS(response->GetArena()); if (QueryState->PreparedQuery) { - bool useYdbResponseFormat = QueryState->GetUsePublicResponseDataFormat(); auto& phyQuery = QueryState->PreparedQuery->GetPhysicalQuery(); size_t trailingResultsCount = 0; for (size_t i = 0; i < phyQuery.ResultBindingsSize(); ++i) { @@ -1788,28 +1787,12 @@ class TKqpSessionActor : public TActorBootstrapped { continue; } - if (useYdbResponseFormat) { - TMaybe effectiveRowsLimit = FillSettings.RowsLimitPerWrite; - if (QueryState->PreparedQuery->GetResults(i).GetRowsLimit()) { - effectiveRowsLimit = QueryState->PreparedQuery->GetResults(i).GetRowsLimit(); - } - auto* ydbResult = QueryState->QueryData->GetYdbTxResult(phyQuery.GetResultBindings(i), response->GetArena(), effectiveRowsLimit); - response->AddYdbResults()->Swap(ydbResult); - } else { - auto* protoRes = QueryState->QueryData->GetMkqlTxResult(phyQuery.GetResultBindings(i), response->GetArena()); - std::optional fillSettings; - if (QueryState->PreparedQuery->ResultsSize()) { - YQL_ENSURE(phyQuery.ResultBindingsSize() == QueryState->PreparedQuery->ResultsSize(), "" - << phyQuery.ResultBindingsSize() << " != " << QueryState->PreparedQuery->ResultsSize()); - const auto& result = QueryState->PreparedQuery->GetResults(i); - if (result.GetRowsLimit()) { - fillSettings = FillSettings; - fillSettings->RowsLimitPerWrite = result.GetRowsLimit(); - } - } - auto* finalResult = KikimrResultToProto(*protoRes, {}, fillSettings.value_or(FillSettings), response->GetArena()); - response->AddResults()->Swap(finalResult); + TMaybe effectiveRowsLimit = FillSettings.RowsLimitPerWrite; + if (QueryState->PreparedQuery->GetResults(i).GetRowsLimit()) { + effectiveRowsLimit = QueryState->PreparedQuery->GetResults(i).GetRowsLimit(); } + auto* ydbResult = QueryState->QueryData->GetYdbTxResult(phyQuery.GetResultBindings(i), response->GetArena(), effectiveRowsLimit); + response->AddYdbResults()->Swap(ydbResult); } } diff --git a/ydb/core/kqp/session_actor/kqp_worker_actor.cpp b/ydb/core/kqp/session_actor/kqp_worker_actor.cpp index 024a094d0e4d..176179a04b2c 100644 --- a/ydb/core/kqp/session_actor/kqp_worker_actor.cpp +++ b/ydb/core/kqp/session_actor/kqp_worker_actor.cpp @@ -960,7 +960,7 @@ class TKqpWorkerActor : public TActorBootstrapped { // If we have result it must be allocated on protobuf arena Y_ASSERT(result->GetArena()); Y_ASSERT(resp->GetArena() == result->GetArena()); - resp->AddResults()->Swap(result); + resp->AddYdbResults()->Swap(result); } } else { auto resp = ev.MutableResponse(); diff --git a/ydb/core/kqp/session_actor/kqp_worker_common.cpp b/ydb/core/kqp/session_actor/kqp_worker_common.cpp index 63db80b02d88..e7cf7113b049 100644 --- a/ydb/core/kqp/session_actor/kqp_worker_common.cpp +++ b/ydb/core/kqp/session_actor/kqp_worker_common.cpp @@ -119,7 +119,7 @@ void SlowLogQuery(const TActorContext &ctx, const TKikimrConfiguration* config, << 'b'; ui64 resultsSize = 0; - for (auto& result : record->GetResponse().GetResults()) { + for (auto& result : record->GetResponse().GetYdbResults()) { resultsSize += result.ByteSize(); } diff --git a/ydb/core/kqp/ut/yql/kqp_scripting_ut.cpp b/ydb/core/kqp/ut/yql/kqp_scripting_ut.cpp index 6525749d7ce2..b09e37b794dd 100644 --- a/ydb/core/kqp/ut/yql/kqp_scripting_ut.cpp +++ b/ydb/core/kqp/ut/yql/kqp_scripting_ut.cpp @@ -79,7 +79,7 @@ Y_UNIT_TEST_SUITE(KqpScripting) { ALTER TABLE `/Root/ScriptingCreateAndAlterTableTest` SET (AUTO_PARTITIONING_BY_SIZE = ENABLED); )").GetValueSync(); UNIT_ASSERT_VALUES_EQUAL_C(result.GetStatus(), EStatus::SUCCESS, result.GetIssues().ToString()); - + result = client.ExecuteYqlScript(R"( ALTER TABLE `/Root/ScriptingCreateAndAlterTableTest` SET (AUTO_PARTITIONING_BY_SIZE = ENABLED); COMMIT; @@ -88,7 +88,7 @@ Y_UNIT_TEST_SUITE(KqpScripting) { ALTER TABLE `/Root/ScriptingCreateAndAlterTableTest` SET (AUTO_PARTITIONING_MIN_PARTITIONS_COUNT = 4); )").GetValueSync(); UNIT_ASSERT_VALUES_EQUAL_C(result.GetStatus(), EStatus::SUCCESS, result.GetIssues().ToString()); - + result = client.ExecuteYqlScript(R"( ALTER TABLE `/Root/ScriptingCreateAndAlterTableTest` SET (AUTO_PARTITIONING_BY_SIZE = ENABLED); COMMIT; @@ -989,7 +989,36 @@ Y_UNIT_TEST_SUITE(KqpScripting) { [[[101u]];[[201u]];[[301u]];[[401u]];[[501u]];[[601u]];[[701u]];[[801u]]]; [[8u]]; [[8u]]; - [[8u]]])", StreamResultToYson(it)); + [[8u]] + ])", StreamResultToYson(it)); + } + + Y_UNIT_TEST(SelectNullType) { + TKikimrRunner kikimr; + TScriptingClient client(kikimr.GetDriver()); + { + auto result = client.ExecuteYqlScript(R"( + CREATE TABLE demo1(id Text, PRIMARY KEY(id)); + )").GetValueSync(); + UNIT_ASSERT_VALUES_EQUAL_C(result.GetStatus(), EStatus::SUCCESS, result.GetIssues().ToString()); + } + + { + auto result = client.ExecuteYqlScript(R"( + UPSERT INTO demo1(id) VALUES("a"),("b"),("c"); + )").GetValueSync(); + UNIT_ASSERT_VALUES_EQUAL_C(result.GetStatus(), EStatus::SUCCESS, result.GetIssues().ToString()); + } + + { + auto result = client.ExecuteYqlScript(R"( + SELECT NULL auto_proc_ FROM demo1 LIMIT 10; + )").GetValueSync(); + UNIT_ASSERT_VALUES_EQUAL_C(result.GetStatus(), EStatus::SUCCESS, result.GetIssues().ToString()); + CompareYson(R"([ + [#];[#];[#] + ])", FormatResultSetYson(result.GetResultSet(0))); + } } Y_UNIT_TEST(StreamExecuteYqlScriptLeadingEmptyScan) { @@ -1206,7 +1235,7 @@ Y_UNIT_TEST_SUITE(KqpScripting) { Y_UNIT_TEST(StreamExecuteYqlScriptPg) { TKikimrRunner kikimr; - + auto settings = TExecuteYqlRequestSettings() .Syntax(Ydb::Query::SYNTAX_PG); diff --git a/ydb/core/load_test/aggregated_result.cpp b/ydb/core/load_test/aggregated_result.cpp index 82ae3dee3e68..548a5628b442 100644 --- a/ydb/core/load_test/aggregated_result.cpp +++ b/ydb/core/load_test/aggregated_result.cpp @@ -6,6 +6,7 @@ #include #include +#include namespace NKikimr { @@ -77,55 +78,35 @@ IOutputStream& operator<<(IOutputStream& output, const TAggregatedResult& result return output; } -using TColumnPositions = THashMap; - -TColumnPositions GetColumnPositionsInResponse(const NKikimrMiniKQL::TType& ttype) { - TColumnPositions columnPositions; - for (const NKikimrMiniKQL::TMember& member : ttype.GetStruct().GetMember()) { - if (member.GetName() == "Data") { - const auto& listStruct = member.GetType().GetList().GetItem().GetStruct(); - for (const NKikimrMiniKQL::TMember& listMember : listStruct.GetMember()) { - columnPositions.emplace(listMember.GetName(), columnPositions.size()); - } - break; - } - } - return columnPositions; -} - -NKikimrMiniKQL::TValue GetOptional(const NKikimrMiniKQL::TValue& listItem, ui32 pos) { - return listItem.GetStruct(pos).GetOptional(); -} - template -T ExtractValue(const NKikimrMiniKQL::TValue& listItem, ui32 pos) { - Y_UNUSED(listItem, pos); +T ExtractValue(NYdb::TResultSetParser& parser, const TString& column) { + Y_UNUSED(parser, column); Y_ABORT("unimplemented"); } template<> -ui32 ExtractValue(const NKikimrMiniKQL::TValue& listItem, ui32 pos) { - return GetOptional(listItem, pos).GetUint32(); +ui32 ExtractValue(NYdb::TResultSetParser& parser, const TString& column) { + return parser.ColumnParser(column).GetOptionalUint32().GetOrElse(0); } template<> -ui64 ExtractValue(const NKikimrMiniKQL::TValue& listItem, ui32 pos) { - return GetOptional(listItem, pos).GetUint64(); +ui64 ExtractValue(NYdb::TResultSetParser& parser, const TString& column) { + return parser.ColumnParser(column).GetOptionalUint64().GetOrElse(0); } template<> -double ExtractValue(const NKikimrMiniKQL::TValue& listItem, ui32 pos) { - return GetOptional(listItem, pos).GetDouble(); +double ExtractValue(NYdb::TResultSetParser& parser, const TString& column) { + return parser.ColumnParser(column).GetOptionalDouble().GetOrElse(static_cast(0)); } template<> -TString ExtractValue(const NKikimrMiniKQL::TValue& listItem, ui32 pos) { - return GetOptional(listItem, pos).GetBytes(); +TString ExtractValue(NYdb::TResultSetParser& parser, const TString& column) { + return parser.ColumnParser(column).GetOptionalString().GetOrElse(""); } template<> -TInstant ExtractValue(const NKikimrMiniKQL::TValue& listItem, ui32 pos) { - return TInstant::Seconds(GetOptional(listItem, pos).GetUint32()); +TInstant ExtractValue(NYdb::TResultSetParser& parser, const TString& column) { + return TInstant::Seconds(parser.ColumnParser(column).GetOptionalUint32().GetOrElse(0)); } bool GetStatName(TStringBuf columnName, TStringBuf& statName, TStringBuf& suffix) { @@ -161,38 +142,40 @@ void SetInAggregatedField(TStringBuf suffix, T value, TAggregatedField& dst) } } -TAggregatedResult GetResultFromValueListItem(const NKikimrMiniKQL::TValue& listItem, const TColumnPositions& columnPositions) { +TAggregatedResult GetResultFromValueListItem(NYdb::TResultSetParser& parser, const NYdb::TResultSet& rs) { TAggregatedResult result; TStringBuf statName; TStringBuf suffix; TStringBuf levelSb; - for (const auto& [column, pos] : columnPositions) { + for (const auto& columnMeta : rs.GetColumnsMeta()) { + TString column = columnMeta.Name; + if (column == "id") { - result.Uuid = ExtractValue(listItem, pos); + result.Uuid = ExtractValue(parser, column); } else if (column == "start") { - result.Start = ExtractValue(listItem, pos); + result.Start = ExtractValue(parser, column); } else if (column == "finish") { - result.Finish = ExtractValue(listItem, pos); + result.Finish = ExtractValue(parser, column); } else if (column == "total_nodes") { - result.Stats.TotalNodes = ExtractValue(listItem, pos); + result.Stats.TotalNodes = ExtractValue(parser, column); } else if (column == "success_nodes") { - result.Stats.SuccessNodes = ExtractValue(listItem, pos); + result.Stats.SuccessNodes = ExtractValue(parser, column); } else if (column == "config") { - result.Config = ExtractValue(listItem, pos); + result.Config = ExtractValue(parser, column); } else if (GetStatName(column, statName, suffix)) { if (statName == "transactions") { if (suffix == "_avg") { - SetInAggregatedField(suffix, ExtractValue(listItem, pos), result.Stats.Transactions); + SetInAggregatedField(suffix, ExtractValue(parser, column), result.Stats.Transactions); } else { - SetInAggregatedField(suffix, ExtractValue(listItem, pos), result.Stats.Transactions); + SetInAggregatedField(suffix, ExtractValue(parser, column), result.Stats.Transactions); } } else if (statName == "transactions_per_sec") { - SetInAggregatedField(suffix, ExtractValue(listItem, pos), result.Stats.TransactionsPerSecond); + SetInAggregatedField(suffix, ExtractValue(parser, column), result.Stats.TransactionsPerSecond); } else if (statName == "errors_per_sec") { - SetInAggregatedField(suffix, ExtractValue(listItem, pos), result.Stats.ErrorsPerSecond); + SetInAggregatedField(suffix, ExtractValue(parser, column), result.Stats.ErrorsPerSecond); } else if (GetPercentileLevel(statName, levelSb)) { auto level = FromString(levelSb); - SetInAggregatedField(suffix, ExtractValue(listItem, pos), result.Stats.Percentiles[level]); + SetInAggregatedField(suffix, ExtractValue(parser, column), result.Stats.Percentiles[level]); } } } @@ -200,16 +183,16 @@ TAggregatedResult GetResultFromValueListItem(const NKikimrMiniKQL::TValue& listI } bool LoadResultFromResponseProto(const NKikimrKqp::TQueryResponse& response, TVector& results) { - const auto& ttype = response.GetResults(0).GetType(); - auto columnPositions = GetColumnPositionsInResponse(ttype); - if (columnPositions.empty()) { - return false; - } + Y_ABORT_UNLESS(response.GetYdbResults().size() > 0); + + NYdb::TResultSet rs(response.GetYdbResults(0)); + NYdb::TResultSetParser parser(response.GetYdbResults(0)); results.clear(); - for (const NKikimrMiniKQL::TValue& listItem : response.GetResults(0).GetValue().GetStruct().Get(0).GetList()) { - results.push_back(GetResultFromValueListItem(listItem, columnPositions)); + while(parser.TryNextRow()) { + results.push_back(GetResultFromValueListItem(parser, rs)); } + return true; } diff --git a/ydb/core/protos/kqp.proto b/ydb/core/protos/kqp.proto index 238ae23a7376..a7e396ae5735 100644 --- a/ydb/core/protos/kqp.proto +++ b/ydb/core/protos/kqp.proto @@ -278,7 +278,7 @@ message TQueryResponseExtraInfo { message TQueryResponse { optional bytes SessionId = 1; reserved 2; // (deprecated) QueryErrors - repeated NKikimrMiniKQL.TResult Results = 3; + // repeated NKikimrMiniKQL.TResult Results = 3; // optional TQueryProfile Profile = 4; // TODO: Deprecate, use QueryStats reserved 4; optional bytes PreparedQuery = 5; @@ -441,7 +441,7 @@ message TEvPingSessionResponse { message TEvDataQueryStreamPart { optional NActorsProto.TActorId GatewayActorId = 1; - repeated NKikimrMiniKQL.TResult Results = 2; + repeated Ydb.ResultSet Results = 2; }; message TCancelQueryRequest { diff --git a/ydb/core/viewer/viewer_query.h b/ydb/core/viewer/viewer_query.h index c875dc0ba15b..75292362865c 100644 --- a/ydb/core/viewer/viewer_query.h +++ b/ydb/core/viewer/viewer_query.h @@ -546,14 +546,8 @@ class TJsonQuery : public TViewerPipeClient { void MakeOkReply(NJson::TJsonValue& jsonResponse, NKikimrKqp::TEvQueryResponse& record) { const auto& response = record.GetResponse(); - if (response.ResultsSize() > 0 || response.YdbResultsSize() > 0) { + if (response.YdbResultsSize() > 0) { try { - for (const auto& result : response.GetResults()) { - Ydb::ResultSet resultSet; - NKqp::ConvertKqpQueryResultToDbResult(result, &resultSet); - ResultSets.emplace_back().emplace_back(std::move(resultSet)); - } - for (const auto& result : response.GetYdbResults()) { ResultSets.emplace_back().emplace_back(result); } diff --git a/ydb/core/viewer/viewer_query_old.h b/ydb/core/viewer/viewer_query_old.h index 9b130e9be793..a9bc0783431a 100644 --- a/ydb/core/viewer/viewer_query_old.h +++ b/ydb/core/viewer/viewer_query_old.h @@ -493,14 +493,8 @@ class TJsonQueryOld : public TViewerPipeClient { void MakeOkReply(NJson::TJsonValue& jsonResponse, NKikimrKqp::TEvQueryResponse& record) { const auto& response = record.GetResponse(); - if (response.ResultsSize() > 0 || response.YdbResultsSize() > 0) { + if (response.YdbResultsSize() > 0) { try { - for (const auto& result : response.GetResults()) { - Ydb::ResultSet resultSet; - NKqp::ConvertKqpQueryResultToDbResult(result, &resultSet); - ResultSets.emplace_back(std::move(resultSet)); - } - for (const auto& result : response.GetYdbResults()) { ResultSets.emplace_back(result); } diff --git a/ydb/tests/tools/kqprun/src/ydb_setup.cpp b/ydb/tests/tools/kqprun/src/ydb_setup.cpp index d8e295b9ce33..d394732d4246 100644 --- a/ydb/tests/tools/kqprun/src/ydb_setup.cpp +++ b/ydb/tests/tools/kqprun/src/ydb_setup.cpp @@ -440,10 +440,9 @@ TRequestResult TYdbSetup::YqlScriptRequest(const TString& query, NKikimrKqp::EQu meta.Ast = responseRecord.GetQueryAst(); meta.Plan = responseRecord.GetQueryPlan(); - resultSets.reserve(responseRecord.results_size()); - for (const auto& result : responseRecord.results()) { - resultSets.emplace_back(); - NKikimr::NKqp::ConvertKqpQueryResultToDbResult(result, &resultSets.back()); + resultSets.reserve(responseRecord.ydbresults_size()); + for (const auto& result : responseRecord.ydbresults()) { + resultSets.emplace_back(result); } return TRequestResult(yqlQueryOperationResponse.GetYdbStatus(), responseRecord.GetQueryIssues()); diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.0.ast b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.ast new file mode 100644 index 000000000000..3b25ae4353ec --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.ast @@ -0,0 +1,215 @@ +( +(let $1 (DataType 'Double)) +(let $2 (DataType 'Int64)) +(let $3 (StructType '('"l_discount" $1) '('"l_extendedprice" $1) '('"l_orderkey" $2) '('"l_partkey" $2) '('"l_suppkey" $2))) +(let $4 '('('"_logical_id" '17369) '('"_id" '"f0967be9-2e6a1dea-ff64298d-66a3af21") '('"_wide_channels" $3))) +(let $5 (DqPhyStage '() (lambda '() (block '( + (let $93 (KqpTable '"/dev/test/column/tpch10000/lineitem" '"72075186224037889:110" '"" '1)) + (let $94 '('"l_discount" '"l_extendedprice" '"l_orderkey" '"l_partkey" '"l_suppkey")) + (let $95 (KqpBlockReadOlapTableRanges $93 (Void) $94 '() '() (lambda '($96) $96))) + (return (FromFlow $95)) +))) $4)) +(let $6 (DataType 'Date32)) +(let $7 (StructType '('"o_custkey" $2) '('"o_orderdate" $6) '('"o_orderkey" $2))) +(let $8 '('('"_logical_id" '13575) '('"_id" '"8b17ce0c-d1e97369-7ec5ac4b-fc5c970") '('"_wide_channels" $7))) +(let $9 (DqPhyStage '() (lambda '() (block '( + (let $97 (KqpTable '"/dev/test/column/tpch10000/orders" '"72075186224037889:112" '"" '1)) + (let $98 '('"o_custkey" '"o_orderdate" '"o_orderkey")) + (let $99 (KqpBlockReadOlapTableRanges $97 (Void) $98 '() '() (lambda '($101) $101))) + (let $100 (lambda '($102 $103 $104 $105) (block '( + (let $106 (BlockType (DataType 'Bool))) + (let $107 (BlockFunc '"GreaterOrEqual" $106 $103 (AsScalar (Date '"9131")))) + (let $108 (BlockFunc '"LessOrEqual" $106 $103 (AsScalar (Date '"9861")))) + (return $102 $103 $104 (BlockAnd $107 $108) $105) + )))) + (return (FromFlow (BlockCompress (WideMap $99 $100) '3))) +))) $8)) +(let $10 '('0)) +(let $11 (DqPhyStage '() (lambda '() (block '( + (let $109 (KqpTable '"/dev/test/column/tpch10000/nation" '"72075186224037889:111" '"" '1)) + (let $110 '('"n_name" '"n_nationkey" '"n_regionkey")) + (let $111 (KqpBlockReadOlapTableRanges $109 (Void) $110 '() '() (lambda '($112) $112))) + (return (FromFlow (Switch (NarrowMap (WideFromBlocks $111) (lambda '($113 $114 $115) (AsStruct '('"n_name" $113) '('"n_nationkey" $114) '('"n_regionkey" $115)))) '"134217728" $10 (lambda '($116) (Map $116 (lambda '($117) (AsStruct '('"n_name" (Member $117 '"n_name")) '('"n_nationkey" (Member $117 '"n_nationkey")))))) $10 (lambda '($118) (Map $118 (lambda '($119) (AsStruct '('"n_nationkey" (Member $119 '"n_nationkey")) '('"n_regionkey" (Member $119 '"n_regionkey"))))))))) +))) '('('"_logical_id" '16371) '('"_id" '"6cceae28-c6235014-18356e8d-9637b29a")))) +(let $12 '('"r_regionkey")) +(let $13 (DataType 'Int32)) +(let $14 '('"_wide_channels" (StructType '('"r_regionkey" $13)))) +(let $15 '('('"_logical_id" '13602) '('"_id" '"ed66af1e-30ddde1d-cf5390d-d10c6a62") $14)) +(let $16 (DqPhyStage '() (lambda '() (block '( + (let $120 (KqpTable '"/dev/test/column/tpch10000/region" '"72075186224037889:115" '"" '1)) + (let $121 (KqpBlockReadOlapTableRanges $120 (Void) '('"r_name" '"r_regionkey") '() '() (lambda '($122) (block '( + (let $123 '('eq '"r_name" (String '"AFRICA"))) + (return (TKqpOlapExtractMembers (KqpOlapFilter $122 $123) $12)) + ))))) + (return (FromFlow $121)) +))) $15)) +(let $17 (DqCnUnionAll (TDqOutput $16 '0))) +(let $18 '('('"_logical_id" '15688) '('"_id" '"880b109d-9a38ff01-5bf4e612-99bf1df3") $14)) +(let $19 (DqPhyStage '($17) (lambda '($124) $124) $18)) +(let $20 (DqCnMap (TDqOutput $11 '1))) +(let $21 (DqCnBroadcast (TDqOutput $19 '0))) +(let $22 '('Many 'Hashed 'Compact)) +(let $23 '('"n.n_nationkey" $13)) +(let $24 '('"n.n_regionkey" $13)) +(let $25 '('"r.r_regionkey" $13)) +(let $26 (StructType $23 $24 $25)) +(let $27 '('"_wide_channels" $26)) +(let $28 '('('"_logical_id" '15709) '('"_id" '"a7064ce3-aec6af4e-be08436a-6426f660") $27)) +(let $29 (DqPhyStage '($20 $21) (lambda '($125 $126) (block '( + (let $127 (NarrowSqueezeToDict (WideFromBlocks (ToFlow $126)) (lambda '($129) $129) (lambda '($130) (AsStruct '('"r_regionkey" $130))) $22)) + (let $128 (lambda '($133) (Member $133 '"n.n_nationkey") (Member $133 '"n.n_regionkey") (Member $133 '"r.r_regionkey"))) + (return (FromFlow (ExpandMap (FlatMap $127 (lambda '($131) (block '( + (let $132 '('"n_nationkey" '"n.n_nationkey" '"n_regionkey" '"n.n_regionkey")) + (return (MapJoinCore (ToFlow $125) $131 '"Inner" '('"n_regionkey") $12 $132 '('"r_regionkey" '"r.r_regionkey") '('"n.n_regionkey") '('"r.r_regionkey"))) + )))) $128))) +))) $28)) +(let $30 (DqCnUnionAll (TDqOutput $29 '0))) +(let $31 '('('"_logical_id" '15743) '('"_id" '"524011b3-8ce3dec6-656a272d-d1c94c1d") $27)) +(let $32 (DqPhyStage '($30) (lambda '($134) (FromFlow (ToFlow $134))) $31)) +(let $33 (DqCnBroadcast (TDqOutput $32 '0))) +(let $34 '('1)) +(let $35 '('"c.c_custkey" $2)) +(let $36 '('"c.c_nationkey" $13)) +(let $37 (StructType $35 $36 $23 $24 $25)) +(let $38 '('('"_logical_id" '15772) '('"_id" '"379be839-ad51c7d6-3ff70485-d76ea898") '('"_wide_channels" $37))) +(let $39 (DqPhyStage '($33) (lambda '($135) (block '( + (let $136 (NarrowSqueezeToDict (ToFlow $135) (lambda '($137 $138 $139) $137) (lambda '($140 $141 $142) (AsStruct '('"n.n_nationkey" $140) '('"n.n_regionkey" $141) '('"r.r_regionkey" $142))) $22)) + (return (FromFlow (FlatMap $136 (lambda '($143) (block '( + (let $144 (KqpTable '"/dev/test/column/tpch10000/customer" '"72075186224037889:109" '"" '1)) + (let $145 (KqpBlockReadOlapTableRanges $144 (Void) '('"c_custkey" '"c_nationkey") '() '() (lambda '($149) $149))) + (let $146 '('"n.n_nationkey")) + (let $147 '('0 '0 '1 '1)) + (let $148 '('"n.n_nationkey" '2 '"n.n_regionkey" '3 '"r.r_regionkey" '4)) + (return (MapJoinCore (WideFromBlocks $145) $143 '"Inner" $34 $146 $147 $148 '('"c.c_nationkey") $146)) + )))))) +))) $38)) +(let $40 (DqCnHashShuffle (TDqOutput $9 '0) $10)) +(let $41 (DqCnHashShuffle (TDqOutput $39 '0) $10)) +(let $42 '('"o.o_custkey" $2)) +(let $43 '('"o.o_orderdate" $6)) +(let $44 '('"o.o_orderkey" $2)) +(let $45 (StructType $35 $36 $23 $24 $42 $43 $44 $25)) +(let $46 '('('"_logical_id" '15888) '('"_id" '"902c827b-4ef024cc-62aab201-b514f234") '('"_wide_channels" $45))) +(let $47 (DqPhyStage '($40 $41) (lambda '($150 $151) (block '( + (let $152 '('0 '0 '1 '1 '2 '2)) + (let $153 '('0 '3 '1 '4 '2 '5 '3 '6 '4 '7)) + (let $154 (GraceJoinCore (WideFromBlocks (ToFlow $150)) (ToFlow $151) '"Inner" $10 $10 $152 $153 '('"o.o_custkey") '('"c.c_custkey") '())) + (let $155 (lambda '($156 $157 $158 $159 $160 $161 $162 $163) $159 $160 $161 $162 $156 $157 $158 $163)) + (return (FromFlow (WideMap $154 $155))) +))) $46)) +(let $48 '('2)) +(let $49 (DqCnHashShuffle (TDqOutput $5 '0) $48)) +(let $50 '('6)) +(let $51 (DqCnHashShuffle (TDqOutput $47 '0) $50)) +(let $52 '('"l.l_discount" $1)) +(let $53 '('"l.l_extendedprice" $1)) +(let $54 '('"l.l_orderkey" $2)) +(let $55 '('"l.l_partkey" $2)) +(let $56 '('"l.l_suppkey" $2)) +(let $57 (StructType $35 $36 $52 $53 $54 $55 $56 $23 $24 $42 $43 $44 $25)) +(let $58 '('('"_logical_id" '16072) '('"_id" '"88def2c-40f5ff96-f11d9d25-66321b6f") '('"_wide_channels" $57))) +(let $59 (DqPhyStage '($49 $51) (lambda '($164 $165) (block '( + (let $166 '('0 '0 '1 '1 '2 '2 '3 '3 '4 '4)) + (let $167 '('0 '5 '1 '6 '2 '7 '3 '8 '4 '9 '5 '10 '6 '11 '7 '12)) + (let $168 (GraceJoinCore (WideFromBlocks (ToFlow $164)) (ToFlow $165) '"Inner" $48 $50 $166 $167 '('"l.l_orderkey") '('"o.o_orderkey") '())) + (let $169 (lambda '($170 $171 $172 $173 $174 $175 $176 $177 $178 $179 $180 $181 $182) $175 $176 $170 $171 $172 $173 $174 $177 $178 $179 $180 $181 $182)) + (return (FromFlow (WideMap $168 $169))) +))) $58)) +(let $60 '('('"_logical_id" '13633) '('"_id" '"bdc5c685-92f5bf1e-8fbffa03-a53dbe6f") '('"_wide_channels" (StructType '('"p_partkey" $2))))) +(let $61 (DqPhyStage '() (lambda '() (block '( + (let $183 (KqpTable '"/dev/test/column/tpch10000/part" '"72075186224037889:113" '"" '1)) + (let $184 (KqpBlockReadOlapTableRanges $183 (Void) '('"p_partkey" '"p_type") '() '() (lambda '($185) (block '( + (let $186 '('eq '"p_type" (String '"ECONOMY PLATED COPPER"))) + (return (TKqpOlapExtractMembers (KqpOlapFilter $185 $186) '('"p_partkey"))) + ))))) + (return (FromFlow $184)) +))) $60)) +(let $62 '('5)) +(let $63 (DqCnHashShuffle (TDqOutput $59 '0) $62)) +(let $64 (DqCnHashShuffle (TDqOutput $61 '0) $10)) +(let $65 (StructType $35 $36 $52 $53 $54 $55 $56 $23 $24 $42 $43 $44 '('"p.p_partkey" $2) $25)) +(let $66 '('('"_logical_id" '16277) '('"_id" '"a5d4f8ae-f090f15e-232d3a79-e957f89d") '('"_wide_channels" $65))) +(let $67 (DqPhyStage '($63 $64) (lambda '($187 $188) (block '( + (let $189 '('0 '0 '1 '1 '2 '2 '3 '3 '4 '4 '5 '5 '6 '6 '7 '7 '8 '8 '9 '9 '10 '10 '11 '11 '12 '12)) + (let $190 (GraceJoinCore (ToFlow $187) (WideFromBlocks (ToFlow $188)) '"Inner" $62 $10 $189 '('0 '13) '('"l.l_partkey") '('"p.p_partkey") '())) + (let $191 (lambda '($192 $193 $194 $195 $196 $197 $198 $199 $200 $201 $202 $203 $204 $205) $192 $193 $194 $195 $196 $197 $198 $199 $200 $201 $202 $203 $205 $204)) + (return (FromFlow (WideMap $190 $191))) +))) $66)) +(let $68 (DqCnUnionAll (TDqOutput $11 '0))) +(let $69 (DataType 'Utf8)) +(let $70 '('('"_logical_id" '16428) '('"_id" '"d8a3b18f-29068d7-edec6214-ff96250c") '('"_wide_channels" (StructType '('"n_name" $69) '('"n_nationkey" $13))))) +(let $71 (DqPhyStage '($68) (lambda '($206) (block '( + (let $207 (lambda '($208) (Member $208 '"n_name") (Member $208 '"n_nationkey"))) + (return (FromFlow (ExpandMap (ToFlow $206) $207))) +))) $70)) +(let $72 (DqCnBroadcast (TDqOutput $71 '0))) +(let $73 (StructType '('"n_1.n_name" $69) '('"n_1.n_nationkey" $13) '('"s.s_nationkey" $13) '('"s.s_suppkey" $2))) +(let $74 '('('"_logical_id" '16457) '('"_id" '"40294773-88ab8837-9d9a929c-2d2d18b1") '('"_wide_channels" $73))) +(let $75 (DqPhyStage '($72) (lambda '($209) (block '( + (let $210 (NarrowSqueezeToDict (ToFlow $209) (lambda '($211 $212) $212) (lambda '($213 $214) (AsStruct '('"n_name" $213) '('"n_nationkey" $214))) $22)) + (return (FromFlow (FlatMap $210 (lambda '($215) (block '( + (let $216 (KqpTable '"/dev/test/column/tpch10000/supplier" '"72075186224037889:116" '"" '1)) + (let $217 (KqpBlockReadOlapTableRanges $216 (Void) '('"s_nationkey" '"s_suppkey") '() '() (lambda '($220) $220))) + (let $218 '('0 '2 '1 '3)) + (let $219 '('"n_name" '0 '"n_nationkey" '1)) + (return (MapJoinCore (WideFromBlocks $217) $215 '"Inner" $10 '('"n_nationkey") $218 $219 '('"s.s_nationkey") '('"n_1.n_nationkey"))) + )))))) +))) $74)) +(let $76 (DqCnHashShuffle (TDqOutput $67 '0) $50)) +(let $77 (DqCnHashShuffle (TDqOutput $75 '0) '('3))) +(let $78 (DataType 'Uint16)) +(let $79 (OptionalType $78)) +(let $80 (lambda '($281 $282 $283) $282 $283 $281)) +(let $81 '('"o_year" $79)) +(let $82 (StructType '('_yql_agg_0 $1) '('_yql_agg_1 $1) $81)) +(let $83 '('('"_logical_id" '17040) '('"_id" '"964a72a9-2eaeea19-7e2ca345-1490ccca") '('"_wide_channels" $82))) +(let $84 (DqPhyStage '($76 $77) (lambda '($221 $222) (block '( + (let $223 (lambda '($232 $233 $234 $235 $236 $237 $238 $239 $240 $241 $242 $243 $244 $245) $234 $235 $238 $242)) + (let $224 (lambda '($246 $247 $248 $249) $246 $249)) + (let $225 '('0 '0 '1 '1 '3 '2)) + (let $226 (GraceJoinCore (WideMap (ToFlow $221) $223) (WideMap (ToFlow $222) $224) '"Inner" $48 $34 $225 '('0 '3) '('"l.l_suppkey") '('"s.s_suppkey") '())) + (let $227 (String '"MOZAMBIQUE")) + (let $228 (Int32 '1)) + (let $229 (Double '"0.")) + (let $230 (lambda '($265 $266 $267 $268 $269) (block '( + (let $270 (* $267 (- $228 $266))) + (let $271 (If (== $269 $227) $270 $229)) + (return $271 $270) + )))) + (let $231 (lambda '($272 $273 $274 $275 $276 $277 $278) (block '( + (let $279 (* $274 (- $228 $273))) + (let $280 (If (== $276 $227) $279 $229)) + (return (AggrAdd $280 $277) (AggrAdd $279 $278)) + )))) + (return (FromFlow (WideCombiner $226 '-1073741824 (lambda '($250 $251 $252 $253) (block '( + (let $254 (DataType 'Timestamp)) + (return (IfPresent (SafeCast $252 (OptionalType $254)) (lambda '($255) (block '( + (let $256 (ResourceType '"DateTime2.TM")) + (let $257 '($256 '"" '1)) + (let $258 (CallableType '() '($78) $257)) + (let $259 '('"strict")) + (let $260 (Udf '"DateTime2.GetYear" (Void) (VoidType) '"" $258 (VoidType) '"" '($259))) + (let $261 (TupleType (TupleType $254) (StructType) (TupleType))) + (let $262 '($254 '"" '1)) + (let $263 (CallableType '() '($256) $262)) + (let $264 (Udf 'DateTime2.Split (Void) $261 '"" $263 (VoidType) '"" '('('"blocks") $259))) + (return (Just (Apply $260 (Apply $264 $255)))) + ))) (Nothing $79))) + ))) $230 $231 $80))) +))) $83)) +(let $85 (DqCnHashShuffle (TDqOutput $84 '0) $48)) +(let $86 (StructType '('"mkt_share" $1) $81)) +(let $87 '('('"_logical_id" '17186) '('"_id" '"8a251b5a-46bf816f-9cbd4d6f-72c3b070") '('"_wide_channels" $86))) +(let $88 (DqPhyStage '($85) (lambda '($284) (block '( + (let $285 (lambda '($292 $293 $294 $295) $293 $294)) + (let $286 (lambda '($296 $297 $298 $299 $300 $301) (AggrAdd $297 $300) (AggrAdd $298 $301))) + (let $287 (WideCombiner (ToFlow $284) '"" (lambda '($289 $290 $291) $291) $285 $286 $80)) + (let $288 (lambda '($302 $303 $304) (/ $302 $303) $304)) + (return (FromFlow (WideMap (WideSort $287 '('('2 (Bool 'true)))) $288))) +))) $87)) +(let $89 (DqCnMerge (TDqOutput $88 '0) '('('1 '"Asc")))) +(let $90 (DqPhyStage '($89) (lambda '($305) (FromFlow (NarrowMap (ToFlow $305) (lambda '($306 $307) (AsStruct '('"mkt_share" $306) '('"o_year" $307)))))) '('('"_logical_id" '17198) '('"_id" '"e3efc380-ffd2d4b2-d4b4dfcd-4132c84f")))) +(let $91 '($5 $9 $11 $16 $19 $29 $32 $39 $47 $59 $61 $67 $71 $75 $84 $88 $90)) +(let $92 (DqCnResult (TDqOutput $90 '0) '('"o_year" '"mkt_share"))) +(return (KqpPhysicalQuery '((KqpPhysicalTx $91 '($92) '() '('('"type" '"generic")))) '((KqpTxResultBinding (ListType $86) '0 '0)) '('('"type" '"query")))) +) diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.0.json b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.json new file mode 100644 index 000000000000..3a5ce7306be5 --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.json @@ -0,0 +1,25172 @@ +{ + "Plan" : { + "Plans" : [ + { + "PlanNodeId" : 35, + "Plans" : [ + { + "PlanNodeId" : 34, + "Plans" : [ + { + "PlanNodeId" : 33, + "Plans" : [ + { + "PlanNodeId" : 32, + "Plans" : [ + { + "PlanNodeId" : 31, + "Plans" : [ + { + "PlanNodeId" : 30, + "Plans" : [ + { + "PlanNodeId" : 29, + "Plans" : [ + { + "PlanNodeId" : 28, + "Plans" : [ + { + "PlanNodeId" : 7, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/part" + ], + "PlanNodeId" : 6, + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "E-Rows" : "2000000000", + "Predicate" : "p_type == ECONOMY PLATED COPPER", + "Name" : "Filter", + "E-Size" : "1.453776614e+11", + "E-Cost" : "0" + }, + { + "Scan" : "Parallel", + "E-Size" : "1.453776614e+11", + "ReadRanges" : [ + "p_partkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "2000000000", + "Table" : "column/tpch10000/part", + "ReadColumns" : [ + "p_partkey", + "p_type" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "ECONOMY PLATED COPPER" + }, + "Column" : { + "Id" : 10 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 9 + }, + { + "Id" : 10 + } + ] + }, + "Column" : { + "Id" : 11 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 11 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 6 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "Filter-TableFullScan", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585347868, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 356990, + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 2004120, + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 34823, + "Rows" : 356990, + "DstStageId" : 11, + "Bytes" : 6171222 + } + ], + "WaitInputTimeUs" : 15467256, + "TaskId" : 385, + "OutputBytes" : 6171222 + } + ], + "PeakMemoryUsageBytes" : 20784640, + "DurationUs" : 17685000, + "CpuTimeUs" : 5822437 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585347868, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 322515, + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 1798872, + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 34920, + "Rows" : 322515, + "DstStageId" : 11, + "Bytes" : 5571631 + } + ], + "WaitInputTimeUs" : 15675424, + "TaskId" : 386, + "OutputBytes" : 5571631 + } + ], + "PeakMemoryUsageBytes" : 21276416, + "DurationUs" : 17685000, + "CpuTimeUs" : 5268411 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585349163, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 337639, + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1906529, + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 33756, + "Rows" : 337639, + "DstStageId" : 11, + "Bytes" : 5827955 + } + ], + "WaitInputTimeUs" : 16443773, + "TaskId" : 374, + "OutputBytes" : 5827955 + } + ], + "PeakMemoryUsageBytes" : 21522304, + "DurationUs" : 18972000, + "CpuTimeUs" : 5701750 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585349169, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 363171, + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 2053112, + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 33659, + "Rows" : 363171, + "DstStageId" : 11, + "Bytes" : 6271207 + } + ], + "WaitInputTimeUs" : 16301721, + "TaskId" : 373, + "OutputBytes" : 6271207 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 18978000, + "CpuTimeUs" : 6417448 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585349189, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 385558, + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 2167230, + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 33562, + "Rows" : 385558, + "DstStageId" : 11, + "Bytes" : 6653286 + } + ], + "WaitInputTimeUs" : 16203750, + "TaskId" : 372, + "OutputBytes" : 6653286 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 18998000, + "CpuTimeUs" : 6814210 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585358915, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 273192, + "StartTimeMs" : 1726585330192, + "ComputeTimeUs" : 1605672, + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 35405, + "Rows" : 273192, + "DstStageId" : 11, + "Bytes" : 4711608 + } + ], + "WaitInputTimeUs" : 26507033, + "TaskId" : 392, + "OutputBytes" : 4711608 + } + ], + "PeakMemoryUsageBytes" : 20538752, + "DurationUs" : 28723000, + "CpuTimeUs" : 5432708 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585358928, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 338709, + "StartTimeMs" : 1726585330192, + "ComputeTimeUs" : 1963285, + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 35309, + "Rows" : 338709, + "DstStageId" : 11, + "Bytes" : 5861433 + } + ], + "WaitInputTimeUs" : 26159996, + "TaskId" : 391, + "OutputBytes" : 5861433 + } + ], + "PeakMemoryUsageBytes" : 20784640, + "DurationUs" : 28736000, + "CpuTimeUs" : 6618326 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585365859, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 346375, + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 2027371, + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 34532, + "Rows" : 346375, + "DstStageId" : 11, + "Bytes" : 5977619 + } + ], + "WaitInputTimeUs" : 33365476, + "TaskId" : 382, + "OutputBytes" : 5977619 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 35674000, + "CpuTimeUs" : 6671789 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585365863, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 312234, + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 1816607, + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 34629, + "Rows" : 312234, + "DstStageId" : 11, + "Bytes" : 5405058 + } + ], + "WaitInputTimeUs" : 33579758, + "TaskId" : 383, + "OutputBytes" : 5405058 + } + ], + "PeakMemoryUsageBytes" : 21768192, + "DurationUs" : 35678000, + "CpuTimeUs" : 5876027 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367179, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 333499, + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 1990985, + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 35599, + "Rows" : 333499, + "DstStageId" : 11, + "Bytes" : 5763103 + } + ], + "WaitInputTimeUs" : 34451235, + "TaskId" : 394, + "OutputBytes" : 5763103 + } + ], + "PeakMemoryUsageBytes" : 21276416, + "DurationUs" : 36989000, + "CpuTimeUs" : 7044956 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367191, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 256433, + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 1545025, + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 35696, + "Rows" : 256433, + "DstStageId" : 11, + "Bytes" : 4436325 + } + ], + "WaitInputTimeUs" : 34907135, + "TaskId" : 395, + "OutputBytes" : 4436325 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 37001000, + "CpuTimeUs" : 5543697 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367896, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 349744, + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 2135633, + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 35114, + "Rows" : 349744, + "DstStageId" : 11, + "Bytes" : 6038576 + } + ], + "WaitInputTimeUs" : 35194740, + "TaskId" : 388, + "OutputBytes" : 6038576 + } + ], + "PeakMemoryUsageBytes" : 21276416, + "DurationUs" : 37709000, + "CpuTimeUs" : 6609124 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367908, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 281842, + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 1763745, + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 35211, + "Rows" : 281842, + "DstStageId" : 11, + "Bytes" : 4872218 + } + ], + "WaitInputTimeUs" : 35561315, + "TaskId" : 389, + "OutputBytes" : 4872218 + } + ], + "PeakMemoryUsageBytes" : 21522304, + "DurationUs" : 37721000, + "CpuTimeUs" : 5563186 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370697, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 256362, + "StartTimeMs" : 1726585330178, + "ComputeTimeUs" : 1512751, + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 34047, + "Rows" : 256362, + "DstStageId" : 11, + "Bytes" : 4433666 + } + ], + "WaitInputTimeUs" : 38976757, + "TaskId" : 377, + "OutputBytes" : 4433666 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 40519000, + "CpuTimeUs" : 5203605 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370708, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 332048, + "StartTimeMs" : 1726585330178, + "ComputeTimeUs" : 1937759, + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 33950, + "Rows" : 332048, + "DstStageId" : 11, + "Bytes" : 5728920 + } + ], + "WaitInputTimeUs" : 38561280, + "TaskId" : 376, + "OutputBytes" : 5728920 + } + ], + "PeakMemoryUsageBytes" : 21522304, + "DurationUs" : 40530000, + "CpuTimeUs" : 6879428 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585371479, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 245087, + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 1446319, + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 34338, + "Rows" : 245087, + "DstStageId" : 11, + "Bytes" : 4236299 + } + ], + "WaitInputTimeUs" : 39561914, + "TaskId" : 380, + "OutputBytes" : 4236299 + } + ], + "PeakMemoryUsageBytes" : 21276416, + "DurationUs" : 41294000, + "CpuTimeUs" : 4986254 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585371536, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 331636, + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 1873277, + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 34241, + "Rows" : 331636, + "DstStageId" : 11, + "Bytes" : 5735188 + } + ], + "WaitInputTimeUs" : 39174521, + "TaskId" : 379, + "OutputBytes" : 5735188 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 41351000, + "CpuTimeUs" : 6675682 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370724, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 453223, + "StartTimeMs" : 1726585330177, + "ComputeTimeUs" : 2814324, + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 33853, + "Rows" : 453223, + "DstStageId" : 11, + "Bytes" : 7829547 + } + ], + "WaitInputTimeUs" : 37691573, + "TaskId" : 375, + "OutputBytes" : 7829547 + } + ], + "PeakMemoryUsageBytes" : 22014080, + "DurationUs" : 40547000, + "CpuTimeUs" : 9442004 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370166, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 404933, + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 2454793, + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 34435, + "Rows" : 404933, + "DstStageId" : 11, + "Bytes" : 6990161 + } + ], + "WaitInputTimeUs" : 32928812, + "TaskId" : 381, + "OutputBytes" : 6990161 + } + ], + "PeakMemoryUsageBytes" : 21276416, + "DurationUs" : 39981000, + "CpuTimeUs" : 7830453 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367897, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 399962, + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 2688582, + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 35017, + "Rows" : 399962, + "DstStageId" : 11, + "Bytes" : 6906194 + } + ], + "WaitInputTimeUs" : 34647721, + "TaskId" : 387, + "OutputBytes" : 6906194 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 37710000, + "CpuTimeUs" : 7812788 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585358911, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 397570, + "StartTimeMs" : 1726585330192, + "ComputeTimeUs" : 2738833, + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 35308, + "Rows" : 397570, + "DstStageId" : 11, + "Bytes" : 6864618 + } + ], + "WaitInputTimeUs" : 25374133, + "TaskId" : 390, + "OutputBytes" : 6864618 + } + ], + "PeakMemoryUsageBytes" : 21276416, + "DurationUs" : 28719000, + "CpuTimeUs" : 8133782 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585371444, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 439677, + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 2848990, + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 34144, + "Rows" : 439677, + "DstStageId" : 11, + "Bytes" : 7597217 + } + ], + "WaitInputTimeUs" : 38138222, + "TaskId" : 378, + "OutputBytes" : 7597217 + } + ], + "PeakMemoryUsageBytes" : 21030528, + "DurationUs" : 41259000, + "CpuTimeUs" : 9501183 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370692, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 395673, + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 2251937, + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 34726, + "Rows" : 395673, + "DstStageId" : 11, + "Bytes" : 6837005 + } + ], + "WaitInputTimeUs" : 15209200, + "TaskId" : 384, + "OutputBytes" : 6837005 + } + ], + "PeakMemoryUsageBytes" : 21276416, + "DurationUs" : 40509000, + "CpuTimeUs" : 6286898 + } + ], + "UseLlvm" : "undefined", + "DurationUs" : { + "Count" : 23, + "Sum" : 762968000, + "Max" : 41351000, + "Min" : 17685000 + }, + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 23, + "Sum" : 2874719, + "Max" : 164598, + "Min" : 89698 + }, + "Rows" : { + "Count" : 23, + "Sum" : 7914072, + "Max" : 453223, + "Min" : 245087 + }, + "LastMessageMs" : { + "Count" : 23, + "Sum" : 762868, + "Max" : 41313, + "Min" : 17513 + }, + "ActiveMessageMs" : { + "Count" : 23, + "Max" : 41313, + "Min" : 1456 + }, + "FirstMessageMs" : { + "Count" : 23, + "Sum" : 48254, + "Max" : 2439, + "Min" : 1456 + }, + "Bytes" : { + "Count" : 23, + "Sum" : 136720056, + "Max" : 7829547, + "Min" : 4236299 + }, + "ActiveTimeUs" : { + "Count" : 23, + "Sum" : 714614000, + "Max" : 39551000, + "Min" : 15239000 + } + }, + "Name" : "28", + "Push" : { + "Rows" : { + "Count" : 23, + "Sum" : 8191605, + "Max" : 508392, + "Min" : 245087 + }, + "LastMessageMs" : { + "Count" : 23, + "Sum" : 735609, + "Max" : 41312, + "Min" : 17512 + }, + "Chunks" : { + "Count" : 23, + "Sum" : 8191605, + "Max" : 508392, + "Min" : 245087 + }, + "ResumeMessageMs" : { + "Count" : 23, + "Sum" : 735585, + "Max" : 41312, + "Min" : 17512 + }, + "FirstMessageMs" : { + "Count" : 23, + "Sum" : 48223, + "Max" : 2437, + "Min" : 1455 + }, + "ActiveMessageMs" : { + "Count" : 23, + "Max" : 41312, + "Min" : 1455 + }, + "PauseMessageMs" : { + "Count" : 23, + "Sum" : 15628, + "Max" : 707, + "Min" : 674 + }, + "ActiveTimeUs" : { + "Count" : 23, + "Sum" : 687386000, + "Max" : 39536000, + "Min" : 15240000 + }, + "WaitTimeUs" : { + "Count" : 23, + "Sum" : 666690374, + "Max" : 39237338, + "Min" : 13738015 + }, + "WaitPeriods" : { + "Count" : 23, + "Sum" : 2872229, + "Max" : 164488, + "Min" : 89581 + }, + "WaitMessageMs" : { + "Count" : 23, + "Max" : 41312, + "Min" : 674 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 23, + "Sum" : 602931200, + "Max" : 26214400, + "Min" : 26214400 + }, + "Tasks" : 23, + "OutputRows" : { + "Count" : 23, + "Sum" : 7914072, + "Max" : 453223, + "Min" : 245087 + }, + "PhysicalStageId" : 10, + "StageDurationUs" : 41359000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 23, + "Sum" : 680082745, + "Max" : 39561914, + "Min" : 15209200 + }, + "CpuTimeUs" : { + "Count" : 23, + "Sum" : 47354426, + "Max" : 2849333, + "Min" : 1446676 + }, + "OutputBytes" : { + "Count" : 23, + "Sum" : 136720056, + "Max" : 7829547, + "Min" : 4236299 + } + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "p_partkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 27, + "Plans" : [ + { + "PlanNodeId" : 26, + "Plans" : [ + { + "PlanNodeId" : 23, + "Plans" : [ + { + "PlanNodeId" : 22, + "Plans" : [ + { + "PlanNodeId" : 21, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/orders" + ], + "PlanNodeId" : 20, + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "E-Rows" : "3750000000", + "Predicate" : "item.o_orderdate >= \"9131\" And item.o_orderdate <= \"9861\"", + "Name" : "Filter", + "E-Size" : "2.336066282e+11", + "E-Cost" : "0" + }, + { + "Scan" : "Parallel", + "E-Size" : "9.344265128e+11", + "ReadRanges" : [ + "o_orderkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "1.5e+10", + "Table" : "column/tpch10000/orders", + "ReadColumns" : [ + "o_custkey", + "o_orderdate", + "o_orderkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 5 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "Filter-TableFullScan", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585365566, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 4352782, + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 1067, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 30871144, + "TaskId" : 35 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 35384000, + "CpuTimeUs" : 8906398 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585365566, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 5200543, + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 970, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 30032292, + "TaskId" : 34 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 35385000, + "CpuTimeUs" : 10611504 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585365568, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 3326049, + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 1164, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 31907093, + "TaskId" : 36 + } + ], + "PeakMemoryUsageBytes" : 3524160, + "DurationUs" : 35386000, + "CpuTimeUs" : 6761361 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585366798, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 4335337, + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 2134, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 31907742, + "TaskId" : 47 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 36612000, + "CpuTimeUs" : 8775153 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585366798, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 5414803, + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 2037, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 30831870, + "TaskId" : 46 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 36612000, + "CpuTimeUs" : 11037069 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585366800, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 3104739, + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 2231, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 33148969, + "TaskId" : 48 + } + ], + "PeakMemoryUsageBytes" : 3458624, + "DurationUs" : 36614000, + "CpuTimeUs" : 6335701 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367239, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 3534734, + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 388, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 33067990, + "TaskId" : 27 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 37052000, + "CpuTimeUs" : 7239488 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367240, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 4779141, + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 194, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 31825848, + "TaskId" : 25 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 37053000, + "CpuTimeUs" : 9698072 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367240, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 4173168, + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 291, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 32432195, + "TaskId" : 26 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 37053000, + "CpuTimeUs" : 8511299 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367499, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 3309667, + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 1940, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 33578586, + "TaskId" : 45 + } + ], + "PeakMemoryUsageBytes" : 3524160, + "DurationUs" : 37311000, + "CpuTimeUs" : 6678337 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367501, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 4251555, + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 1843, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 32640049, + "TaskId" : 44 + } + ], + "PeakMemoryUsageBytes" : 3458624, + "DurationUs" : 37313000, + "CpuTimeUs" : 8704842 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367501, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 5225593, + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 1746, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 31673849, + "TaskId" : 43 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 37313000, + "CpuTimeUs" : 10665241 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367836, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 4740590, + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 1461, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 32703332, + "TaskId" : 40 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 37652000, + "CpuTimeUs" : 9660351 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367836, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3835847, + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 1649, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 33611490, + "TaskId" : 42 + } + ], + "PeakMemoryUsageBytes" : 3458624, + "DurationUs" : 37652000, + "CpuTimeUs" : 7861640 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585367837, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 4304380, + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 1552, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 33142591, + "TaskId" : 41 + } + ], + "PeakMemoryUsageBytes" : 3524160, + "DurationUs" : 37653000, + "CpuTimeUs" : 8864897 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585369318, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 4246120, + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 776, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 34772204, + "TaskId" : 32 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 39137000, + "CpuTimeUs" : 8725503 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585369318, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 3535307, + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 873, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 35526956, + "TaskId" : 33 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 39137000, + "CpuTimeUs" : 7299140 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585369318, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 4963673, + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 679, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 34056269, + "TaskId" : 31 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 39137000, + "CpuTimeUs" : 10056976 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370263, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330171, + "ComputeTimeUs" : 3385940, + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 582, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 36676926, + "TaskId" : 30 + } + ], + "PeakMemoryUsageBytes" : 3458624, + "DurationUs" : 40092000, + "CpuTimeUs" : 6934193 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370263, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330171, + "ComputeTimeUs" : 5206118, + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 485, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 34848601, + "TaskId" : 28 + } + ], + "PeakMemoryUsageBytes" : 3458624, + "DurationUs" : 40092000, + "CpuTimeUs" : 10591998 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585370264, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330171, + "ComputeTimeUs" : 4314417, + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 493, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 35740987, + "TaskId" : 29 + } + ], + "PeakMemoryUsageBytes" : 3458624, + "DurationUs" : 40093000, + "CpuTimeUs" : 8860952 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585371781, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330179, + "ComputeTimeUs" : 3813933, + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 1455, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 37752292, + "TaskId" : 39 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 41602000, + "CpuTimeUs" : 7550370 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585371781, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330179, + "ComputeTimeUs" : 4645986, + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 1261, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 36910995, + "TaskId" : 37 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 41602000, + "CpuTimeUs" : 9234925 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585371781, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330179, + "ComputeTimeUs" : 4225355, + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 1358, + "DstStageId" : 8 + } + ], + "WaitInputTimeUs" : 37336825, + "TaskId" : 38 + } + ], + "PeakMemoryUsageBytes" : 1492544, + "DurationUs" : 41602000, + "CpuTimeUs" : 8395107 + } + ], + "UseLlvm" : "undefined", + "DurationUs" : { + "Count" : 24, + "Sum" : 914539000, + "Max" : 41602000, + "Min" : 35384000 + }, + "Output" : [ + { + "Pop" : { }, + "Name" : "22", + "Push" : { + "WaitTimeUs" : { + "Count" : 24, + "Sum" : 906386566, + "Max" : 41330317, + "Min" : 35089022 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 24, + "Sum" : 226492416, + "Max" : 9437184, + "Min" : 9437184 + }, + "Tasks" : 24, + "PhysicalStageId" : 1, + "StageDurationUs" : 41610000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 24, + "Sum" : 806997095, + "Max" : 37752292, + "Min" : 30032292 + }, + "CpuTimeUs" : { + "Count" : 24, + "Sum" : 102250287, + "Max" : 5415879, + "Min" : 3105727 + } + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "o_custkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 19, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/customer" + ], + "PlanNodeId" : 18, + "Plans" : [ + { + "PlanNodeId" : 17, + "Plans" : [ + { + "PlanNodeId" : 16, + "Plans" : [ + { + "PlanNodeId" : 15, + "Plans" : [ + { + "PlanNodeId" : 14, + "Plans" : [ + { + "PlanNodeId" : 13, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/nation" + ], + "PlanNodeId" : 12, + "Subplan Name" : "CTE TableFullScan_25", + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3760", + "ReadRanges" : [ + "n_nationkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "25", + "Table" : "column/tpch10000/nation", + "ReadColumns" : [ + "n_name", + "n_nationkey", + "n_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 2 + }, + { + "Id" : 3 + }, + { + "Id" : 4 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan", + "Parent Relationship" : "InitPlan", + "Stats" : { + "UseLlvm" : "undefined", + "DurationUs" : { + "Count" : 3, + "Sum" : 1447000, + "Max" : 484000, + "Min" : 480000 + }, + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 477, + "Max" : 477, + "Min" : 477 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 477, + "Max" : 477, + "Min" : 477 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 55, + "Max" : 55, + "Min" : 55 + } + }, + "Name" : "14", + "Push" : { + "Chunks" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + } + } + }, + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 232, + "Max" : 232, + "Min" : 232 + } + }, + "Name" : "2", + "Push" : { + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 261, + "Max" : 261, + "Min" : 261 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 261, + "Max" : 261, + "Min" : 261 + }, + "ActiveMessageMs" : { + "Count" : 1, + "Max" : 262, + "Min" : 261 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 55, + "Max" : 55, + "Min" : 55 + }, + "ActiveTimeUs" : { + "Count" : 1, + "Sum" : 1000, + "Max" : 1000, + "Min" : 1000 + }, + "WaitTimeUs" : { + "Count" : 3, + "Sum" : 458161, + "Max" : 206636, + "Min" : 123993 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 261, + "Min" : 55 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 3, + "Sum" : 3145728, + "Max" : 1048576, + "Min" : 1048576 + }, + "Tasks" : 3, + "OutputRows" : { + "Count" : 1, + "Sum" : 50, + "Max" : 50, + "Min" : 50 + }, + "PhysicalStageId" : 2, + "StageDurationUs" : 484000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 3, + "Sum" : 458379, + "Max" : 206670, + "Min" : 124085 + }, + "CpuTimeUs" : { + "Count" : 3, + "Sum" : 868, + "Max" : 331, + "Min" : 217 + }, + "OutputBytes" : { + "Count" : 1, + "Sum" : 287, + "Max" : 287, + "Min" : 287 + } + } + } + ], + "Node Type" : "Map", + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 11, + "Plans" : [ + { + "PlanNodeId" : 10, + "Plans" : [ + { + "PlanNodeId" : 9, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/region" + ], + "PlanNodeId" : 8, + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "E-Rows" : "5", + "Predicate" : "r_name == AFRICA", + "Name" : "Filter", + "E-Size" : "1280", + "E-Cost" : "0" + }, + { + "Scan" : "Parallel", + "E-Size" : "1280", + "ReadRanges" : [ + "r_regionkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "5", + "Table" : "column/tpch10000/region", + "ReadColumns" : [ + "r_name", + "r_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "AFRICA" + }, + "Column" : { + "Id" : 4 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 2 + }, + { + "Id" : 4 + } + ] + }, + "Column" : { + "Id" : 5 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 5 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "Filter-TableFullScan", + "Stats" : { + "UseLlvm" : "undefined", + "DurationUs" : { + "Count" : 3, + "Sum" : 7560000, + "Max" : 2520000, + "Min" : 2520000 + }, + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 9, + "Max" : 9, + "Min" : 9 + } + }, + "Name" : "10", + "Push" : { + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "Rows" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 228, + "Max" : 228, + "Min" : 228 + }, + "WaitTimeUs" : { + "Count" : 3, + "Sum" : 6879340, + "Max" : 2296302, + "Min" : 2290968 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 2519, + "Min" : 228 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 3, + "Sum" : 3145728, + "Max" : 1048576, + "Min" : 1048576 + }, + "Tasks" : 3, + "OutputRows" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "PhysicalStageId" : 3, + "StageDurationUs" : 2520000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 3, + "Sum" : 7553947, + "Max" : 2518074, + "Min" : 2517849 + }, + "CpuTimeUs" : { + "Count" : 3, + "Sum" : 349, + "Max" : 132, + "Min" : 100 + }, + "OutputBytes" : { + "Count" : 1, + "Sum" : 9, + "Max" : 9, + "Min" : 9 + } + } + } + ], + "Node Type" : "UnionAll", + "PlanNodeType" : "Connection" + } + ], + "Node Type" : "Stage", + "Stats" : { + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 3, + "Max" : 3, + "Min" : 3 + }, + "Rows" : { + "Count" : 1, + "Sum" : 3, + "Max" : 3, + "Min" : 3 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 27, + "Max" : 27, + "Min" : 27 + } + }, + "Name" : "14", + "Push" : { + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "Rows" : { + "Count" : 1, + "Sum" : 3, + "Max" : 3, + "Min" : 3 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 3, + "Max" : 3, + "Min" : 3 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 447, + "Max" : 447, + "Min" : 447 + }, + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 2135300, + "Max" : 2135300, + "Min" : 2135300 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 3, + "Max" : 3, + "Min" : 3 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 2519, + "Min" : 447 + } + } + } + ], + "DurationUs" : { + "Count" : 1, + "Sum" : 7000, + "Max" : 7000, + "Min" : 7000 + }, + "MaxMemoryUsage" : { + "Count" : 1, + "Sum" : 1048576, + "Max" : 1048576, + "Min" : 1048576 + }, + "InputBytes" : { + "Count" : 1, + "Sum" : 9, + "Max" : 9, + "Min" : 9 + }, + "Tasks" : 1, + "OutputRows" : { + "Count" : 1, + "Sum" : 3, + "Max" : 3, + "Min" : 3 + }, + "InputRows" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "PhysicalStageId" : 4, + "StageDurationUs" : 7000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 1, + "Sum" : 2507123, + "Max" : 2507123, + "Min" : 2507123 + }, + "OutputBytes" : { + "Count" : 1, + "Sum" : 27, + "Max" : 27, + "Min" : 27 + }, + "CpuTimeUs" : { + "Count" : 1, + "Sum" : 192, + "Max" : 192, + "Min" : 192 + }, + "Input" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 9, + "Max" : 9, + "Min" : 9 + } + }, + "Name" : "8", + "Push" : { + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "Rows" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2519, + "Max" : 2519, + "Min" : 2519 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 9, + "Max" : 9, + "Min" : 9 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 447, + "Max" : 447, + "Min" : 447 + }, + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 2507128, + "Max" : 2507128, + "Min" : 2507128 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 2519, + "Min" : 447 + } + } + } + ] + } + } + ], + "Node Type" : "Broadcast", + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 13 + }, + { + "ExternalPlanNodeId" : 11 + } + ], + "E-Rows" : "25", + "Condition" : "n.n_regionkey = r.r_regionkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "3760", + "E-Cost" : "88.5" + } + ], + "Node Type" : "InnerJoin (MapJoin)", + "Stats" : { + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 5, + "Max" : 5, + "Min" : 5 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 20, + "Max" : 20, + "Min" : 20 + } + }, + "Name" : "16", + "Push" : { + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "Rows" : { + "Count" : 1, + "Sum" : 5, + "Max" : 5, + "Min" : 5 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 5, + "Max" : 5, + "Min" : 5 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 478, + "Max" : 478, + "Min" : 478 + }, + "WaitTimeUs" : { + "Count" : 3, + "Sum" : 6223076, + "Max" : 2075013, + "Min" : 2073844 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 2523, + "Min" : 478 + } + } + } + ], + "DurationUs" : { + "Count" : 3, + "Sum" : 21000, + "Max" : 9000, + "Min" : 5000 + }, + "MaxMemoryUsage" : { + "Count" : 3, + "Sum" : 94371840, + "Max" : 31457280, + "Min" : 31457280 + }, + "InputBytes" : { + "Count" : 3, + "Sum" : 82, + "Max" : 64, + "Min" : 9 + }, + "Tasks" : 3, + "OutputRows" : { + "Count" : 1, + "Sum" : 5, + "Max" : 5, + "Min" : 5 + }, + "InputRows" : { + "Count" : 3, + "Sum" : 28, + "Max" : 26, + "Min" : 1 + }, + "PhysicalStageId" : 5, + "StageDurationUs" : 9000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 3, + "Sum" : 7520354, + "Max" : 2508070, + "Min" : 2505107 + }, + "OutputBytes" : { + "Count" : 1, + "Sum" : 20, + "Max" : 20, + "Min" : 20 + }, + "CpuTimeUs" : { + "Count" : 3, + "Sum" : 636, + "Max" : 336, + "Min" : 140 + }, + "Input" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 3, + "Sum" : 3, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 3, + "Sum" : 3, + "Max" : 1, + "Min" : 1 + }, + "LastMessageMs" : { + "Count" : 3, + "Sum" : 7563, + "Max" : 2523, + "Min" : 2520 + }, + "ActiveMessageMs" : { + "Count" : 3, + "Max" : 2523, + "Min" : 2520 + }, + "FirstMessageMs" : { + "Count" : 3, + "Sum" : 7563, + "Max" : 2523, + "Min" : 2520 + }, + "Bytes" : { + "Count" : 3, + "Sum" : 27, + "Max" : 9, + "Min" : 9 + } + }, + "Name" : "10", + "Push" : { + "Rows" : { + "Count" : 3, + "Sum" : 3, + "Max" : 1, + "Min" : 1 + }, + "LastMessageMs" : { + "Count" : 3, + "Sum" : 7563, + "Max" : 2523, + "Min" : 2520 + }, + "Chunks" : { + "Count" : 3, + "Sum" : 3, + "Max" : 1, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 3, + "Sum" : 7563, + "Max" : 2523, + "Min" : 2520 + }, + "FirstMessageMs" : { + "Count" : 3, + "Sum" : 7563, + "Max" : 2523, + "Min" : 2520 + }, + "ActiveMessageMs" : { + "Count" : 3, + "Max" : 2523, + "Min" : 2520 + }, + "Bytes" : { + "Count" : 3, + "Sum" : 27, + "Max" : 9, + "Min" : 9 + }, + "PauseMessageMs" : { + "Count" : 3, + "Sum" : 1376, + "Max" : 478, + "Min" : 449 + }, + "WaitTimeUs" : { + "Count" : 3, + "Sum" : 7520487, + "Max" : 2508066, + "Min" : 2505213 + }, + "WaitPeriods" : { + "Count" : 3, + "Sum" : 3, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 3, + "Max" : 2523, + "Min" : 449 + } + } + }, + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 55, + "Max" : 55, + "Min" : 55 + } + }, + "Name" : "12", + "Push" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 55, + "Max" : 55, + "Min" : 55 + } + } + } + ] + } + } + ], + "Node Type" : "UnionAll", + "PlanNodeType" : "Connection" + } + ], + "Node Type" : "Stage", + "Stats" : { + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 128, + "Max" : 128, + "Min" : 128 + }, + "Rows" : { + "Count" : 1, + "Sum" : 640, + "Max" : 640, + "Min" : 640 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2525, + "Max" : 2525, + "Min" : 2525 + }, + "ActiveMessageMs" : { + "Count" : 1, + "Max" : 2525, + "Min" : 2524 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2524, + "Max" : 2524, + "Min" : 2524 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 2560, + "Max" : 2560, + "Min" : 2560 + }, + "ActiveTimeUs" : { + "Count" : 1, + "Sum" : 1000, + "Max" : 1000, + "Min" : 1000 + } + }, + "Name" : "18", + "Push" : { + "Rows" : { + "Count" : 1, + "Sum" : 640, + "Max" : 640, + "Min" : 640 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2524, + "Max" : 2524, + "Min" : 2524 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 640, + "Max" : 640, + "Min" : 640 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 2524, + "Max" : 2524, + "Min" : 2524 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "ActiveMessageMs" : { + "Count" : 1, + "Max" : 2524, + "Min" : 2523 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 491, + "Max" : 491, + "Min" : 491 + }, + "ActiveTimeUs" : { + "Count" : 1, + "Sum" : 1000, + "Max" : 1000, + "Min" : 1000 + }, + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 2071255, + "Max" : 2071255, + "Min" : 2071255 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 128, + "Max" : 128, + "Min" : 128 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 2524, + "Min" : 491 + } + } + } + ], + "DurationUs" : { + "Count" : 1, + "Sum" : 383000, + "Max" : 383000, + "Min" : 383000 + }, + "MaxMemoryUsage" : { + "Count" : 1, + "Sum" : 1048576, + "Max" : 1048576, + "Min" : 1048576 + }, + "InputBytes" : { + "Count" : 1, + "Sum" : 20, + "Max" : 20, + "Min" : 20 + }, + "Tasks" : 1, + "OutputRows" : { + "Count" : 1, + "Sum" : 640, + "Max" : 640, + "Min" : 640 + }, + "InputRows" : { + "Count" : 1, + "Sum" : 5, + "Max" : 5, + "Min" : 5 + }, + "PhysicalStageId" : 6, + "StageDurationUs" : 383000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 1, + "Sum" : 2506788, + "Max" : 2506788, + "Min" : 2506788 + }, + "OutputBytes" : { + "Count" : 1, + "Sum" : 2560, + "Max" : 2560, + "Min" : 2560 + }, + "CpuTimeUs" : { + "Count" : 1, + "Sum" : 964, + "Max" : 964, + "Min" : 964 + }, + "Input" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 5, + "Max" : 5, + "Min" : 5 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 20, + "Max" : 20, + "Min" : 20 + } + }, + "Name" : "14", + "Push" : { + "LastMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "Rows" : { + "Count" : 1, + "Sum" : 5, + "Max" : 5, + "Min" : 5 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 2523, + "Max" : 2523, + "Min" : 2523 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 20, + "Max" : 20, + "Min" : 20 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 491, + "Max" : 491, + "Min" : 491 + }, + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 2506774, + "Max" : 2506774, + "Min" : 2506774 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 2523, + "Min" : 491 + } + } + } + ] + } + } + ], + "Node Type" : "Broadcast", + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + }, + { + "ExternalPlanNodeId" : 17 + } + ], + "E-Rows" : "1500000000", + "Condition" : "c.c_nationkey = n.n_nationkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "1.573541826e+11", + "E-Cost" : "4500000156" + }, + { + "Scan" : "Parallel", + "E-Size" : "1.573541826e+11", + "ReadRanges" : [ + "c_custkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "1500000000", + "Table" : "column/tpch10000/customer", + "ReadColumns" : [ + "c_custkey", + "c_nationkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 4 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "InnerJoin (MapJoin)-TableFullScan", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372776, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 1951062, + "StartTimeMs" : 1726585332712, + "InputRows" : 5, + "ComputeTimeUs" : 8272829, + "InputChannels" : [ + { + "WaitTimeUs" : 2216519, + "ChannelId" : 123, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11933, + "Rows" : 1951062, + "DstStageId" : 8, + "Bytes" : 17410587 + } + ], + "WaitInputTimeUs" : 4896803, + "TaskId" : 170, + "OutputBytes" : 17410587 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40064000, + "CpuTimeUs" : 8393982 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372776, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 1674981, + "StartTimeMs" : 1726585332702, + "InputRows" : 5, + "ComputeTimeUs" : 7279169, + "InputChannels" : [ + { + "WaitTimeUs" : 2193110, + "ChannelId" : 124, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 12028, + "Rows" : 1674981, + "DstStageId" : 8, + "Bytes" : 14858835 + } + ], + "WaitInputTimeUs" : 5771785, + "TaskId" : 171, + "OutputBytes" : 14858835 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40074000, + "CpuTimeUs" : 7405213 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372854, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2656263, + "StartTimeMs" : 1726585332719, + "InputRows" : 5, + "ComputeTimeUs" : 10700013, + "InputChannels" : [ + { + "WaitTimeUs" : 2325224, + "ChannelId" : 112, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 10965, + "Rows" : 2656263, + "DstStageId" : 8, + "Bytes" : 23618546 + } + ], + "WaitInputTimeUs" : 3707639, + "TaskId" : 159, + "OutputBytes" : 23618546 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40135000, + "CpuTimeUs" : 10821745 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372855, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 1999274, + "StartTimeMs" : 1726585332699, + "InputRows" : 5, + "ComputeTimeUs" : 8791691, + "InputChannels" : [ + { + "WaitTimeUs" : 2239479, + "ChannelId" : 120, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11737, + "Rows" : 1999274, + "DstStageId" : 8, + "Bytes" : 17822237 + } + ], + "WaitInputTimeUs" : 4282761, + "TaskId" : 167, + "OutputBytes" : 17822237 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40156000, + "CpuTimeUs" : 8910871 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372855, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2609789, + "StartTimeMs" : 1726585332714, + "InputRows" : 5, + "ComputeTimeUs" : 11420385, + "InputChannels" : [ + { + "WaitTimeUs" : 2305695, + "ChannelId" : 114, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11155, + "Rows" : 2609789, + "DstStageId" : 8, + "Bytes" : 23263119 + } + ], + "WaitInputTimeUs" : 3606875, + "TaskId" : 161, + "OutputBytes" : 23263119 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40141000, + "CpuTimeUs" : 11542876 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372860, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2420722, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 13825801, + "InputChannels" : [ + { + "WaitTimeUs" : 2525223, + "ChannelId" : 38, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4462, + "Rows" : 2420722, + "DstStageId" : 8, + "Bytes" : 21658611 + } + ], + "WaitInputTimeUs" : 4696568, + "TaskId" : 85, + "OutputBytes" : 21658611 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40163000, + "CpuTimeUs" : 13974367 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372889, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 3023793, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 15036623, + "InputChannels" : [ + { + "WaitTimeUs" : 2525713, + "ChannelId" : 35, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4268, + "Rows" : 3023793, + "DstStageId" : 8, + "Bytes" : 26962241 + } + ], + "WaitInputTimeUs" : 4012969, + "TaskId" : 82, + "OutputBytes" : 26962241 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40191000, + "CpuTimeUs" : 15176766 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372889, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2589564, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 14556131, + "InputChannels" : [ + { + "WaitTimeUs" : 2533718, + "ChannelId" : 33, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4074, + "Rows" : 2589564, + "DstStageId" : 8, + "Bytes" : 23099953 + } + ], + "WaitInputTimeUs" : 4154919, + "TaskId" : 80, + "OutputBytes" : 23099953 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40192000, + "CpuTimeUs" : 14701169 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372889, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 1164758, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 4655140, + "InputChannels" : [ + { + "WaitTimeUs" : 2524799, + "ChannelId" : 44, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 5044, + "Rows" : 1164758, + "DstStageId" : 8, + "Bytes" : 10355415 + } + ], + "WaitInputTimeUs" : 13640904, + "TaskId" : 91, + "OutputBytes" : 10355415 + } + ], + "PeakMemoryUsageBytes" : 2031616, + "DurationUs" : 40191000, + "CpuTimeUs" : 4800867 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372893, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2427219, + "StartTimeMs" : 1726585332738, + "InputRows" : 5, + "ComputeTimeUs" : 10376589, + "InputChannels" : [ + { + "WaitTimeUs" : 2308144, + "ChannelId" : 117, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11446, + "Rows" : 2427219, + "DstStageId" : 8, + "Bytes" : 21631950 + } + ], + "WaitInputTimeUs" : 3543084, + "TaskId" : 164, + "OutputBytes" : 21631950 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40155000, + "CpuTimeUs" : 10496159 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372927, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2537161, + "StartTimeMs" : 1726585332704, + "InputRows" : 5, + "ComputeTimeUs" : 11636286, + "InputChannels" : [ + { + "WaitTimeUs" : 2311098, + "ChannelId" : 111, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 10961, + "Rows" : 2537161, + "DstStageId" : 8, + "Bytes" : 22550675 + } + ], + "WaitInputTimeUs" : 3438186, + "TaskId" : 158, + "OutputBytes" : 22550675 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40223000, + "CpuTimeUs" : 11757170 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372936, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2771029, + "StartTimeMs" : 1726585332700, + "InputRows" : 5, + "ComputeTimeUs" : 11311777, + "InputChannels" : [ + { + "WaitTimeUs" : 2307607, + "ChannelId" : 109, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 10767, + "Rows" : 2771029, + "DstStageId" : 8, + "Bytes" : 24561494 + } + ], + "WaitInputTimeUs" : 3852259, + "TaskId" : 156, + "OutputBytes" : 24561494 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40236000, + "CpuTimeUs" : 11437287 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372960, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 3057985, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 15225316, + "InputChannels" : [ + { + "WaitTimeUs" : 2526187, + "ChannelId" : 30, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 3783, + "Rows" : 3057985, + "DstStageId" : 8, + "Bytes" : 27066470 + } + ], + "WaitInputTimeUs" : 4014509, + "TaskId" : 77, + "OutputBytes" : 27066470 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40263000, + "CpuTimeUs" : 15375329 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372960, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 1957640, + "StartTimeMs" : 1726585332773, + "InputRows" : 5, + "ComputeTimeUs" : 9684436, + "InputChannels" : [ + { + "WaitTimeUs" : 2599343, + "ChannelId" : 41, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4753, + "Rows" : 1957640, + "DstStageId" : 8, + "Bytes" : 17324442 + } + ], + "WaitInputTimeUs" : 8821292, + "TaskId" : 88, + "OutputBytes" : 17324442 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40187000, + "CpuTimeUs" : 9850218 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372960, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2082501, + "StartTimeMs" : 1726585332709, + "InputRows" : 5, + "ComputeTimeUs" : 12046305, + "InputChannels" : [ + { + "WaitTimeUs" : 2535755, + "ChannelId" : 39, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4559, + "Rows" : 2082501, + "DstStageId" : 8, + "Bytes" : 18481768 + } + ], + "WaitInputTimeUs" : 7049595, + "TaskId" : 86, + "OutputBytes" : 18481768 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40251000, + "CpuTimeUs" : 12197576 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585372994, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2738880, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 15412028, + "InputChannels" : [ + { + "WaitTimeUs" : 2526114, + "ChannelId" : 31, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 3880, + "Rows" : 2738880, + "DstStageId" : 8, + "Bytes" : 24439354 + } + ], + "WaitInputTimeUs" : 3825765, + "TaskId" : 78, + "OutputBytes" : 24439354 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40296000, + "CpuTimeUs" : 15563490 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373027, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2061896, + "StartTimeMs" : 1726585332877, + "InputRows" : 5, + "ComputeTimeUs" : 9855021, + "InputChannels" : [ + { + "WaitTimeUs" : 2447028, + "ChannelId" : 118, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11543, + "Rows" : 2061896, + "DstStageId" : 8, + "Bytes" : 18472532 + } + ], + "WaitInputTimeUs" : 3566450, + "TaskId" : 165, + "OutputBytes" : 18472532 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40150000, + "CpuTimeUs" : 9977630 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373096, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2453700, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 13966883, + "InputChannels" : [ + { + "WaitTimeUs" : 2525321, + "ChannelId" : 37, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4365, + "Rows" : 2453700, + "DstStageId" : 8, + "Bytes" : 21991692 + } + ], + "WaitInputTimeUs" : 4326358, + "TaskId" : 84, + "OutputBytes" : 21991692 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40399000, + "CpuTimeUs" : 14118053 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373096, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2884007, + "StartTimeMs" : 1726585332713, + "InputRows" : 5, + "ComputeTimeUs" : 11049668, + "InputChannels" : [ + { + "WaitTimeUs" : 2300445, + "ChannelId" : 115, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11252, + "Rows" : 2884007, + "DstStageId" : 8, + "Bytes" : 25654474 + } + ], + "WaitInputTimeUs" : 3661677, + "TaskId" : 162, + "OutputBytes" : 25654474 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40383000, + "CpuTimeUs" : 11172045 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373097, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 1696015, + "StartTimeMs" : 1726585332700, + "InputRows" : 5, + "ComputeTimeUs" : 8373977, + "InputChannels" : [ + { + "WaitTimeUs" : 2239439, + "ChannelId" : 122, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11931, + "Rows" : 1696015, + "DstStageId" : 8, + "Bytes" : 15085836 + } + ], + "WaitInputTimeUs" : 4854991, + "TaskId" : 169, + "OutputBytes" : 15085836 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40397000, + "CpuTimeUs" : 8503008 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373096, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2675826, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 14606889, + "InputChannels" : [ + { + "WaitTimeUs" : 2531143, + "ChannelId" : 29, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 3686, + "Rows" : 2675826, + "DstStageId" : 8, + "Bytes" : 23725852 + } + ], + "WaitInputTimeUs" : 4175791, + "TaskId" : 76, + "OutputBytes" : 23725852 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40399000, + "CpuTimeUs" : 14758880 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373097, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2753323, + "StartTimeMs" : 1726585332898, + "InputRows" : 5, + "ComputeTimeUs" : 11054192, + "InputChannels" : [ + { + "WaitTimeUs" : 2485162, + "ChannelId" : 116, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11349, + "Rows" : 2753323, + "DstStageId" : 8, + "Bytes" : 24621339 + } + ], + "WaitInputTimeUs" : 3802028, + "TaskId" : 163, + "OutputBytes" : 24621339 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40199000, + "CpuTimeUs" : 11183067 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373097, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2190267, + "StartTimeMs" : 1726585332719, + "InputRows" : 5, + "ComputeTimeUs" : 12619184, + "InputChannels" : [ + { + "WaitTimeUs" : 2546617, + "ChannelId" : 40, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4656, + "Rows" : 2190267, + "DstStageId" : 8, + "Bytes" : 19588889 + } + ], + "WaitInputTimeUs" : 5793256, + "TaskId" : 87, + "OutputBytes" : 19588889 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40378000, + "CpuTimeUs" : 12768753 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373097, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2339233, + "StartTimeMs" : 1726585332886, + "InputRows" : 5, + "ComputeTimeUs" : 10901687, + "InputChannels" : [ + { + "WaitTimeUs" : 2492168, + "ChannelId" : 113, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11058, + "Rows" : 2339233, + "DstStageId" : 8, + "Bytes" : 20933265 + } + ], + "WaitInputTimeUs" : 3796784, + "TaskId" : 160, + "OutputBytes" : 20933265 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40211000, + "CpuTimeUs" : 11020502 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373097, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2913306, + "StartTimeMs" : 1726585332699, + "InputRows" : 5, + "ComputeTimeUs" : 11814830, + "InputChannels" : [ + { + "WaitTimeUs" : 2307039, + "ChannelId" : 110, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 10864, + "Rows" : 2913306, + "DstStageId" : 8, + "Bytes" : 26028942 + } + ], + "WaitInputTimeUs" : 3483860, + "TaskId" : 157, + "OutputBytes" : 26028942 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40398000, + "CpuTimeUs" : 11938399 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373098, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2103822, + "StartTimeMs" : 1726585332701, + "InputRows" : 5, + "ComputeTimeUs" : 9036929, + "InputChannels" : [ + { + "WaitTimeUs" : 2240894, + "ChannelId" : 121, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11834, + "Rows" : 2103822, + "DstStageId" : 8, + "Bytes" : 18875824 + } + ], + "WaitInputTimeUs" : 4113443, + "TaskId" : 168, + "OutputBytes" : 18875824 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40397000, + "CpuTimeUs" : 9173773 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373098, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "OutputRows" : 2117161, + "StartTimeMs" : 1726585332705, + "InputRows" : 5, + "ComputeTimeUs" : 9754186, + "InputChannels" : [ + { + "WaitTimeUs" : 2244989, + "ChannelId" : 119, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 11640, + "Rows" : 2117161, + "DstStageId" : 8, + "Bytes" : 18833973 + } + ], + "WaitInputTimeUs" : 3620945, + "TaskId" : 166, + "OutputBytes" : 18833973 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40393000, + "CpuTimeUs" : 9878654 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373137, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2477008, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 10719236, + "InputChannels" : [ + { + "WaitTimeUs" : 2396228, + "ChannelId" : 67, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7081, + "Rows" : 2477008, + "DstStageId" : 8, + "Bytes" : 22116598 + } + ], + "WaitInputTimeUs" : 3688972, + "TaskId" : 114, + "OutputBytes" : 22116598 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40439000, + "CpuTimeUs" : 10856876 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373137, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2353173, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 11370714, + "InputChannels" : [ + { + "WaitTimeUs" : 2382537, + "ChannelId" : 64, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 6790, + "Rows" : 2353173, + "DstStageId" : 8, + "Bytes" : 20917935 + } + ], + "WaitInputTimeUs" : 3270289, + "TaskId" : 111, + "OutputBytes" : 20917935 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40439000, + "CpuTimeUs" : 11510729 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373137, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2457004, + "StartTimeMs" : 1726585332763, + "InputRows" : 5, + "ComputeTimeUs" : 9775919, + "InputChannels" : [ + { + "WaitTimeUs" : 2444123, + "ChannelId" : 69, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7181, + "Rows" : 2457004, + "DstStageId" : 8, + "Bytes" : 21885354 + } + ], + "WaitInputTimeUs" : 3609681, + "TaskId" : 116, + "OutputBytes" : 21885354 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40374000, + "CpuTimeUs" : 9916904 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373137, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 1985512, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 8412953, + "InputChannels" : [ + { + "WaitTimeUs" : 2459377, + "ChannelId" : 71, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7372, + "Rows" : 1985512, + "DstStageId" : 8, + "Bytes" : 17680758 + } + ], + "WaitInputTimeUs" : 4512632, + "TaskId" : 118, + "OutputBytes" : 17680758 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40439000, + "CpuTimeUs" : 8552203 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373138, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 1866792, + "StartTimeMs" : 1726585332762, + "InputRows" : 5, + "ComputeTimeUs" : 7165748, + "InputChannels" : [ + { + "WaitTimeUs" : 2440615, + "ChannelId" : 75, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7760, + "Rows" : 1866792, + "DstStageId" : 8, + "Bytes" : 16703182 + } + ], + "WaitInputTimeUs" : 5181246, + "TaskId" : 122, + "OutputBytes" : 16703182 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40376000, + "CpuTimeUs" : 7304993 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373138, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2565324, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 11207567, + "InputChannels" : [ + { + "WaitTimeUs" : 2399818, + "ChannelId" : 65, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 6887, + "Rows" : 2565324, + "DstStageId" : 8, + "Bytes" : 22893914 + } + ], + "WaitInputTimeUs" : 3519748, + "TaskId" : 112, + "OutputBytes" : 22893914 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40441000, + "CpuTimeUs" : 11351946 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373138, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2740122, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 11054524, + "InputChannels" : [ + { + "WaitTimeUs" : 2390097, + "ChannelId" : 62, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 6596, + "Rows" : 2740122, + "DstStageId" : 8, + "Bytes" : 24500125 + } + ], + "WaitInputTimeUs" : 3725487, + "TaskId" : 109, + "OutputBytes" : 24500125 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40441000, + "CpuTimeUs" : 11189558 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373138, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 1756705, + "StartTimeMs" : 1726585332892, + "InputRows" : 5, + "ComputeTimeUs" : 6714933, + "InputChannels" : [ + { + "WaitTimeUs" : 2573647, + "ChannelId" : 76, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7857, + "Rows" : 1756705, + "DstStageId" : 8, + "Bytes" : 15557540 + } + ], + "WaitInputTimeUs" : 5667607, + "TaskId" : 123, + "OutputBytes" : 15557540 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40246000, + "CpuTimeUs" : 6855512 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373138, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2590595, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 11265150, + "InputChannels" : [ + { + "WaitTimeUs" : 2403777, + "ChannelId" : 66, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 6984, + "Rows" : 2590595, + "DstStageId" : 8, + "Bytes" : 23155023 + } + ], + "WaitInputTimeUs" : 3169439, + "TaskId" : 113, + "OutputBytes" : 23155023 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40440000, + "CpuTimeUs" : 11403936 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373138, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2373373, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 9870805, + "InputChannels" : [ + { + "WaitTimeUs" : 2386375, + "ChannelId" : 73, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7566, + "Rows" : 2373373, + "DstStageId" : 8, + "Bytes" : 21205181 + } + ], + "WaitInputTimeUs" : 4129369, + "TaskId" : 120, + "OutputBytes" : 21205181 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40440000, + "CpuTimeUs" : 10009503 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373214, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 1953770, + "StartTimeMs" : 1726585332788, + "InputRows" : 5, + "ComputeTimeUs" : 12874494, + "InputChannels" : [ + { + "WaitTimeUs" : 2587048, + "ChannelId" : 89, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 9021, + "Rows" : 1953770, + "DstStageId" : 8, + "Bytes" : 17500344 + } + ], + "WaitInputTimeUs" : 11384512, + "TaskId" : 136, + "OutputBytes" : 17500344 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40426000, + "CpuTimeUs" : 13036359 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373214, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2522147, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 15938594, + "InputChannels" : [ + { + "WaitTimeUs" : 2457786, + "ChannelId" : 81, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8245, + "Rows" : 2522147, + "DstStageId" : 8, + "Bytes" : 22367866 + } + ], + "WaitInputTimeUs" : 8705264, + "TaskId" : 128, + "OutputBytes" : 22367866 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40518000, + "CpuTimeUs" : 16089321 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373214, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2526111, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 14916784, + "InputChannels" : [ + { + "WaitTimeUs" : 2565786, + "ChannelId" : 82, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8342, + "Rows" : 2526111, + "DstStageId" : 8, + "Bytes" : 22554806 + } + ], + "WaitInputTimeUs" : 9861708, + "TaskId" : 129, + "OutputBytes" : 22554806 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40518000, + "CpuTimeUs" : 15059619 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373214, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2496809, + "StartTimeMs" : 1726585332699, + "InputRows" : 5, + "ComputeTimeUs" : 9856530, + "InputChannels" : [ + { + "WaitTimeUs" : 2303256, + "ChannelId" : 134, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12901, + "Rows" : 2496809, + "DstStageId" : 8, + "Bytes" : 22223793 + } + ], + "WaitInputTimeUs" : 4277082, + "TaskId" : 181, + "OutputBytes" : 22223793 + } + ], + "PeakMemoryUsageBytes" : 2359296, + "DurationUs" : 40515000, + "CpuTimeUs" : 9990775 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373246, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 3633640, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 17468963, + "InputChannels" : [ + { + "WaitTimeUs" : 2496309, + "ChannelId" : 77, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 7954, + "Rows" : 3633640, + "DstStageId" : 8, + "Bytes" : 32529129 + } + ], + "WaitInputTimeUs" : 6777010, + "TaskId" : 124, + "OutputBytes" : 32529129 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40549000, + "CpuTimeUs" : 17614767 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373246, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 1144649, + "StartTimeMs" : 1726585332703, + "InputRows" : 5, + "ComputeTimeUs" : 7860705, + "InputChannels" : [ + { + "WaitTimeUs" : 2439049, + "ChannelId" : 92, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 9215, + "Rows" : 1144649, + "DstStageId" : 8, + "Bytes" : 10080197 + } + ], + "WaitInputTimeUs" : 16573273, + "TaskId" : 139, + "OutputBytes" : 10080197 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40543000, + "CpuTimeUs" : 8025131 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373246, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2071481, + "StartTimeMs" : 1726585332759, + "InputRows" : 5, + "ComputeTimeUs" : 12656745, + "InputChannels" : [ + { + "WaitTimeUs" : 2558288, + "ChannelId" : 88, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8924, + "Rows" : 2071481, + "DstStageId" : 8, + "Bytes" : 18479476 + } + ], + "WaitInputTimeUs" : 11960366, + "TaskId" : 135, + "OutputBytes" : 18479476 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40487000, + "CpuTimeUs" : 12802886 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373248, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 1174539, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 6604694, + "InputChannels" : [ + { + "WaitTimeUs" : 2525129, + "ChannelId" : 43, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4947, + "Rows" : 1174539, + "DstStageId" : 8, + "Bytes" : 10526466 + } + ], + "WaitInputTimeUs" : 11688660, + "TaskId" : 90, + "OutputBytes" : 10526466 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40550000, + "CpuTimeUs" : 6753158 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373248, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2695326, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 14952784, + "InputChannels" : [ + { + "WaitTimeUs" : 2535877, + "ChannelId" : 36, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4277, + "Rows" : 2695326, + "DstStageId" : 8, + "Bytes" : 24198749 + } + ], + "WaitInputTimeUs" : 4117919, + "TaskId" : 83, + "OutputBytes" : 24198749 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40551000, + "CpuTimeUs" : 15105361 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373248, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2790758, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 15022015, + "InputChannels" : [ + { + "WaitTimeUs" : 2526010, + "ChannelId" : 34, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4171, + "Rows" : 2790758, + "DstStageId" : 8, + "Bytes" : 24754872 + } + ], + "WaitInputTimeUs" : 4037596, + "TaskId" : 81, + "OutputBytes" : 24754872 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40551000, + "CpuTimeUs" : 15162158 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373248, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 2633795, + "StartTimeMs" : 1726585332714, + "InputRows" : 5, + "ComputeTimeUs" : 14621877, + "InputChannels" : [ + { + "WaitTimeUs" : 2541942, + "ChannelId" : 32, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 3977, + "Rows" : 2633795, + "DstStageId" : 8, + "Bytes" : 23537782 + } + ], + "WaitInputTimeUs" : 3780281, + "TaskId" : 79, + "OutputBytes" : 23537782 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40534000, + "CpuTimeUs" : 14769239 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373267, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2580148, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 10488291, + "InputChannels" : [ + { + "WaitTimeUs" : 2303685, + "ChannelId" : 132, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12804, + "Rows" : 2580148, + "DstStageId" : 8, + "Bytes" : 23063197 + } + ], + "WaitInputTimeUs" : 3581381, + "TaskId" : 179, + "OutputBytes" : 23063197 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40570000, + "CpuTimeUs" : 10616444 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373267, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2040660, + "StartTimeMs" : 1726585332705, + "InputRows" : 5, + "ComputeTimeUs" : 8135720, + "InputChannels" : [ + { + "WaitTimeUs" : 2308801, + "ChannelId" : 135, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12998, + "Rows" : 2040660, + "DstStageId" : 8, + "Bytes" : 18082097 + } + ], + "WaitInputTimeUs" : 5208208, + "TaskId" : 182, + "OutputBytes" : 18082097 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40562000, + "CpuTimeUs" : 8275716 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373328, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2914762, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 16228688, + "InputChannels" : [ + { + "WaitTimeUs" : 2466984, + "ChannelId" : 80, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8149, + "Rows" : 2914762, + "DstStageId" : 8, + "Bytes" : 26026132 + } + ], + "WaitInputTimeUs" : 8617772, + "TaskId" : 127, + "OutputBytes" : 26026132 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40631000, + "CpuTimeUs" : 16373322 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373328, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 1998679, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 12493837, + "InputChannels" : [ + { + "WaitTimeUs" : 2497958, + "ChannelId" : 87, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8827, + "Rows" : 1998679, + "DstStageId" : 8, + "Bytes" : 17723861 + } + ], + "WaitInputTimeUs" : 11771261, + "TaskId" : 134, + "OutputBytes" : 17723861 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40630000, + "CpuTimeUs" : 12652478 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373328, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2169261, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 13334511, + "InputChannels" : [ + { + "WaitTimeUs" : 2498710, + "ChannelId" : 86, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8730, + "Rows" : 2169261, + "DstStageId" : 8, + "Bytes" : 19223091 + } + ], + "WaitInputTimeUs" : 11159917, + "TaskId" : 133, + "OutputBytes" : 19223091 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40631000, + "CpuTimeUs" : 13492903 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373328, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 1541995, + "StartTimeMs" : 1726585332803, + "InputRows" : 5, + "ComputeTimeUs" : 10091654, + "InputChannels" : [ + { + "WaitTimeUs" : 2573201, + "ChannelId" : 91, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 9118, + "Rows" : 1541995, + "DstStageId" : 8, + "Bytes" : 13764176 + } + ], + "WaitInputTimeUs" : 14759021, + "TaskId" : 138, + "OutputBytes" : 13764176 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40525000, + "CpuTimeUs" : 10246333 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373329, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2855921, + "StartTimeMs" : 1726585332702, + "InputRows" : 5, + "ComputeTimeUs" : 15892275, + "InputChannels" : [ + { + "WaitTimeUs" : 2475086, + "ChannelId" : 79, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8148, + "Rows" : 2855921, + "DstStageId" : 8, + "Bytes" : 25288584 + } + ], + "WaitInputTimeUs" : 8540936, + "TaskId" : 126, + "OutputBytes" : 25288584 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40627000, + "CpuTimeUs" : 16045261 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373329, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2336666, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 14657101, + "InputChannels" : [ + { + "WaitTimeUs" : 2487009, + "ChannelId" : 84, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8536, + "Rows" : 2336666, + "DstStageId" : 8, + "Bytes" : 20842840 + } + ], + "WaitInputTimeUs" : 9790271, + "TaskId" : 131, + "OutputBytes" : 20842840 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40633000, + "CpuTimeUs" : 14814271 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373329, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 3201382, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 16921595, + "InputChannels" : [ + { + "WaitTimeUs" : 2496848, + "ChannelId" : 78, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8051, + "Rows" : 3201382, + "DstStageId" : 8, + "Bytes" : 28655724 + } + ], + "WaitInputTimeUs" : 7512818, + "TaskId" : 125, + "OutputBytes" : 28655724 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40632000, + "CpuTimeUs" : 17073826 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373329, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2582634, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 15435699, + "InputChannels" : [ + { + "WaitTimeUs" : 2498182, + "ChannelId" : 83, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8439, + "Rows" : 2582634, + "DstStageId" : 8, + "Bytes" : 23045015 + } + ], + "WaitInputTimeUs" : 9504288, + "TaskId" : 130, + "OutputBytes" : 23045015 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40633000, + "CpuTimeUs" : 15578873 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373329, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 2455494, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 14677326, + "InputChannels" : [ + { + "WaitTimeUs" : 2497950, + "ChannelId" : 85, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 8633, + "Rows" : 2455494, + "DstStageId" : 8, + "Bytes" : 22052786 + } + ], + "WaitInputTimeUs" : 9868618, + "TaskId" : 132, + "OutputBytes" : 22052786 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40632000, + "CpuTimeUs" : 14823968 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373329, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "OutputRows" : 1590749, + "StartTimeMs" : 1726585332808, + "InputRows" : 5, + "ComputeTimeUs" : 10972595, + "InputChannels" : [ + { + "WaitTimeUs" : 2605872, + "ChannelId" : 90, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 9029, + "Rows" : 1590749, + "DstStageId" : 8, + "Bytes" : 14126090 + } + ], + "WaitInputTimeUs" : 13288411, + "TaskId" : 137, + "OutputBytes" : 14126090 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40521000, + "CpuTimeUs" : 11127831 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373369, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2619248, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 11457022, + "InputChannels" : [ + { + "WaitTimeUs" : 2394224, + "ChannelId" : 63, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 6693, + "Rows" : 2619248, + "DstStageId" : 8, + "Bytes" : 23336611 + } + ], + "WaitInputTimeUs" : 3381088, + "TaskId" : 110, + "OutputBytes" : 23336611 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40671000, + "CpuTimeUs" : 11587303 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373369, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2375012, + "StartTimeMs" : 1726585332869, + "InputRows" : 5, + "ComputeTimeUs" : 8935909, + "InputChannels" : [ + { + "WaitTimeUs" : 2545227, + "ChannelId" : 70, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7275, + "Rows" : 2375012, + "DstStageId" : 8, + "Bytes" : 21177308 + } + ], + "WaitInputTimeUs" : 3566861, + "TaskId" : 117, + "OutputBytes" : 21177308 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40500000, + "CpuTimeUs" : 9073771 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373369, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2505435, + "StartTimeMs" : 1726585332703, + "InputRows" : 5, + "ComputeTimeUs" : 10854708, + "InputChannels" : [ + { + "WaitTimeUs" : 2460723, + "ChannelId" : 68, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7178, + "Rows" : 2505435, + "DstStageId" : 8, + "Bytes" : 22260969 + } + ], + "WaitInputTimeUs" : 4047401, + "TaskId" : 115, + "OutputBytes" : 22260969 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40666000, + "CpuTimeUs" : 11004126 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373369, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2207352, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 8347457, + "InputChannels" : [ + { + "WaitTimeUs" : 2377838, + "ChannelId" : 72, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7469, + "Rows" : 2207352, + "DstStageId" : 8, + "Bytes" : 19542100 + } + ], + "WaitInputTimeUs" : 4256699, + "TaskId" : 119, + "OutputBytes" : 19542100 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40671000, + "CpuTimeUs" : 8494975 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373369, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 2636972, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 10898473, + "InputChannels" : [ + { + "WaitTimeUs" : 2389637, + "ChannelId" : 61, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 6499, + "Rows" : 2636972, + "DstStageId" : 8, + "Bytes" : 23587318 + } + ], + "WaitInputTimeUs" : 3602599, + "TaskId" : 108, + "OutputBytes" : 23587318 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40672000, + "CpuTimeUs" : 11035868 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373370, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "OutputRows" : 1989282, + "StartTimeMs" : 1726585332855, + "InputRows" : 5, + "ComputeTimeUs" : 7148336, + "InputChannels" : [ + { + "WaitTimeUs" : 2537085, + "ChannelId" : 74, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 7663, + "Rows" : 1989282, + "DstStageId" : 8, + "Bytes" : 17737804 + } + ], + "WaitInputTimeUs" : 5202397, + "TaskId" : 121, + "OutputBytes" : 17737804 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40515000, + "CpuTimeUs" : 7287381 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373378, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2773427, + "StartTimeMs" : 1726585332798, + "InputRows" : 5, + "ComputeTimeUs" : 10249625, + "InputChannels" : [ + { + "WaitTimeUs" : 2401911, + "ChannelId" : 130, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12610, + "Rows" : 2773427, + "DstStageId" : 8, + "Bytes" : 24792744 + } + ], + "WaitInputTimeUs" : 3565352, + "TaskId" : 177, + "OutputBytes" : 24792744 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40580000, + "CpuTimeUs" : 10378390 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373378, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2395450, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 9866498, + "InputChannels" : [ + { + "WaitTimeUs" : 2405640, + "ChannelId" : 133, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12813, + "Rows" : 2395450, + "DstStageId" : 8, + "Bytes" : 21365504 + } + ], + "WaitInputTimeUs" : 4311313, + "TaskId" : 180, + "OutputBytes" : 21365504 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40680000, + "CpuTimeUs" : 9999145 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373378, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2381380, + "StartTimeMs" : 1726585332699, + "InputRows" : 5, + "ComputeTimeUs" : 9357104, + "InputChannels" : [ + { + "WaitTimeUs" : 2303810, + "ChannelId" : 129, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12513, + "Rows" : 2381380, + "DstStageId" : 8, + "Bytes" : 21284488 + } + ], + "WaitInputTimeUs" : 4001925, + "TaskId" : 176, + "OutputBytes" : 21284488 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40679000, + "CpuTimeUs" : 9484323 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373378, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2819619, + "StartTimeMs" : 1726585332699, + "InputRows" : 5, + "ComputeTimeUs" : 10667339, + "InputChannels" : [ + { + "WaitTimeUs" : 2303730, + "ChannelId" : 131, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12707, + "Rows" : 2819619, + "DstStageId" : 8, + "Bytes" : 25123828 + } + ], + "WaitInputTimeUs" : 3408292, + "TaskId" : 178, + "OutputBytes" : 25123828 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40679000, + "CpuTimeUs" : 10796981 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373378, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2534500, + "StartTimeMs" : 1726585332699, + "InputRows" : 5, + "ComputeTimeUs" : 9619366, + "InputChannels" : [ + { + "WaitTimeUs" : 2304120, + "ChannelId" : 128, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12416, + "Rows" : 2534500, + "DstStageId" : 8, + "Bytes" : 22475572 + } + ], + "WaitInputTimeUs" : 3995572, + "TaskId" : 175, + "OutputBytes" : 22475572 + } + ], + "PeakMemoryUsageBytes" : 2359296, + "DurationUs" : 40679000, + "CpuTimeUs" : 9748307 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373379, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2384378, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 11214404, + "InputChannels" : [ + { + "WaitTimeUs" : 2310475, + "ChannelId" : 104, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 10282, + "Rows" : 2384378, + "DstStageId" : 8, + "Bytes" : 21400352 + } + ], + "WaitInputTimeUs" : 3985914, + "TaskId" : 151, + "OutputBytes" : 21400352 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40681000, + "CpuTimeUs" : 11354197 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373379, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 1801642, + "StartTimeMs" : 1726585332703, + "InputRows" : 5, + "ComputeTimeUs" : 7715081, + "InputChannels" : [ + { + "WaitTimeUs" : 2313545, + "ChannelId" : 108, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 10670, + "Rows" : 1801642, + "DstStageId" : 8, + "Bytes" : 16126082 + } + ], + "WaitInputTimeUs" : 6263598, + "TaskId" : 155, + "OutputBytes" : 16126082 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40676000, + "CpuTimeUs" : 7842181 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373379, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2354367, + "StartTimeMs" : 1726585332748, + "InputRows" : 5, + "ComputeTimeUs" : 13351068, + "InputChannels" : [ + { + "WaitTimeUs" : 2374988, + "ChannelId" : 97, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9700, + "Rows" : 2354367, + "DstStageId" : 8, + "Bytes" : 20854960 + } + ], + "WaitInputTimeUs" : 3516707, + "TaskId" : 144, + "OutputBytes" : 20854960 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40631000, + "CpuTimeUs" : 13486873 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373379, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 1881363, + "StartTimeMs" : 1726585332752, + "InputRows" : 5, + "ComputeTimeUs" : 7145669, + "InputChannels" : [ + { + "WaitTimeUs" : 2348361, + "ChannelId" : 139, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 13386, + "Rows" : 1881363, + "DstStageId" : 8, + "Bytes" : 16677703 + } + ], + "WaitInputTimeUs" : 6478138, + "TaskId" : 186, + "OutputBytes" : 16677703 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40627000, + "CpuTimeUs" : 7291048 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373379, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 1573246, + "StartTimeMs" : 1726585332703, + "InputRows" : 5, + "ComputeTimeUs" : 6855230, + "InputChannels" : [ + { + "WaitTimeUs" : 2299145, + "ChannelId" : 140, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 13483, + "Rows" : 1573246, + "DstStageId" : 8, + "Bytes" : 14065527 + } + ], + "WaitInputTimeUs" : 7277086, + "TaskId" : 187, + "OutputBytes" : 14065527 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40676000, + "CpuTimeUs" : 6969955 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373379, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2330307, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 12532224, + "InputChannels" : [ + { + "WaitTimeUs" : 2405589, + "ChannelId" : 95, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9506, + "Rows" : 2330307, + "DstStageId" : 8, + "Bytes" : 20763098 + } + ], + "WaitInputTimeUs" : 3425580, + "TaskId" : 142, + "OutputBytes" : 20763098 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40683000, + "CpuTimeUs" : 12666314 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373427, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2625926, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 10666759, + "InputChannels" : [ + { + "WaitTimeUs" : 2405683, + "ChannelId" : 125, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12125, + "Rows" : 2625926, + "DstStageId" : 8, + "Bytes" : 23544299 + } + ], + "WaitInputTimeUs" : 3526266, + "TaskId" : 172, + "OutputBytes" : 23544299 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40730000, + "CpuTimeUs" : 10793040 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373427, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2190210, + "StartTimeMs" : 1726585332708, + "InputRows" : 5, + "ComputeTimeUs" : 8129171, + "InputChannels" : [ + { + "WaitTimeUs" : 2305401, + "ChannelId" : 138, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 13289, + "Rows" : 2190210, + "DstStageId" : 8, + "Bytes" : 19440171 + } + ], + "WaitInputTimeUs" : 5234876, + "TaskId" : 185, + "OutputBytes" : 19440171 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40719000, + "CpuTimeUs" : 8267298 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373427, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2407366, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 9300254, + "InputChannels" : [ + { + "WaitTimeUs" : 2308189, + "ChannelId" : 127, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12319, + "Rows" : 2407366, + "DstStageId" : 8, + "Bytes" : 21416702 + } + ], + "WaitInputTimeUs" : 4139600, + "TaskId" : 174, + "OutputBytes" : 21416702 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40729000, + "CpuTimeUs" : 9438191 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373427, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 1899397, + "StartTimeMs" : 1726585332700, + "InputRows" : 5, + "ComputeTimeUs" : 7537085, + "InputChannels" : [ + { + "WaitTimeUs" : 2303382, + "ChannelId" : 136, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 13095, + "Rows" : 1899397, + "DstStageId" : 8, + "Bytes" : 17022509 + } + ], + "WaitInputTimeUs" : 5807072, + "TaskId" : 183, + "OutputBytes" : 17022509 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40727000, + "CpuTimeUs" : 7681908 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373427, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2875701, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 10949714, + "InputChannels" : [ + { + "WaitTimeUs" : 2461819, + "ChannelId" : 126, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 12222, + "Rows" : 2875701, + "DstStageId" : 8, + "Bytes" : 25691305 + } + ], + "WaitInputTimeUs" : 3435102, + "TaskId" : 173, + "OutputBytes" : 25691305 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40729000, + "CpuTimeUs" : 11080809 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373428, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "OutputRows" : 2018539, + "StartTimeMs" : 1726585332704, + "InputRows" : 5, + "ComputeTimeUs" : 7377879, + "InputChannels" : [ + { + "WaitTimeUs" : 2304431, + "ChannelId" : 137, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 13192, + "Rows" : 2018539, + "DstStageId" : 8, + "Bytes" : 17939425 + } + ], + "WaitInputTimeUs" : 6228457, + "TaskId" : 184, + "OutputBytes" : 17939425 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40724000, + "CpuTimeUs" : 7510182 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373451, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 1825592, + "StartTimeMs" : 1726585332699, + "InputRows" : 5, + "ComputeTimeUs" : 12156213, + "InputChannels" : [ + { + "WaitTimeUs" : 2390572, + "ChannelId" : 57, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 6208, + "Rows" : 1825592, + "DstStageId" : 8, + "Bytes" : 16213885 + } + ], + "WaitInputTimeUs" : 7185403, + "TaskId" : 104, + "OutputBytes" : 16213885 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40752000, + "CpuTimeUs" : 12297019 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373451, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 1549007, + "StartTimeMs" : 1726585332725, + "InputRows" : 5, + "ComputeTimeUs" : 10461421, + "InputChannels" : [ + { + "WaitTimeUs" : 2420363, + "ChannelId" : 59, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 6305, + "Rows" : 1549007, + "DstStageId" : 8, + "Bytes" : 13799255 + } + ], + "WaitInputTimeUs" : 9366340, + "TaskId" : 106, + "OutputBytes" : 13799255 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40726000, + "CpuTimeUs" : 10597281 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373451, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2079093, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 13445341, + "InputChannels" : [ + { + "WaitTimeUs" : 2484800, + "ChannelId" : 55, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 6014, + "Rows" : 2079093, + "DstStageId" : 8, + "Bytes" : 18620570 + } + ], + "WaitInputTimeUs" : 6056814, + "TaskId" : 102, + "OutputBytes" : 18620570 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40755000, + "CpuTimeUs" : 13581623 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373451, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2632463, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 16152568, + "InputChannels" : [ + { + "WaitTimeUs" : 2401994, + "ChannelId" : 48, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5335, + "Rows" : 2632463, + "DstStageId" : 8, + "Bytes" : 23504900 + } + ], + "WaitInputTimeUs" : 3459583, + "TaskId" : 95, + "OutputBytes" : 23504900 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40754000, + "CpuTimeUs" : 16290675 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373451, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2994443, + "StartTimeMs" : 1726585332703, + "InputRows" : 5, + "ComputeTimeUs" : 17175862, + "InputChannels" : [ + { + "WaitTimeUs" : 2401966, + "ChannelId" : 46, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5238, + "Rows" : 2994443, + "DstStageId" : 8, + "Bytes" : 26757664 + } + ], + "WaitInputTimeUs" : 3461404, + "TaskId" : 93, + "OutputBytes" : 26757664 + } + ], + "PeakMemoryUsageBytes" : 2359296, + "DurationUs" : 40748000, + "CpuTimeUs" : 17317308 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2347802, + "StartTimeMs" : 1726585332700, + "InputRows" : 5, + "ComputeTimeUs" : 14940882, + "InputChannels" : [ + { + "WaitTimeUs" : 2395872, + "ChannelId" : 47, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5245, + "Rows" : 2347802, + "DstStageId" : 8, + "Bytes" : 20940362 + } + ], + "WaitInputTimeUs" : 4244318, + "TaskId" : 94, + "OutputBytes" : 20940362 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40752000, + "CpuTimeUs" : 15074526 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 3118682, + "StartTimeMs" : 1726585332702, + "InputRows" : 5, + "ComputeTimeUs" : 16951796, + "InputChannels" : [ + { + "WaitTimeUs" : 2393686, + "ChannelId" : 45, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5141, + "Rows" : 3118682, + "DstStageId" : 8, + "Bytes" : 27782797 + } + ], + "WaitInputTimeUs" : 3375143, + "TaskId" : 92, + "OutputBytes" : 27782797 + } + ], + "PeakMemoryUsageBytes" : 2359296, + "DurationUs" : 40750000, + "CpuTimeUs" : 17093982 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2708599, + "StartTimeMs" : 1726585332712, + "InputRows" : 5, + "ComputeTimeUs" : 16319957, + "InputChannels" : [ + { + "WaitTimeUs" : 2402164, + "ChannelId" : 50, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5529, + "Rows" : 2708599, + "DstStageId" : 8, + "Bytes" : 24229562 + } + ], + "WaitInputTimeUs" : 3558186, + "TaskId" : 97, + "OutputBytes" : 24229562 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40740000, + "CpuTimeUs" : 16460637 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 1200512, + "StartTimeMs" : 1726585332704, + "InputRows" : 5, + "ComputeTimeUs" : 7407742, + "InputChannels" : [ + { + "WaitTimeUs" : 2389263, + "ChannelId" : 60, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 6402, + "Rows" : 1200512, + "DstStageId" : 8, + "Bytes" : 10617262 + } + ], + "WaitInputTimeUs" : 11754263, + "TaskId" : 107, + "OutputBytes" : 10617262 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40748000, + "CpuTimeUs" : 7547238 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2895899, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 17036287, + "InputChannels" : [ + { + "WaitTimeUs" : 2398354, + "ChannelId" : 49, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5432, + "Rows" : 2895899, + "DstStageId" : 8, + "Bytes" : 25737408 + } + ], + "WaitInputTimeUs" : 3407690, + "TaskId" : 96, + "OutputBytes" : 25737408 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40755000, + "CpuTimeUs" : 17167819 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2031465, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 11455988, + "InputChannels" : [ + { + "WaitTimeUs" : 2521942, + "ChannelId" : 56, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 6111, + "Rows" : 2031465, + "DstStageId" : 8, + "Bytes" : 18088604 + } + ], + "WaitInputTimeUs" : 7986574, + "TaskId" : 103, + "OutputBytes" : 18088604 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40756000, + "CpuTimeUs" : 11595725 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2425354, + "StartTimeMs" : 1726585332861, + "InputRows" : 5, + "ComputeTimeUs" : 14570023, + "InputChannels" : [ + { + "WaitTimeUs" : 2564229, + "ChannelId" : 54, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5917, + "Rows" : 2425354, + "DstStageId" : 8, + "Bytes" : 21477501 + } + ], + "WaitInputTimeUs" : 5394114, + "TaskId" : 101, + "OutputBytes" : 21477501 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40591000, + "CpuTimeUs" : 14710860 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373452, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2203847, + "StartTimeMs" : 1726585332843, + "InputRows" : 5, + "ComputeTimeUs" : 13137041, + "InputChannels" : [ + { + "WaitTimeUs" : 2543595, + "ChannelId" : 53, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5820, + "Rows" : 2203847, + "DstStageId" : 8, + "Bytes" : 19647528 + } + ], + "WaitInputTimeUs" : 6107774, + "TaskId" : 100, + "OutputBytes" : 19647528 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40609000, + "CpuTimeUs" : 13274878 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373453, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2842878, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 16921002, + "InputChannels" : [ + { + "WaitTimeUs" : 2393768, + "ChannelId" : 51, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5626, + "Rows" : 2842878, + "DstStageId" : 8, + "Bytes" : 25455968 + } + ], + "WaitInputTimeUs" : 3428575, + "TaskId" : 98, + "OutputBytes" : 25455968 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40756000, + "CpuTimeUs" : 17056450 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373453, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 1968974, + "StartTimeMs" : 1726585332720, + "InputRows" : 5, + "ComputeTimeUs" : 12905320, + "InputChannels" : [ + { + "WaitTimeUs" : 2412413, + "ChannelId" : 58, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 6213, + "Rows" : 1968974, + "DstStageId" : 8, + "Bytes" : 17626462 + } + ], + "WaitInputTimeUs" : 6543619, + "TaskId" : 105, + "OutputBytes" : 17626462 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40733000, + "CpuTimeUs" : 13029824 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373501, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2715195, + "StartTimeMs" : 1726585332695, + "InputRows" : 5, + "ComputeTimeUs" : 11516018, + "InputChannels" : [ + { + "WaitTimeUs" : 2493896, + "ChannelId" : 19, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2813, + "Rows" : 2715195, + "DstStageId" : 8, + "Bytes" : 24225409 + } + ], + "WaitInputTimeUs" : 7317125, + "TaskId" : 66, + "OutputBytes" : 24225409 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40806000, + "CpuTimeUs" : 11645690 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373502, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2050732, + "StartTimeMs" : 1726585332701, + "InputRows" : 5, + "ComputeTimeUs" : 8569094, + "InputChannels" : [ + { + "WaitTimeUs" : 2285700, + "ChannelId" : 23, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3201, + "Rows" : 2050732, + "DstStageId" : 8, + "Bytes" : 18266434 + } + ], + "WaitInputTimeUs" : 9840681, + "TaskId" : 70, + "OutputBytes" : 18266434 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40801000, + "CpuTimeUs" : 8705088 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373511, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2229725, + "StartTimeMs" : 1726585332698, + "InputRows" : 5, + "ComputeTimeUs" : 10678659, + "InputChannels" : [ + { + "WaitTimeUs" : 2309005, + "ChannelId" : 106, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 10476, + "Rows" : 2229725, + "DstStageId" : 8, + "Bytes" : 19807206 + } + ], + "WaitInputTimeUs" : 4241212, + "TaskId" : 153, + "OutputBytes" : 19807206 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40813000, + "CpuTimeUs" : 10817768 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373510, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2296300, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 9592576, + "InputChannels" : [ + { + "WaitTimeUs" : 2296321, + "ChannelId" : 22, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3104, + "Rows" : 2296300, + "DstStageId" : 8, + "Bytes" : 20375658 + } + ], + "WaitInputTimeUs" : 8830991, + "TaskId" : 69, + "OutputBytes" : 20375658 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40813000, + "CpuTimeUs" : 9721980 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373511, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2447038, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 11449623, + "InputChannels" : [ + { + "WaitTimeUs" : 2317099, + "ChannelId" : 102, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 10088, + "Rows" : 2447038, + "DstStageId" : 8, + "Bytes" : 21772491 + } + ], + "WaitInputTimeUs" : 3755852, + "TaskId" : 149, + "OutputBytes" : 21772491 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40814000, + "CpuTimeUs" : 11591310 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373511, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 1872641, + "StartTimeMs" : 1726585332702, + "InputRows" : 5, + "ComputeTimeUs" : 7515429, + "InputChannels" : [ + { + "WaitTimeUs" : 2286899, + "ChannelId" : 25, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3395, + "Rows" : 1872641, + "DstStageId" : 8, + "Bytes" : 16700225 + } + ], + "WaitInputTimeUs" : 11046448, + "TaskId" : 72, + "OutputBytes" : 16700225 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40809000, + "CpuTimeUs" : 7665634 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373511, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2879003, + "StartTimeMs" : 1726585332701, + "InputRows" : 5, + "ComputeTimeUs" : 11690668, + "InputChannels" : [ + { + "WaitTimeUs" : 2322135, + "ChannelId" : 14, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2425, + "Rows" : 2879003, + "DstStageId" : 8, + "Bytes" : 25662116 + } + ], + "WaitInputTimeUs" : 6860090, + "TaskId" : 61, + "OutputBytes" : 25662116 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40810000, + "CpuTimeUs" : 11831677 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373514, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2448213, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 13200858, + "InputChannels" : [ + { + "WaitTimeUs" : 2349889, + "ChannelId" : 93, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9312, + "Rows" : 2448213, + "DstStageId" : 8, + "Bytes" : 21809013 + } + ], + "WaitInputTimeUs" : 3692141, + "TaskId" : 140, + "OutputBytes" : 21809013 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40817000, + "CpuTimeUs" : 13334813 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373514, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2113543, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 12546944, + "InputChannels" : [ + { + "WaitTimeUs" : 2432476, + "ChannelId" : 100, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9991, + "Rows" : 2113543, + "DstStageId" : 8, + "Bytes" : 18871550 + } + ], + "WaitInputTimeUs" : 3634212, + "TaskId" : 147, + "OutputBytes" : 18871550 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40818000, + "CpuTimeUs" : 12677395 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373514, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 1419488, + "StartTimeMs" : 1726585332700, + "InputRows" : 5, + "ComputeTimeUs" : 8609519, + "InputChannels" : [ + { + "WaitTimeUs" : 2310226, + "ChannelId" : 107, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 10573, + "Rows" : 1419488, + "DstStageId" : 8, + "Bytes" : 12697836 + } + ], + "WaitInputTimeUs" : 5374569, + "TaskId" : 154, + "OutputBytes" : 12697836 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40814000, + "CpuTimeUs" : 8749736 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373514, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2686740, + "StartTimeMs" : 1726585332711, + "InputRows" : 5, + "ComputeTimeUs" : 13477324, + "InputChannels" : [ + { + "WaitTimeUs" : 2338062, + "ChannelId" : 98, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9797, + "Rows" : 2686740, + "DstStageId" : 8, + "Bytes" : 24026789 + } + ], + "WaitInputTimeUs" : 3415461, + "TaskId" : 145, + "OutputBytes" : 24026789 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40803000, + "CpuTimeUs" : 13616041 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373514, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2402863, + "StartTimeMs" : 1726585332703, + "InputRows" : 5, + "ComputeTimeUs" : 13408747, + "InputChannels" : [ + { + "WaitTimeUs" : 2330243, + "ChannelId" : 96, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9603, + "Rows" : 2402863, + "DstStageId" : 8, + "Bytes" : 21293754 + } + ], + "WaitInputTimeUs" : 3544839, + "TaskId" : 143, + "OutputBytes" : 21293754 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40811000, + "CpuTimeUs" : 13547947 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373515, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2631542, + "StartTimeMs" : 1726585332714, + "InputRows" : 5, + "ComputeTimeUs" : 12876057, + "InputChannels" : [ + { + "WaitTimeUs" : 2347897, + "ChannelId" : 94, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9409, + "Rows" : 2631542, + "DstStageId" : 8, + "Bytes" : 23363756 + } + ], + "WaitInputTimeUs" : 3903305, + "TaskId" : 141, + "OutputBytes" : 23363756 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40801000, + "CpuTimeUs" : 13014725 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373515, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2696971, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 12466357, + "InputChannels" : [ + { + "WaitTimeUs" : 2401241, + "ChannelId" : 99, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9894, + "Rows" : 2696971, + "DstStageId" : 8, + "Bytes" : 23986546 + } + ], + "WaitInputTimeUs" : 3929586, + "TaskId" : 146, + "OutputBytes" : 23986546 + } + ], + "PeakMemoryUsageBytes" : 2293760, + "DurationUs" : 40819000, + "CpuTimeUs" : 12605933 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373515, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2679042, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 13290970, + "InputChannels" : [ + { + "WaitTimeUs" : 2312332, + "ChannelId" : 103, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 10185, + "Rows" : 2679042, + "DstStageId" : 8, + "Bytes" : 23903813 + } + ], + "WaitInputTimeUs" : 3707348, + "TaskId" : 150, + "OutputBytes" : 23903813 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40818000, + "CpuTimeUs" : 13434786 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373515, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2569958, + "StartTimeMs" : 1726585332703, + "InputRows" : 5, + "ComputeTimeUs" : 11765451, + "InputChannels" : [ + { + "WaitTimeUs" : 2314789, + "ChannelId" : 105, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 10379, + "Rows" : 2569958, + "DstStageId" : 8, + "Bytes" : 22932224 + } + ], + "WaitInputTimeUs" : 4197229, + "TaskId" : 152, + "OutputBytes" : 22932224 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40812000, + "CpuTimeUs" : 11905426 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373515, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "OutputRows" : 2307114, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 12898659, + "InputChannels" : [ + { + "WaitTimeUs" : 2436718, + "ChannelId" : 101, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 9997, + "Rows" : 2307114, + "DstStageId" : 8, + "Bytes" : 20681427 + } + ], + "WaitInputTimeUs" : 3599890, + "TaskId" : 148, + "OutputBytes" : 20681427 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40818000, + "CpuTimeUs" : 13039940 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373543, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "OutputRows" : 1847781, + "StartTimeMs" : 1726585332697, + "InputRows" : 5, + "ComputeTimeUs" : 10982452, + "InputChannels" : [ + { + "WaitTimeUs" : 2584414, + "ChannelId" : 42, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 4850, + "Rows" : 1847781, + "DstStageId" : 8, + "Bytes" : 16532231 + } + ], + "WaitInputTimeUs" : 7557911, + "TaskId" : 89, + "OutputBytes" : 16532231 + } + ], + "PeakMemoryUsageBytes" : 2162688, + "DurationUs" : 40846000, + "CpuTimeUs" : 11122156 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373547, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "OutputRows" : 2660069, + "StartTimeMs" : 1726585332709, + "InputRows" : 5, + "ComputeTimeUs" : 15327095, + "InputChannels" : [ + { + "WaitTimeUs" : 2402743, + "ChannelId" : 52, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 5723, + "Rows" : 2660069, + "DstStageId" : 8, + "Bytes" : 23630040 + } + ], + "WaitInputTimeUs" : 4801408, + "TaskId" : 99, + "OutputBytes" : 23630040 + } + ], + "PeakMemoryUsageBytes" : 2228224, + "DurationUs" : 40838000, + "CpuTimeUs" : 15461678 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373555, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 3173846, + "StartTimeMs" : 1726585332729, + "InputRows" : 5, + "ComputeTimeUs" : 11875806, + "InputChannels" : [ + { + "WaitTimeUs" : 2344802, + "ChannelId" : 16, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2522, + "Rows" : 3173846, + "DstStageId" : 8, + "Bytes" : 28442780 + } + ], + "WaitInputTimeUs" : 7114781, + "TaskId" : 63, + "OutputBytes" : 28442780 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40826000, + "CpuTimeUs" : 12013397 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373555, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 1404938, + "StartTimeMs" : 1726585332706, + "InputRows" : 5, + "ComputeTimeUs" : 6714424, + "InputChannels" : [ + { + "WaitTimeUs" : 2290306, + "ChannelId" : 26, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3397, + "Rows" : 1404938, + "DstStageId" : 8, + "Bytes" : 12583469 + } + ], + "WaitInputTimeUs" : 11637746, + "TaskId" : 73, + "OutputBytes" : 12583469 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40849000, + "CpuTimeUs" : 6856049 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373555, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 1425020, + "StartTimeMs" : 1726585332711, + "InputRows" : 5, + "ComputeTimeUs" : 6128985, + "InputChannels" : [ + { + "WaitTimeUs" : 2295691, + "ChannelId" : 27, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3492, + "Rows" : 1425020, + "DstStageId" : 8, + "Bytes" : 12695468 + } + ], + "WaitInputTimeUs" : 12217443, + "TaskId" : 74, + "OutputBytes" : 12695468 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40844000, + "CpuTimeUs" : 6262792 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373555, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 3247551, + "StartTimeMs" : 1726585332735, + "InputRows" : 5, + "ComputeTimeUs" : 12710515, + "InputChannels" : [ + { + "WaitTimeUs" : 2365372, + "ChannelId" : 13, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2328, + "Rows" : 3247551, + "DstStageId" : 8, + "Bytes" : 28845894 + } + ], + "WaitInputTimeUs" : 6311520, + "TaskId" : 60, + "OutputBytes" : 28845894 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40820000, + "CpuTimeUs" : 12852349 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373556, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2695994, + "StartTimeMs" : 1726585332694, + "InputRows" : 5, + "ComputeTimeUs" : 10652823, + "InputChannels" : [ + { + "WaitTimeUs" : 2401363, + "ChannelId" : 18, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2716, + "Rows" : 2695994, + "DstStageId" : 8, + "Bytes" : 23946525 + } + ], + "WaitInputTimeUs" : 7944992, + "TaskId" : 65, + "OutputBytes" : 23946525 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40862000, + "CpuTimeUs" : 10779417 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373556, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 1935318, + "StartTimeMs" : 1726585332702, + "InputRows" : 5, + "ComputeTimeUs" : 8344126, + "InputChannels" : [ + { + "WaitTimeUs" : 2287177, + "ChannelId" : 24, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3298, + "Rows" : 1935318, + "DstStageId" : 8, + "Bytes" : 17220654 + } + ], + "WaitInputTimeUs" : 10381742, + "TaskId" : 71, + "OutputBytes" : 17220654 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40854000, + "CpuTimeUs" : 8494010 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373556, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2918194, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 11242882, + "InputChannels" : [ + { + "WaitTimeUs" : 2295746, + "ChannelId" : 21, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3007, + "Rows" : 2918194, + "DstStageId" : 8, + "Bytes" : 26078285 + } + ], + "WaitInputTimeUs" : 7740018, + "TaskId" : 68, + "OutputBytes" : 26078285 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40860000, + "CpuTimeUs" : 11380422 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373556, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2893639, + "StartTimeMs" : 1726585332810, + "InputRows" : 5, + "ComputeTimeUs" : 11444626, + "InputChannels" : [ + { + "WaitTimeUs" : 2419640, + "ChannelId" : 17, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2619, + "Rows" : 2893639, + "DstStageId" : 8, + "Bytes" : 25802534 + } + ], + "WaitInputTimeUs" : 7068813, + "TaskId" : 64, + "OutputBytes" : 25802534 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40746000, + "CpuTimeUs" : 11587220 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373603, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 2192934, + "StartTimeMs" : 1726585332695, + "InputRows" : 5, + "ComputeTimeUs" : 10199870, + "InputChannels" : [ + { + "WaitTimeUs" : 2295812, + "ChannelId" : 20, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2910, + "Rows" : 2192934, + "DstStageId" : 8, + "Bytes" : 19598609 + } + ], + "WaitInputTimeUs" : 8359852, + "TaskId" : 67, + "OutputBytes" : 19598609 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40908000, + "CpuTimeUs" : 10327915 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373604, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 664600, + "StartTimeMs" : 1726585332777, + "InputRows" : 5, + "ComputeTimeUs" : 2950040, + "InputChannels" : [ + { + "WaitTimeUs" : 2361832, + "ChannelId" : 28, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 3589, + "Rows" : 664600, + "DstStageId" : 8, + "Bytes" : 5937132 + } + ], + "WaitInputTimeUs" : 15396195, + "TaskId" : 75, + "OutputBytes" : 5937132 + } + ], + "PeakMemoryUsageBytes" : 2424832, + "DurationUs" : 40827000, + "CpuTimeUs" : 3128430 + }, + { + "Tasks" : [ + { + "InputBytes" : 20, + "FinishTimeMs" : 1726585373604, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "OutputRows" : 3135829, + "StartTimeMs" : 1726585332696, + "InputRows" : 5, + "ComputeTimeUs" : 11767858, + "InputChannels" : [ + { + "WaitTimeUs" : 2316885, + "ChannelId" : 15, + "Rows" : 5, + "SrcStageId" : 6, + "Bytes" : 20 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 2429, + "Rows" : 3135829, + "DstStageId" : 8, + "Bytes" : 27899800 + } + ], + "WaitInputTimeUs" : 6642619, + "TaskId" : 62, + "OutputBytes" : 27899800 + } + ], + "PeakMemoryUsageBytes" : 393216, + "DurationUs" : 40908000, + "CpuTimeUs" : 11901587 + } + ], + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 128, + "Sum" : 194598, + "Max" : 1778, + "Min" : 874 + }, + "Rows" : { + "Count" : 128, + "Sum" : 299974711, + "Max" : 3633640, + "Min" : 664600 + }, + "LastMessageMs" : { + "Count" : 128, + "Sum" : 5406932, + "Max" : 42279, + "Min" : 42171 + }, + "ActiveMessageMs" : { + "Count" : 128, + "Max" : 42279, + "Min" : 2576 + }, + "FirstMessageMs" : { + "Count" : 128, + "Sum" : 360763, + "Max" : 3259, + "Min" : 2576 + }, + "Bytes" : { + "Count" : 128, + "Sum" : 2673896773, + "Max" : 32529129, + "Min" : 5937132 + }, + "ActiveTimeUs" : { + "Count" : 128, + "Sum" : 5046169000, + "Max" : 39680000, + "Min" : 38993000 + } + }, + "Name" : "22", + "Push" : { + "Rows" : { + "Count" : 128, + "Sum" : 299974711, + "Max" : 3633640, + "Min" : 664600 + }, + "LastMessageMs" : { + "Count" : 128, + "Sum" : 2245440, + "Max" : 24968, + "Min" : 12368 + }, + "Chunks" : { + "Count" : 128, + "Sum" : 299974711, + "Max" : 3633640, + "Min" : 664600 + }, + "ResumeMessageMs" : { + "Count" : 128, + "Sum" : 1118118, + "Max" : 17825, + "Min" : 5010 + }, + "FirstMessageMs" : { + "Count" : 128, + "Sum" : 327941, + "Max" : 2728, + "Min" : 2526 + }, + "ActiveMessageMs" : { + "Count" : 128, + "Max" : 24968, + "Min" : 2526 + }, + "PauseMessageMs" : { + "Count" : 128, + "Sum" : 169769, + "Max" : 2529, + "Min" : 561 + }, + "ActiveTimeUs" : { + "Count" : 128, + "Sum" : 1917499000, + "Max" : 22440000, + "Min" : 9683000 + }, + "WaitTimeUs" : { + "Count" : 128, + "Sum" : 484466782, + "Max" : 13912193, + "Min" : 2361341 + }, + "WaitPeriods" : { + "Count" : 128, + "Sum" : 194598, + "Max" : 1778, + "Min" : 874 + }, + "WaitMessageMs" : { + "Count" : 128, + "Max" : 17825, + "Min" : 561 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 128, + "Sum" : 4026531840, + "Max" : 31457280, + "Min" : 31457280 + }, + "DurationUs" : { + "Count" : 128, + "Sum" : 5194700000, + "Max" : 40908000, + "Min" : 40064000 + }, + "InputBytes" : { + "Count" : 128, + "Sum" : 2560, + "Max" : 20, + "Min" : 20 + }, + "Tasks" : 128, + "OutputRows" : { + "Count" : 128, + "Sum" : 299974711, + "Max" : 3633640, + "Min" : 664600 + }, + "InputRows" : { + "Count" : 128, + "Sum" : 640, + "Max" : 5, + "Min" : 5 + }, + "PhysicalStageId" : 7, + "StageDurationUs" : 40910000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 128, + "Sum" : 767806253, + "Max" : 16573273, + "Min" : 3169439 + }, + "OutputBytes" : { + "Count" : 128, + "Sum" : 2673896773, + "Max" : 32529129, + "Min" : 5937132 + }, + "CpuTimeUs" : { + "Count" : 128, + "Sum" : 1460068501, + "Max" : 17469275, + "Min" : 2950207 + }, + "Input" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 128, + "Sum" : 128, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 128, + "Sum" : 640, + "Max" : 5, + "Min" : 5 + }, + "LastMessageMs" : { + "Count" : 128, + "Sum" : 326357, + "Max" : 2728, + "Min" : 2524 + }, + "ActiveMessageMs" : { + "Count" : 128, + "Max" : 2728, + "Min" : 2524 + }, + "FirstMessageMs" : { + "Count" : 128, + "Sum" : 326357, + "Max" : 2728, + "Min" : 2524 + }, + "Bytes" : { + "Count" : 128, + "Sum" : 2560, + "Max" : 20, + "Min" : 20 + } + }, + "Name" : "16", + "Push" : { + "Rows" : { + "Count" : 128, + "Sum" : 640, + "Max" : 5, + "Min" : 5 + }, + "LastMessageMs" : { + "Count" : 128, + "Sum" : 326357, + "Max" : 2728, + "Min" : 2524 + }, + "Chunks" : { + "Count" : 128, + "Sum" : 128, + "Max" : 1, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 128, + "Sum" : 326357, + "Max" : 2728, + "Min" : 2524 + }, + "FirstMessageMs" : { + "Count" : 128, + "Sum" : 326357, + "Max" : 2728, + "Min" : 2524 + }, + "ActiveMessageMs" : { + "Count" : 128, + "Max" : 2728, + "Min" : 2524 + }, + "Bytes" : { + "Count" : 128, + "Sum" : 2560, + "Max" : 20, + "Min" : 20 + }, + "PauseMessageMs" : { + "Count" : 128, + "Sum" : 76160, + "Max" : 900, + "Min" : 561 + }, + "WaitTimeUs" : { + "Count" : 128, + "Sum" : 308013978, + "Max" : 2605872, + "Min" : 2193110 + }, + "WaitPeriods" : { + "Count" : 128, + "Sum" : 128, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 128, + "Max" : 2728, + "Min" : 561 + } + } + } + ] + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "c.c_custkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 21 + }, + { + "ExternalPlanNodeId" : 19 + } + ], + "E-Rows" : "3750000000", + "Condition" : "o.o_custkey = c.c_custkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "2.336066282e+11", + "E-Cost" : "2.025000016e+10" + } + ], + "Node Type" : "InnerJoin (Grace)", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "InputBytes" : 30345162, + "FinishTimeMs" : 1726585373535, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333114, + "InputRows" : 3404318, + "ComputeTimeUs" : 1753252, + "InputChannels" : [ + { + "WaitTimeUs" : 42169469, + "ChannelId" : 2896, + "Rows" : 3404318, + "SrcStageId" : 7, + "Bytes" : 30345162 + }, + { + "WaitTimeUs" : 38272315, + "ChannelId" : 696, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 18430, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41605035, + "TaskId" : 215 + } + ], + "PeakMemoryUsageBytes" : 16302848, + "DurationUs" : 40421000, + "CpuTimeUs" : 2297027 + }, + { + "Tasks" : [ + { + "InputBytes" : 30385916, + "FinishTimeMs" : 1726585373539, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333120, + "InputRows" : 3408945, + "ComputeTimeUs" : 1756041, + "InputChannels" : [ + { + "WaitTimeUs" : 42193475, + "ChannelId" : 5983, + "Rows" : 3408945, + "SrcStageId" : 7, + "Bytes" : 30385916 + }, + { + "WaitTimeUs" : 38368943, + "ChannelId" : 175, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 19109, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41605930, + "TaskId" : 222 + } + ], + "PeakMemoryUsageBytes" : 16340752, + "DurationUs" : 40419000, + "CpuTimeUs" : 2295546 + }, + { + "Tasks" : [ + { + "InputBytes" : 30386723, + "FinishTimeMs" : 1726585373544, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585332771, + "InputRows" : 3409009, + "ComputeTimeUs" : 1764308, + "InputChannels" : [ + { + "WaitTimeUs" : 41940303, + "ChannelId" : 7527, + "Rows" : 3409009, + "SrcStageId" : 7, + "Bytes" : 30386723 + }, + { + "WaitTimeUs" : 38277218, + "ChannelId" : 1015, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 23765, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41601794, + "TaskId" : 270 + } + ], + "PeakMemoryUsageBytes" : 13833024, + "DurationUs" : 40773000, + "CpuTimeUs" : 2296703 + }, + { + "Tasks" : [ + { + "InputBytes" : 30368884, + "FinishTimeMs" : 1726585373554, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332844, + "InputRows" : 3406965, + "ComputeTimeUs" : 1770951, + "InputChannels" : [ + { + "WaitTimeUs" : 41934072, + "ChannelId" : 12545, + "Rows" : 3406965, + "SrcStageId" : 7, + "Bytes" : 30368884 + }, + { + "WaitTimeUs" : 38335493, + "ChannelId" : 841, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 23959, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591029, + "TaskId" : 272 + } + ], + "PeakMemoryUsageBytes" : 15544048, + "DurationUs" : 40710000, + "CpuTimeUs" : 2198454 + }, + { + "Tasks" : [ + { + "InputBytes" : 30367144, + "FinishTimeMs" : 1726585373553, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585333004, + "InputRows" : 3406765, + "ComputeTimeUs" : 1770103, + "InputChannels" : [ + { + "WaitTimeUs" : 41908946, + "ChannelId" : 5404, + "Rows" : 3406765, + "SrcStageId" : 7, + "Bytes" : 30367144 + }, + { + "WaitTimeUs" : 38132351, + "ChannelId" : 1972, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 22698, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41588028, + "TaskId" : 259 + } + ], + "PeakMemoryUsageBytes" : 15968080, + "DurationUs" : 40549000, + "CpuTimeUs" : 2237672 + }, + { + "Tasks" : [ + { + "InputBytes" : 30377755, + "FinishTimeMs" : 1726585373554, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333126, + "InputRows" : 3407979, + "ComputeTimeUs" : 1768856, + "InputChannels" : [ + { + "WaitTimeUs" : 42181225, + "ChannelId" : 6176, + "Rows" : 3407979, + "SrcStageId" : 7, + "Bytes" : 30377755 + }, + { + "WaitTimeUs" : 38264822, + "ChannelId" : 1160, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 20758, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41606178, + "TaskId" : 239 + } + ], + "PeakMemoryUsageBytes" : 16154416, + "DurationUs" : 40428000, + "CpuTimeUs" : 2296838 + }, + { + "Tasks" : [ + { + "InputBytes" : 30405404, + "FinishTimeMs" : 1726585373554, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333140, + "InputRows" : 3411098, + "ComputeTimeUs" : 1770510, + "InputChannels" : [ + { + "WaitTimeUs" : 42197239, + "ChannelId" : 4440, + "Rows" : 3411098, + "SrcStageId" : 7, + "Bytes" : 30405404 + }, + { + "WaitTimeUs" : 38237128, + "ChannelId" : 1624, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 23086, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41605737, + "TaskId" : 263 + } + ], + "PeakMemoryUsageBytes" : 13895376, + "DurationUs" : 40414000, + "CpuTimeUs" : 2297581 + }, + { + "Tasks" : [ + { + "InputBytes" : 30365366, + "FinishTimeMs" : 1726585373558, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332942, + "InputRows" : 3406648, + "ComputeTimeUs" : 1774713, + "InputChannels" : [ + { + "WaitTimeUs" : 41934225, + "ChannelId" : 6755, + "Rows" : 3406648, + "SrcStageId" : 7, + "Bytes" : 30365366 + }, + { + "WaitTimeUs" : 38113690, + "ChannelId" : 1827, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 17169, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589841, + "TaskId" : 202 + } + ], + "PeakMemoryUsageBytes" : 14853968, + "DurationUs" : 40616000, + "CpuTimeUs" : 2254489 + }, + { + "Tasks" : [ + { + "InputBytes" : 30368731, + "FinishTimeMs" : 1726585373560, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332923, + "InputRows" : 3406957, + "ComputeTimeUs" : 1775137, + "InputChannels" : [ + { + "WaitTimeUs" : 41928613, + "ChannelId" : 4246, + "Rows" : 3406957, + "SrcStageId" : 7, + "Bytes" : 30368731 + }, + { + "WaitTimeUs" : 38099772, + "ChannelId" : 638, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 21340, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594198, + "TaskId" : 245 + } + ], + "PeakMemoryUsageBytes" : 15864640, + "DurationUs" : 40637000, + "CpuTimeUs" : 2310654 + }, + { + "Tasks" : [ + { + "InputBytes" : 30377812, + "FinishTimeMs" : 1726585373560, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333124, + "InputRows" : 3408041, + "ComputeTimeUs" : 1776878, + "InputChannels" : [ + { + "WaitTimeUs" : 42189553, + "ChannelId" : 10808, + "Rows" : 3408041, + "SrcStageId" : 7, + "Bytes" : 30377812 + }, + { + "WaitTimeUs" : 38468056, + "ChannelId" : 1392, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 17654, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41605208, + "TaskId" : 207 + } + ], + "PeakMemoryUsageBytes" : 13998816, + "DurationUs" : 40436000, + "CpuTimeUs" : 2330998 + }, + { + "Tasks" : [ + { + "InputBytes" : 30395678, + "FinishTimeMs" : 1726585373560, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332943, + "InputRows" : 3409946, + "ComputeTimeUs" : 1774806, + "InputChannels" : [ + { + "WaitTimeUs" : 42170615, + "ChannelId" : 8299, + "Rows" : 3409946, + "SrcStageId" : 7, + "Bytes" : 30395678 + }, + { + "WaitTimeUs" : 38094389, + "ChannelId" : 203, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 21825, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41592302, + "TaskId" : 250 + } + ], + "PeakMemoryUsageBytes" : 14412576, + "DurationUs" : 40617000, + "CpuTimeUs" : 2213234 + }, + { + "Tasks" : [ + { + "InputBytes" : 30395137, + "FinishTimeMs" : 1726585373564, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585332789, + "InputRows" : 3409867, + "ComputeTimeUs" : 1780825, + "InputChannels" : [ + { + "WaitTimeUs" : 41933257, + "ChannelId" : 3668, + "Rows" : 3409867, + "SrcStageId" : 7, + "Bytes" : 30395137 + }, + { + "WaitTimeUs" : 38132955, + "ChannelId" : 148, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 16587, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41587207, + "TaskId" : 195 + } + ], + "PeakMemoryUsageBytes" : 16343936, + "DurationUs" : 40775000, + "CpuTimeUs" : 2268138 + }, + { + "Tasks" : [ + { + "InputBytes" : 30399082, + "FinishTimeMs" : 1726585373564, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585333022, + "InputRows" : 3410395, + "ComputeTimeUs" : 1781073, + "InputChannels" : [ + { + "WaitTimeUs" : 42171630, + "ChannelId" : 6948, + "Rows" : 3410395, + "SrcStageId" : 7, + "Bytes" : 30399082 + }, + { + "WaitTimeUs" : 38126031, + "ChannelId" : 348, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 18818, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41587514, + "TaskId" : 219 + } + ], + "PeakMemoryUsageBytes" : 16033616, + "DurationUs" : 40542000, + "CpuTimeUs" : 2262734 + }, + { + "Tasks" : [ + { + "InputBytes" : 30376144, + "FinishTimeMs" : 1726585373565, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333116, + "InputRows" : 3407802, + "ComputeTimeUs" : 1781719, + "InputChannels" : [ + { + "WaitTimeUs" : 42199215, + "ChannelId" : 2703, + "Rows" : 3407802, + "SrcStageId" : 7, + "Bytes" : 30376144 + }, + { + "WaitTimeUs" : 38278206, + "ChannelId" : 2175, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 16781, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41605829, + "TaskId" : 198 + } + ], + "PeakMemoryUsageBytes" : 16509728, + "DurationUs" : 40449000, + "CpuTimeUs" : 2325770 + }, + { + "Tasks" : [ + { + "InputBytes" : 30380667, + "FinishTimeMs" : 1726585373565, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333122, + "InputRows" : 3408299, + "ComputeTimeUs" : 1781794, + "InputChannels" : [ + { + "WaitTimeUs" : 42199780, + "ChannelId" : 4247, + "Rows" : 3408299, + "SrcStageId" : 7, + "Bytes" : 30380667 + }, + { + "WaitTimeUs" : 38220591, + "ChannelId" : 551, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 21437, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41604699, + "TaskId" : 246 + } + ], + "PeakMemoryUsageBytes" : 16144144, + "DurationUs" : 40443000, + "CpuTimeUs" : 2319681 + }, + { + "Tasks" : [ + { + "InputBytes" : 30390809, + "FinishTimeMs" : 1726585373565, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332943, + "InputRows" : 3409373, + "ComputeTimeUs" : 1783756, + "InputChannels" : [ + { + "WaitTimeUs" : 41945359, + "ChannelId" : 2702, + "Rows" : 3409373, + "SrcStageId" : 7, + "Bytes" : 30390809 + }, + { + "WaitTimeUs" : 38152098, + "ChannelId" : 150, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 16685, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594324, + "TaskId" : 197 + } + ], + "PeakMemoryUsageBytes" : 16399200, + "DurationUs" : 40622000, + "CpuTimeUs" : 2306301 + }, + { + "Tasks" : [ + { + "InputBytes" : 30362707, + "FinishTimeMs" : 1726585373565, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332783, + "InputRows" : 3406333, + "ComputeTimeUs" : 1784942, + "InputChannels" : [ + { + "WaitTimeUs" : 42203209, + "ChannelId" : 6177, + "Rows" : 3406333, + "SrcStageId" : 7, + "Bytes" : 30362707 + }, + { + "WaitTimeUs" : 38166436, + "ChannelId" : 1073, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 20855, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41592370, + "TaskId" : 240 + } + ], + "PeakMemoryUsageBytes" : 15592224, + "DurationUs" : 40782000, + "CpuTimeUs" : 2398679 + }, + { + "Tasks" : [ + { + "InputBytes" : 30383696, + "FinishTimeMs" : 1726585373570, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585332776, + "InputRows" : 3408649, + "ComputeTimeUs" : 1786483, + "InputChannels" : [ + { + "WaitTimeUs" : 41905326, + "ChannelId" : 3860, + "Rows" : 3408649, + "SrcStageId" : 7, + "Bytes" : 30383696 + }, + { + "WaitTimeUs" : 38112300, + "ChannelId" : 1044, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 18042, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41588450, + "TaskId" : 211 + } + ], + "PeakMemoryUsageBytes" : 15826736, + "DurationUs" : 40794000, + "CpuTimeUs" : 2275264 + }, + { + "Tasks" : [ + { + "InputBytes" : 30414659, + "FinishTimeMs" : 1726585373572, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332934, + "InputRows" : 3412122, + "ComputeTimeUs" : 1788292, + "InputChannels" : [ + { + "WaitTimeUs" : 41917329, + "ChannelId" : 4054, + "Rows" : 3412122, + "SrcStageId" : 7, + "Bytes" : 30414659 + }, + { + "WaitTimeUs" : 38100200, + "ChannelId" : 2030, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 19788, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593999, + "TaskId" : 229 + } + ], + "PeakMemoryUsageBytes" : 15930176, + "DurationUs" : 40638000, + "CpuTimeUs" : 2321197 + }, + { + "Tasks" : [ + { + "InputBytes" : 30378017, + "FinishTimeMs" : 1726585373572, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332845, + "InputRows" : 3408055, + "ComputeTimeUs" : 1791569, + "InputChannels" : [ + { + "WaitTimeUs" : 41937562, + "ChannelId" : 7914, + "Rows" : 3408055, + "SrcStageId" : 7, + "Bytes" : 30378017 + }, + { + "WaitTimeUs" : 38098640, + "ChannelId" : 522, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 18624, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589890, + "TaskId" : 217 + } + ], + "PeakMemoryUsageBytes" : 15892272, + "DurationUs" : 40727000, + "CpuTimeUs" : 2245152 + }, + { + "Tasks" : [ + { + "InputBytes" : 30361996, + "FinishTimeMs" : 1726585373571, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332914, + "InputRows" : 3406282, + "ComputeTimeUs" : 1787915, + "InputChannels" : [ + { + "WaitTimeUs" : 42182955, + "ChannelId" : 3475, + "Rows" : 3406282, + "SrcStageId" : 7, + "Bytes" : 30361996 + }, + { + "WaitTimeUs" : 38162852, + "ChannelId" : 1363, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 23377, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590694, + "TaskId" : 266 + } + ], + "PeakMemoryUsageBytes" : 14246784, + "DurationUs" : 40657000, + "CpuTimeUs" : 2223333 + }, + { + "Tasks" : [ + { + "InputBytes" : 30386874, + "FinishTimeMs" : 1726585373572, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332809, + "InputRows" : 3409061, + "ComputeTimeUs" : 1790686, + "InputChannels" : [ + { + "WaitTimeUs" : 41949736, + "ChannelId" : 4825, + "Rows" : 3409061, + "SrcStageId" : 7, + "Bytes" : 30386874 + }, + { + "WaitTimeUs" : 38244675, + "ChannelId" : 1305, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 17751, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589534, + "TaskId" : 208 + } + ], + "PeakMemoryUsageBytes" : 14760800, + "DurationUs" : 40763000, + "CpuTimeUs" : 2243527 + }, + { + "Tasks" : [ + { + "InputBytes" : 30352517, + "FinishTimeMs" : 1726585373578, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332908, + "InputRows" : 3405073, + "ComputeTimeUs" : 1792216, + "InputChannels" : [ + { + "WaitTimeUs" : 41943597, + "ChannelId" : 2895, + "Rows" : 3405073, + "SrcStageId" : 7, + "Bytes" : 30352517 + }, + { + "WaitTimeUs" : 38144027, + "ChannelId" : 783, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 18333, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591864, + "TaskId" : 214 + } + ], + "PeakMemoryUsageBytes" : 15554320, + "DurationUs" : 40670000, + "CpuTimeUs" : 2195810 + }, + { + "Tasks" : [ + { + "InputBytes" : 30413938, + "FinishTimeMs" : 1726585373583, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332887, + "InputRows" : 3412109, + "ComputeTimeUs" : 1800859, + "InputChannels" : [ + { + "WaitTimeUs" : 41944380, + "ChannelId" : 3089, + "Rows" : 3412109, + "SrcStageId" : 7, + "Bytes" : 30413938 + }, + { + "WaitTimeUs" : 38155812, + "ChannelId" : 1769, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 20079, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590493, + "TaskId" : 232 + } + ], + "PeakMemoryUsageBytes" : 15919904, + "DurationUs" : 40696000, + "CpuTimeUs" : 2244199 + }, + { + "Tasks" : [ + { + "InputBytes" : 30388420, + "FinishTimeMs" : 1726585373583, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332965, + "InputRows" : 3409100, + "ComputeTimeUs" : 1799791, + "InputChannels" : [ + { + "WaitTimeUs" : 42172990, + "ChannelId" : 5211, + "Rows" : 3409100, + "SrcStageId" : 7, + "Bytes" : 30388420 + }, + { + "WaitTimeUs" : 38197610, + "ChannelId" : 899, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 21049, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589550, + "TaskId" : 242 + } + ], + "PeakMemoryUsageBytes" : 13512432, + "DurationUs" : 40618000, + "CpuTimeUs" : 2236744 + }, + { + "Tasks" : [ + { + "InputBytes" : 30391734, + "FinishTimeMs" : 1726585373584, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332938, + "InputRows" : 3409623, + "ComputeTimeUs" : 1798697, + "InputChannels" : [ + { + "WaitTimeUs" : 41928460, + "ChannelId" : 8878, + "Rows" : 3409623, + "SrcStageId" : 7, + "Bytes" : 30391734 + }, + { + "WaitTimeUs" : 38170559, + "ChannelId" : 870, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 18236, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41595378, + "TaskId" : 213 + } + ], + "PeakMemoryUsageBytes" : 15826736, + "DurationUs" : 40646000, + "CpuTimeUs" : 2330115 + }, + { + "Tasks" : [ + { + "InputBytes" : 30376649, + "FinishTimeMs" : 1726585373584, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332930, + "InputRows" : 3407883, + "ComputeTimeUs" : 1799517, + "InputChannels" : [ + { + "WaitTimeUs" : 41940132, + "ChannelId" : 5598, + "Rows" : 3407883, + "SrcStageId" : 7, + "Bytes" : 30376649 + }, + { + "WaitTimeUs" : 38152118, + "ChannelId" : 406, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 16005, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594590, + "TaskId" : 189 + } + ], + "PeakMemoryUsageBytes" : 15919904, + "DurationUs" : 40654000, + "CpuTimeUs" : 2333839 + }, + { + "Tasks" : [ + { + "InputBytes" : 30418381, + "FinishTimeMs" : 1726585373584, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332928, + "InputRows" : 3412458, + "ComputeTimeUs" : 1800485, + "InputChannels" : [ + { + "WaitTimeUs" : 41924873, + "ChannelId" : 13510, + "Rows" : 3412458, + "SrcStageId" : 7, + "Bytes" : 30418381 + }, + { + "WaitTimeUs" : 38157441, + "ChannelId" : 1102, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 23668, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593700, + "TaskId" : 269 + } + ], + "PeakMemoryUsageBytes" : 15968080, + "DurationUs" : 40656000, + "CpuTimeUs" : 2331946 + }, + { + "Tasks" : [ + { + "InputBytes" : 30409725, + "FinishTimeMs" : 1726585373584, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332932, + "InputRows" : 3411538, + "ComputeTimeUs" : 1799524, + "InputChannels" : [ + { + "WaitTimeUs" : 41914125, + "ChannelId" : 5790, + "Rows" : 3411538, + "SrcStageId" : 7, + "Bytes" : 30409725 + }, + { + "WaitTimeUs" : 38170540, + "ChannelId" : 1566, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 17460, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41596279, + "TaskId" : 205 + } + ], + "PeakMemoryUsageBytes" : 15826736, + "DurationUs" : 40652000, + "CpuTimeUs" : 2326894 + }, + { + "Tasks" : [ + { + "InputBytes" : 30387766, + "FinishTimeMs" : 1726585373584, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332948, + "InputRows" : 3409148, + "ComputeTimeUs" : 1801105, + "InputChannels" : [ + { + "WaitTimeUs" : 42167766, + "ChannelId" : 6563, + "Rows" : 3409148, + "SrcStageId" : 7, + "Bytes" : 30387766 + }, + { + "WaitTimeUs" : 38112815, + "ChannelId" : 667, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 24153, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589686, + "TaskId" : 274 + } + ], + "PeakMemoryUsageBytes" : 15554320, + "DurationUs" : 40636000, + "CpuTimeUs" : 2234870 + }, + { + "Tasks" : [ + { + "InputBytes" : 30374152, + "FinishTimeMs" : 1726585373590, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332806, + "InputRows" : 3407536, + "ComputeTimeUs" : 1807754, + "InputChannels" : [ + { + "WaitTimeUs" : 41927491, + "ChannelId" : 3282, + "Rows" : 3407536, + "SrcStageId" : 7, + "Bytes" : 30374152 + }, + { + "WaitTimeUs" : 38206340, + "ChannelId" : 290, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 21728, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41592873, + "TaskId" : 249 + } + ], + "PeakMemoryUsageBytes" : 16295760, + "DurationUs" : 40784000, + "CpuTimeUs" : 2407206 + }, + { + "Tasks" : [ + { + "InputBytes" : 30363859, + "FinishTimeMs" : 1726585373590, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332847, + "InputRows" : 3406455, + "ComputeTimeUs" : 1808895, + "InputChannels" : [ + { + "WaitTimeUs" : 41954010, + "ChannelId" : 9650, + "Rows" : 3406455, + "SrcStageId" : 7, + "Bytes" : 30363859 + }, + { + "WaitTimeUs" : 38190952, + "ChannelId" : 146, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 16393, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589521, + "TaskId" : 193 + } + ], + "PeakMemoryUsageBytes" : 16078608, + "DurationUs" : 40743000, + "CpuTimeUs" : 2255444 + }, + { + "Tasks" : [ + { + "InputBytes" : 30386647, + "FinishTimeMs" : 1726585373590, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332927, + "InputRows" : 3409078, + "ComputeTimeUs" : 1804968, + "InputChannels" : [ + { + "WaitTimeUs" : 41918416, + "ChannelId" : 10422, + "Rows" : 3409078, + "SrcStageId" : 7, + "Bytes" : 30386647 + }, + { + "WaitTimeUs" : 38149495, + "ChannelId" : 1798, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 22892, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41596377, + "TaskId" : 261 + } + ], + "PeakMemoryUsageBytes" : 14112528, + "DurationUs" : 40663000, + "CpuTimeUs" : 2352346 + }, + { + "Tasks" : [ + { + "InputBytes" : 30381316, + "FinishTimeMs" : 1726585373589, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585332773, + "InputRows" : 3408335, + "ComputeTimeUs" : 1802930, + "InputChannels" : [ + { + "WaitTimeUs" : 41918166, + "ChannelId" : 2316, + "Rows" : 3408335, + "SrcStageId" : 7, + "Bytes" : 30381316 + }, + { + "WaitTimeUs" : 38182267, + "ChannelId" : 204, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 21922, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589948, + "TaskId" : 251 + } + ], + "PeakMemoryUsageBytes" : 15968080, + "DurationUs" : 40816000, + "CpuTimeUs" : 2262530 + }, + { + "Tasks" : [ + { + "InputBytes" : 30413916, + "FinishTimeMs" : 1726585373590, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585332789, + "InputRows" : 3412050, + "ComputeTimeUs" : 1804539, + "InputChannels" : [ + { + "WaitTimeUs" : 41951090, + "ChannelId" : 5212, + "Rows" : 3412050, + "SrcStageId" : 7, + "Bytes" : 30413916 + }, + { + "WaitTimeUs" : 38111724, + "ChannelId" : 812, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 21146, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41588590, + "TaskId" : 243 + } + ], + "PeakMemoryUsageBytes" : 15657760, + "DurationUs" : 40801000, + "CpuTimeUs" : 2278254 + }, + { + "Tasks" : [ + { + "InputBytes" : 30381449, + "FinishTimeMs" : 1726585373590, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332833, + "InputRows" : 3408376, + "ComputeTimeUs" : 1808563, + "InputChannels" : [ + { + "WaitTimeUs" : 41925078, + "ChannelId" : 4826, + "Rows" : 3408376, + "SrcStageId" : 7, + "Bytes" : 30381449 + }, + { + "WaitTimeUs" : 38154962, + "ChannelId" : 1218, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 17848, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593345, + "TaskId" : 209 + } + ], + "PeakMemoryUsageBytes" : 15844096, + "DurationUs" : 40757000, + "CpuTimeUs" : 2433807 + }, + { + "Tasks" : [ + { + "InputBytes" : 30375622, + "FinishTimeMs" : 1726585373591, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332842, + "InputRows" : 3407685, + "ComputeTimeUs" : 1806918, + "InputChannels" : [ + { + "WaitTimeUs" : 41973054, + "ChannelId" : 6369, + "Rows" : 3407685, + "SrcStageId" : 7, + "Bytes" : 30375622 + }, + { + "WaitTimeUs" : 38219481, + "ChannelId" : 2233, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 22407, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591127, + "TaskId" : 256 + } + ], + "PeakMemoryUsageBytes" : 13974368, + "DurationUs" : 40749000, + "CpuTimeUs" : 2247572 + }, + { + "Tasks" : [ + { + "InputBytes" : 30396208, + "FinishTimeMs" : 1726585373591, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332904, + "InputRows" : 3410016, + "ComputeTimeUs" : 1802634, + "InputChannels" : [ + { + "WaitTimeUs" : 41947654, + "ChannelId" : 12159, + "Rows" : 3410016, + "SrcStageId" : 7, + "Bytes" : 30396208 + }, + { + "WaitTimeUs" : 38172390, + "ChannelId" : 1247, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 20661, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590851, + "TaskId" : 238 + } + ], + "PeakMemoryUsageBytes" : 15695664, + "DurationUs" : 40687000, + "CpuTimeUs" : 2213176 + }, + { + "Tasks" : [ + { + "InputBytes" : 30392133, + "FinishTimeMs" : 1726585373591, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332779, + "InputRows" : 3409524, + "ComputeTimeUs" : 1812349, + "InputChannels" : [ + { + "WaitTimeUs" : 41922631, + "ChannelId" : 4633, + "Rows" : 3409524, + "SrcStageId" : 7, + "Bytes" : 30392133 + }, + { + "WaitTimeUs" : 38245363, + "ChannelId" : 145, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 16296, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593045, + "TaskId" : 192 + } + ], + "PeakMemoryUsageBytes" : 14122800, + "DurationUs" : 40812000, + "CpuTimeUs" : 2416920 + }, + { + "Tasks" : [ + { + "InputBytes" : 30367161, + "FinishTimeMs" : 1726585373591, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332908, + "InputRows" : 3406707, + "ComputeTimeUs" : 1804813, + "InputChannels" : [ + { + "WaitTimeUs" : 42191830, + "ChannelId" : 7720, + "Rows" : 3406707, + "SrcStageId" : 7, + "Bytes" : 30367161 + }, + { + "WaitTimeUs" : 38215820, + "ChannelId" : 2088, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 16878, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41588895, + "TaskId" : 199 + } + ], + "PeakMemoryUsageBytes" : 14684992, + "DurationUs" : 40683000, + "CpuTimeUs" : 2241439 + }, + { + "Tasks" : [ + { + "InputBytes" : 30401243, + "FinishTimeMs" : 1726585373591, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332901, + "InputRows" : 3410614, + "ComputeTimeUs" : 1804775, + "InputChannels" : [ + { + "WaitTimeUs" : 41967921, + "ChannelId" : 5984, + "Rows" : 3410614, + "SrcStageId" : 7, + "Bytes" : 30401243 + }, + { + "WaitTimeUs" : 38197219, + "ChannelId" : 176, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 19206, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590454, + "TaskId" : 223 + } + ], + "PeakMemoryUsageBytes" : 13981456, + "DurationUs" : 40690000, + "CpuTimeUs" : 2206434 + }, + { + "Tasks" : [ + { + "InputBytes" : 30377052, + "FinishTimeMs" : 1726585373591, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332845, + "InputRows" : 3407968, + "ComputeTimeUs" : 1811456, + "InputChannels" : [ + { + "WaitTimeUs" : 42204729, + "ChannelId" : 9457, + "Rows" : 3407968, + "SrcStageId" : 7, + "Bytes" : 30377052 + }, + { + "WaitTimeUs" : 38164840, + "ChannelId" : 1537, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 23183, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41592554, + "TaskId" : 264 + } + ], + "PeakMemoryUsageBytes" : 15864640, + "DurationUs" : 40746000, + "CpuTimeUs" : 2390700 + }, + { + "Tasks" : [ + { + "InputBytes" : 30377628, + "FinishTimeMs" : 1726585373592, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332945, + "InputRows" : 3407905, + "ComputeTimeUs" : 1809877, + "InputChannels" : [ + { + "WaitTimeUs" : 41939896, + "ChannelId" : 8107, + "Rows" : 3407905, + "SrcStageId" : 7, + "Bytes" : 30377628 + }, + { + "WaitTimeUs" : 38152448, + "ChannelId" : 1595, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 20273, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589423, + "TaskId" : 234 + } + ], + "PeakMemoryUsageBytes" : 14236512, + "DurationUs" : 40647000, + "CpuTimeUs" : 2266432 + }, + { + "Tasks" : [ + { + "InputBytes" : 30390419, + "FinishTimeMs" : 1726585373593, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332839, + "InputRows" : 3409367, + "ComputeTimeUs" : 1812667, + "InputChannels" : [ + { + "WaitTimeUs" : 41938269, + "ChannelId" : 7721, + "Rows" : 3409367, + "SrcStageId" : 7, + "Bytes" : 30390419 + }, + { + "WaitTimeUs" : 38131053, + "ChannelId" : 2001, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 16975, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591060, + "TaskId" : 200 + } + ], + "PeakMemoryUsageBytes" : 14226240, + "DurationUs" : 40754000, + "CpuTimeUs" : 2266330 + }, + { + "Tasks" : [ + { + "InputBytes" : 30396281, + "FinishTimeMs" : 1726585373594, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332910, + "InputRows" : 3409951, + "ComputeTimeUs" : 1808039, + "InputChannels" : [ + { + "WaitTimeUs" : 41933585, + "ChannelId" : 7528, + "Rows" : 3409951, + "SrcStageId" : 7, + "Bytes" : 30396281 + }, + { + "WaitTimeUs" : 38285721, + "ChannelId" : 928, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 23862, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590077, + "TaskId" : 271 + } + ], + "PeakMemoryUsageBytes" : 15140560, + "DurationUs" : 40684000, + "CpuTimeUs" : 2219044 + }, + { + "Tasks" : [ + { + "InputBytes" : 30383813, + "FinishTimeMs" : 1726585373596, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332939, + "InputRows" : 3408692, + "ComputeTimeUs" : 1810529, + "InputChannels" : [ + { + "WaitTimeUs" : 42192656, + "ChannelId" : 12931, + "Rows" : 3408692, + "SrcStageId" : 7, + "Bytes" : 30383813 + }, + { + "WaitTimeUs" : 38191867, + "ChannelId" : 435, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 18721, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591468, + "TaskId" : 218 + } + ], + "PeakMemoryUsageBytes" : 14440208, + "DurationUs" : 40657000, + "CpuTimeUs" : 2271215 + }, + { + "Tasks" : [ + { + "InputBytes" : 30386612, + "FinishTimeMs" : 1726585373597, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332908, + "InputRows" : 3408927, + "ComputeTimeUs" : 1809010, + "InputChannels" : [ + { + "WaitTimeUs" : 41944835, + "ChannelId" : 9264, + "Rows" : 3408927, + "SrcStageId" : 7, + "Bytes" : 30386612 + }, + { + "WaitTimeUs" : 38151303, + "ChannelId" : 464, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 21534, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591556, + "TaskId" : 247 + } + ], + "PeakMemoryUsageBytes" : 15968080, + "DurationUs" : 40689000, + "CpuTimeUs" : 2249683 + }, + { + "Tasks" : [ + { + "InputBytes" : 30368121, + "FinishTimeMs" : 1726585373597, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332840, + "InputRows" : 3406862, + "ComputeTimeUs" : 1816391, + "InputChannels" : [ + { + "WaitTimeUs" : 41922050, + "ChannelId" : 6370, + "Rows" : 3406862, + "SrcStageId" : 7, + "Bytes" : 30368121 + }, + { + "WaitTimeUs" : 38154043, + "ChannelId" : 2146, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 22504, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593639, + "TaskId" : 257 + } + ], + "PeakMemoryUsageBytes" : 15657760, + "DurationUs" : 40757000, + "CpuTimeUs" : 2405892 + }, + { + "Tasks" : [ + { + "InputBytes" : 30371756, + "FinishTimeMs" : 1726585373597, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332840, + "InputRows" : 3407317, + "ComputeTimeUs" : 1817241, + "InputChannels" : [ + { + "WaitTimeUs" : 41949160, + "ChannelId" : 11001, + "Rows" : 3407317, + "SrcStageId" : 7, + "Bytes" : 30371756 + }, + { + "WaitTimeUs" : 38116741, + "ChannelId" : 177, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 19303, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589787, + "TaskId" : 224 + } + ], + "PeakMemoryUsageBytes" : 14367584, + "DurationUs" : 40757000, + "CpuTimeUs" : 2266865 + }, + { + "Tasks" : [ + { + "InputBytes" : 30367145, + "FinishTimeMs" : 1726585373597, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332905, + "InputRows" : 3406674, + "ComputeTimeUs" : 1812254, + "InputChannels" : [ + { + "WaitTimeUs" : 41952015, + "ChannelId" : 4439, + "Rows" : 3406674, + "SrcStageId" : 7, + "Bytes" : 30367145 + }, + { + "WaitTimeUs" : 38285768, + "ChannelId" : 1711, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 22989, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589302, + "TaskId" : 262 + } + ], + "PeakMemoryUsageBytes" : 15761200, + "DurationUs" : 40692000, + "CpuTimeUs" : 2202016 + }, + { + "Tasks" : [ + { + "InputBytes" : 30400494, + "FinishTimeMs" : 1726585373600, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332885, + "InputRows" : 3410538, + "ComputeTimeUs" : 1813758, + "InputChannels" : [ + { + "WaitTimeUs" : 42202517, + "ChannelId" : 7142, + "Rows" : 3410538, + "SrcStageId" : 7, + "Bytes" : 30400494 + }, + { + "WaitTimeUs" : 38118394, + "ChannelId" : 1334, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 20564, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41598046, + "TaskId" : 237 + } + ], + "PeakMemoryUsageBytes" : 14170976, + "DurationUs" : 40715000, + "CpuTimeUs" : 2339378 + }, + { + "Tasks" : [ + { + "InputBytes" : 30386830, + "FinishTimeMs" : 1726585373599, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332801, + "InputRows" : 3409006, + "ComputeTimeUs" : 1817046, + "InputChannels" : [ + { + "WaitTimeUs" : 42012336, + "ChannelId" : 3667, + "Rows" : 3409006, + "SrcStageId" : 7, + "Bytes" : 30386830 + }, + { + "WaitTimeUs" : 38095179, + "ChannelId" : 147, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 16490, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589874, + "TaskId" : 194 + } + ], + "PeakMemoryUsageBytes" : 14684992, + "DurationUs" : 40798000, + "CpuTimeUs" : 2269245 + }, + { + "Tasks" : [ + { + "InputBytes" : 30367983, + "FinishTimeMs" : 1726585373605, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332906, + "InputRows" : 3406739, + "ComputeTimeUs" : 1823545, + "InputChannels" : [ + { + "WaitTimeUs" : 42193121, + "ChannelId" : 9843, + "Rows" : 3406739, + "SrcStageId" : 7, + "Bytes" : 30367983 + }, + { + "WaitTimeUs" : 38113810, + "ChannelId" : 1131, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 17945, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41588332, + "TaskId" : 210 + } + ], + "PeakMemoryUsageBytes" : 16447376, + "DurationUs" : 40699000, + "CpuTimeUs" : 2290471 + }, + { + "Tasks" : [ + { + "InputBytes" : 30376273, + "FinishTimeMs" : 1726585373606, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332936, + "InputRows" : 3407751, + "ComputeTimeUs" : 1818026, + "InputChannels" : [ + { + "WaitTimeUs" : 41926174, + "ChannelId" : 11966, + "Rows" : 3407751, + "SrcStageId" : 7, + "Bytes" : 30376273 + }, + { + "WaitTimeUs" : 38191710, + "ChannelId" : 174, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 19012, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41598879, + "TaskId" : 221 + } + ], + "PeakMemoryUsageBytes" : 14140160, + "DurationUs" : 40670000, + "CpuTimeUs" : 2354531 + }, + { + "Tasks" : [ + { + "InputBytes" : 30402133, + "FinishTimeMs" : 1726585373606, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332888, + "InputRows" : 3410723, + "ComputeTimeUs" : 1824395, + "InputChannels" : [ + { + "WaitTimeUs" : 41982177, + "ChannelId" : 11194, + "Rows" : 3410723, + "SrcStageId" : 7, + "Bytes" : 30402133 + }, + { + "WaitTimeUs" : 38141671, + "ChannelId" : 986, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 20952, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590136, + "TaskId" : 241 + } + ], + "PeakMemoryUsageBytes" : 15864640, + "DurationUs" : 40718000, + "CpuTimeUs" : 2266148 + }, + { + "Tasks" : [ + { + "InputBytes" : 30370059, + "FinishTimeMs" : 1726585373606, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332859, + "InputRows" : 3407148, + "ComputeTimeUs" : 1824208, + "InputChannels" : [ + { + "WaitTimeUs" : 41991620, + "ChannelId" : 3281, + "Rows" : 3407148, + "SrcStageId" : 7, + "Bytes" : 30370059 + }, + { + "WaitTimeUs" : 38122821, + "ChannelId" : 377, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 21631, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591766, + "TaskId" : 248 + } + ], + "PeakMemoryUsageBytes" : 15450880, + "DurationUs" : 40747000, + "CpuTimeUs" : 2268838 + }, + { + "Tasks" : [ + { + "InputBytes" : 30385491, + "FinishTimeMs" : 1726585373606, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332962, + "InputRows" : 3408814, + "ComputeTimeUs" : 1822512, + "InputChannels" : [ + { + "WaitTimeUs" : 42201228, + "ChannelId" : 5019, + "Rows" : 3408814, + "SrcStageId" : 7, + "Bytes" : 30385491 + }, + { + "WaitTimeUs" : 38243406, + "ChannelId" : 179, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 19497, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590147, + "TaskId" : 226 + } + ], + "PeakMemoryUsageBytes" : 15723296, + "DurationUs" : 40644000, + "CpuTimeUs" : 2273046 + }, + { + "Tasks" : [ + { + "InputBytes" : 30392602, + "FinishTimeMs" : 1726585373608, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332785, + "InputRows" : 3409527, + "ComputeTimeUs" : 1829479, + "InputChannels" : [ + { + "WaitTimeUs" : 41956151, + "ChannelId" : 5018, + "Rows" : 3409527, + "SrcStageId" : 7, + "Bytes" : 30392602 + }, + { + "WaitTimeUs" : 38206771, + "ChannelId" : 178, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 19400, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41592397, + "TaskId" : 225 + } + ], + "PeakMemoryUsageBytes" : 15750928, + "DurationUs" : 40823000, + "CpuTimeUs" : 2456010 + }, + { + "Tasks" : [ + { + "InputBytes" : 30373611, + "FinishTimeMs" : 1726585373611, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585332925, + "InputRows" : 3407489, + "ComputeTimeUs" : 1828189, + "InputChannels" : [ + { + "WaitTimeUs" : 41953879, + "ChannelId" : 7334, + "Rows" : 3407489, + "SrcStageId" : 7, + "Bytes" : 30373611 + }, + { + "WaitTimeUs" : 38138913, + "ChannelId" : 206, + "SrcStageId" : 1 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 22116, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594008, + "TaskId" : 253 + } + ], + "PeakMemoryUsageBytes" : 15244000, + "DurationUs" : 40686000, + "CpuTimeUs" : 2361322 + }, + { + "Tasks" : [ + { + "InputBytes" : 30378979, + "FinishTimeMs" : 1726585373610, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332850, + "InputRows" : 3408160, + "ComputeTimeUs" : 1829039, + "InputChannels" : [ + { + "WaitTimeUs" : 41922028, + "ChannelId" : 6562, + "Rows" : 3408160, + "SrcStageId" : 7, + "Bytes" : 30378979 + }, + { + "WaitTimeUs" : 38166375, + "ChannelId" : 754, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 24056, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593940, + "TaskId" : 273 + } + ], + "PeakMemoryUsageBytes" : 15450880, + "DurationUs" : 40760000, + "CpuTimeUs" : 2401478 + }, + { + "Tasks" : [ + { + "InputBytes" : 30370595, + "FinishTimeMs" : 1726585373610, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585332897, + "InputRows" : 3407189, + "ComputeTimeUs" : 1827945, + "InputChannels" : [ + { + "WaitTimeUs" : 42199325, + "ChannelId" : 3474, + "Rows" : 3407189, + "SrcStageId" : 7, + "Bytes" : 30370595 + }, + { + "WaitTimeUs" : 38203120, + "ChannelId" : 1450, + "SrcStageId" : 1 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 23280, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591886, + "TaskId" : 265 + } + ], + "PeakMemoryUsageBytes" : 15347440, + "DurationUs" : 40713000, + "CpuTimeUs" : 2272282 + }, + { + "Tasks" : [ + { + "InputBytes" : 30389365, + "FinishTimeMs" : 1726585373610, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585332774, + "InputRows" : 3409219, + "ComputeTimeUs" : 1826347, + "InputChannels" : [ + { + "WaitTimeUs" : 41919717, + "ChannelId" : 10036, + "Rows" : 3409219, + "SrcStageId" : 7, + "Bytes" : 30389365 + }, + { + "WaitTimeUs" : 38191046, + "ChannelId" : 2204, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 19594, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589617, + "TaskId" : 227 + } + ], + "PeakMemoryUsageBytes" : 15930176, + "DurationUs" : 40836000, + "CpuTimeUs" : 2314966 + }, + { + "Tasks" : [ + { + "InputBytes" : 30387837, + "FinishTimeMs" : 1726585373617, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333118, + "InputRows" : 3409130, + "ComputeTimeUs" : 1833092, + "InputChannels" : [ + { + "WaitTimeUs" : 42218307, + "ChannelId" : 3088, + "Rows" : 3409130, + "SrcStageId" : 7, + "Bytes" : 30387837 + }, + { + "WaitTimeUs" : 38226416, + "ChannelId" : 1856, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 19982, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41606716, + "TaskId" : 231 + } + ], + "PeakMemoryUsageBytes" : 14271232, + "DurationUs" : 40499000, + "CpuTimeUs" : 2373121 + }, + { + "Tasks" : [ + { + "InputBytes" : 30397800, + "FinishTimeMs" : 1726585373619, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332903, + "InputRows" : 3410162, + "ComputeTimeUs" : 1833625, + "InputChannels" : [ + { + "WaitTimeUs" : 42176475, + "ChannelId" : 10615, + "Rows" : 3410162, + "SrcStageId" : 7, + "Bytes" : 30397800 + }, + { + "WaitTimeUs" : 38248651, + "ChannelId" : 319, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 16102, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41591710, + "TaskId" : 190 + } + ], + "PeakMemoryUsageBytes" : 14188336, + "DurationUs" : 40716000, + "CpuTimeUs" : 2269748 + }, + { + "Tasks" : [ + { + "InputBytes" : 30398537, + "FinishTimeMs" : 1726585373626, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332909, + "InputRows" : 3410351, + "ComputeTimeUs" : 1841491, + "InputChannels" : [ + { + "WaitTimeUs" : 41944369, + "ChannelId" : 5791, + "Rows" : 3410351, + "SrcStageId" : 7, + "Bytes" : 30398537 + }, + { + "WaitTimeUs" : 38236331, + "ChannelId" : 1479, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 17557, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590328, + "TaskId" : 206 + } + ], + "PeakMemoryUsageBytes" : 15930176, + "DurationUs" : 40717000, + "CpuTimeUs" : 2249631 + }, + { + "Tasks" : [ + { + "InputBytes" : 30399905, + "FinishTimeMs" : 1726585373626, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332798, + "InputRows" : 3410519, + "ComputeTimeUs" : 1846491, + "InputChannels" : [ + { + "WaitTimeUs" : 42000522, + "ChannelId" : 7913, + "Rows" : 3410519, + "SrcStageId" : 7, + "Bytes" : 30399905 + }, + { + "WaitTimeUs" : 38245562, + "ChannelId" : 609, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 18527, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41592782, + "TaskId" : 216 + } + ], + "PeakMemoryUsageBytes" : 16126784, + "DurationUs" : 40828000, + "CpuTimeUs" : 2468285 + }, + { + "Tasks" : [ + { + "InputBytes" : 30375974, + "FinishTimeMs" : 1726585373626, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585333025, + "InputRows" : 3407702, + "ComputeTimeUs" : 1843539, + "InputChannels" : [ + { + "WaitTimeUs" : 41941013, + "ChannelId" : 8492, + "Rows" : 3407702, + "SrcStageId" : 7, + "Bytes" : 30375974 + }, + { + "WaitTimeUs" : 38162767, + "ChannelId" : 1276, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 23474, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41588453, + "TaskId" : 267 + } + ], + "PeakMemoryUsageBytes" : 16071520, + "DurationUs" : 40601000, + "CpuTimeUs" : 2328706 + }, + { + "Tasks" : [ + { + "InputBytes" : 30369334, + "FinishTimeMs" : 1726585373631, + "Host" : "ydb-vla-testing-0015.search.yandex.net", + "StartTimeMs" : 1726585332932, + "InputRows" : 3407034, + "ComputeTimeUs" : 1843024, + "InputChannels" : [ + { + "WaitTimeUs" : 42215578, + "ChannelId" : 11387, + "Rows" : 3407034, + "SrcStageId" : 7, + "Bytes" : 30369334 + }, + { + "WaitTimeUs" : 38113087, + "ChannelId" : 2059, + "SrcStageId" : 1 + } + ], + "NodeId" : 50008, + "OutputChannels" : [ + { + "ChannelId" : 22601, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594820, + "TaskId" : 258 + } + ], + "PeakMemoryUsageBytes" : 14319408, + "DurationUs" : 40699000, + "CpuTimeUs" : 2270071 + }, + { + "Tasks" : [ + { + "InputBytes" : 30381969, + "FinishTimeMs" : 1726585373649, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585333017, + "InputRows" : 3408463, + "ComputeTimeUs" : 1865759, + "InputChannels" : [ + { + "WaitTimeUs" : 41954555, + "ChannelId" : 13124, + "Rows" : 3408463, + "SrcStageId" : 7, + "Bytes" : 30381969 + }, + { + "WaitTimeUs" : 38111983, + "ChannelId" : 1508, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 20370, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41588264, + "TaskId" : 235 + } + ], + "PeakMemoryUsageBytes" : 15826736, + "DurationUs" : 40632000, + "CpuTimeUs" : 2368244 + }, + { + "Tasks" : [ + { + "InputBytes" : 30386217, + "FinishTimeMs" : 1726585373650, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333144, + "InputRows" : 3408901, + "ComputeTimeUs" : 1869255, + "InputChannels" : [ + { + "WaitTimeUs" : 42245014, + "ChannelId" : 4632, + "Rows" : 3408901, + "SrcStageId" : 7, + "Bytes" : 30386217 + }, + { + "WaitTimeUs" : 38371301, + "ChannelId" : 232, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 16199, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41604218, + "TaskId" : 191 + } + ], + "PeakMemoryUsageBytes" : 14009088, + "DurationUs" : 40506000, + "CpuTimeUs" : 2421346 + }, + { + "Tasks" : [ + { + "InputBytes" : 30382647, + "FinishTimeMs" : 1726585373651, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585332990, + "InputRows" : 3408568, + "ComputeTimeUs" : 1869284, + "InputChannels" : [ + { + "WaitTimeUs" : 41960368, + "ChannelId" : 11580, + "Rows" : 3408568, + "SrcStageId" : 7, + "Bytes" : 30382647 + }, + { + "WaitTimeUs" : 38161405, + "ChannelId" : 580, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 24250, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41587541, + "TaskId" : 275 + } + ], + "PeakMemoryUsageBytes" : 16174960, + "DurationUs" : 40661000, + "CpuTimeUs" : 2337148 + }, + { + "Tasks" : [ + { + "InputBytes" : 30423729, + "FinishTimeMs" : 1726585373673, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332797, + "InputRows" : 3413078, + "ComputeTimeUs" : 1893580, + "InputChannels" : [ + { + "WaitTimeUs" : 41980880, + "ChannelId" : 8106, + "Rows" : 3413078, + "SrcStageId" : 7, + "Bytes" : 30423729 + }, + { + "WaitTimeUs" : 38309386, + "ChannelId" : 1682, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 20176, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593004, + "TaskId" : 233 + } + ], + "PeakMemoryUsageBytes" : 15826736, + "DurationUs" : 40876000, + "CpuTimeUs" : 2491719 + }, + { + "Tasks" : [ + { + "InputBytes" : 30404872, + "FinishTimeMs" : 1726585373674, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332926, + "InputRows" : 3410973, + "ComputeTimeUs" : 1890597, + "InputChannels" : [ + { + "WaitTimeUs" : 41972305, + "ChannelId" : 13317, + "Rows" : 3410973, + "SrcStageId" : 7, + "Bytes" : 30404872 + }, + { + "WaitTimeUs" : 38200756, + "ChannelId" : 205, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 22019, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594952, + "TaskId" : 252 + } + ], + "PeakMemoryUsageBytes" : 13709040, + "DurationUs" : 40748000, + "CpuTimeUs" : 2401988 + }, + { + "Tasks" : [ + { + "InputBytes" : 30377549, + "FinishTimeMs" : 1726585373675, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332895, + "InputRows" : 3407952, + "ComputeTimeUs" : 1892085, + "InputChannels" : [ + { + "WaitTimeUs" : 41953148, + "ChannelId" : 4053, + "Rows" : 3407952, + "SrcStageId" : 7, + "Bytes" : 30377549 + }, + { + "WaitTimeUs" : 38210062, + "ChannelId" : 2117, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 19691, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594908, + "TaskId" : 228 + } + ], + "PeakMemoryUsageBytes" : 14795520, + "DurationUs" : 40780000, + "CpuTimeUs" : 2417172 + }, + { + "Tasks" : [ + { + "InputBytes" : 30398580, + "FinishTimeMs" : 1726585373676, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332935, + "InputRows" : 3410221, + "ComputeTimeUs" : 1893892, + "InputChannels" : [ + { + "WaitTimeUs" : 41994770, + "ChannelId" : 10229, + "Rows" : 3410221, + "SrcStageId" : 7, + "Bytes" : 30398580 + }, + { + "WaitTimeUs" : 38197337, + "ChannelId" : 725, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 21243, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594800, + "TaskId" : 244 + } + ], + "PeakMemoryUsageBytes" : 15347440, + "DurationUs" : 40741000, + "CpuTimeUs" : 2380705 + }, + { + "Tasks" : [ + { + "InputBytes" : 30382254, + "FinishTimeMs" : 1726585373680, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332908, + "InputRows" : 3408426, + "ComputeTimeUs" : 1896031, + "InputChannels" : [ + { + "WaitTimeUs" : 41959897, + "ChannelId" : 6949, + "Rows" : 3408426, + "SrcStageId" : 7, + "Bytes" : 30382254 + }, + { + "WaitTimeUs" : 38212699, + "ChannelId" : 261, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 18915, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41596173, + "TaskId" : 220 + } + ], + "PeakMemoryUsageBytes" : 14964496, + "DurationUs" : 40772000, + "CpuTimeUs" : 2402629 + }, + { + "Tasks" : [ + { + "InputBytes" : 30397399, + "FinishTimeMs" : 1726585373681, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332905, + "InputRows" : 3410119, + "ComputeTimeUs" : 1896783, + "InputChannels" : [ + { + "WaitTimeUs" : 42022654, + "ChannelId" : 9071, + "Rows" : 3410119, + "SrcStageId" : 7, + "Bytes" : 30397399 + }, + { + "WaitTimeUs" : 38286214, + "ChannelId" : 1943, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 19885, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41590145, + "TaskId" : 230 + } + ], + "PeakMemoryUsageBytes" : 16033616, + "DurationUs" : 40776000, + "CpuTimeUs" : 2301699 + }, + { + "Tasks" : [ + { + "InputBytes" : 30406984, + "FinishTimeMs" : 1726585373684, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332891, + "InputRows" : 3411244, + "ComputeTimeUs" : 1902051, + "InputChannels" : [ + { + "WaitTimeUs" : 41970309, + "ChannelId" : 2509, + "Rows" : 3411244, + "SrcStageId" : 7, + "Bytes" : 30406984 + }, + { + "WaitTimeUs" : 38170053, + "ChannelId" : 1189, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 23571, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593889, + "TaskId" : 268 + } + ], + "PeakMemoryUsageBytes" : 15705936, + "DurationUs" : 40793000, + "CpuTimeUs" : 2410911 + }, + { + "Tasks" : [ + { + "InputBytes" : 30392592, + "FinishTimeMs" : 1726585373690, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332893, + "InputRows" : 3409720, + "ComputeTimeUs" : 1908731, + "InputChannels" : [ + { + "WaitTimeUs" : 41978210, + "ChannelId" : 5597, + "Rows" : 3409720, + "SrcStageId" : 7, + "Bytes" : 30392592 + }, + { + "WaitTimeUs" : 38239619, + "ChannelId" : 493, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 15908, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41594743, + "TaskId" : 188 + } + ], + "PeakMemoryUsageBytes" : 13898560, + "DurationUs" : 40797000, + "CpuTimeUs" : 2428603 + }, + { + "Tasks" : [ + { + "InputBytes" : 30414520, + "FinishTimeMs" : 1726585373695, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332919, + "InputRows" : 3412153, + "ComputeTimeUs" : 1912453, + "InputChannels" : [ + { + "WaitTimeUs" : 41969834, + "ChannelId" : 3861, + "Rows" : 3412153, + "SrcStageId" : 7, + "Bytes" : 30414520 + }, + { + "WaitTimeUs" : 38192432, + "ChannelId" : 957, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 18139, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41595736, + "TaskId" : 212 + } + ], + "PeakMemoryUsageBytes" : 15274816, + "DurationUs" : 40776000, + "CpuTimeUs" : 2425576 + }, + { + "Tasks" : [ + { + "InputBytes" : 30382951, + "FinishTimeMs" : 1726585373705, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332798, + "InputRows" : 3408630, + "ComputeTimeUs" : 1923605, + "InputChannels" : [ + { + "WaitTimeUs" : 42040387, + "ChannelId" : 5405, + "Rows" : 3408630, + "SrcStageId" : 7, + "Bytes" : 30382951 + }, + { + "WaitTimeUs" : 38252107, + "ChannelId" : 1885, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 22795, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41593562, + "TaskId" : 260 + } + ], + "PeakMemoryUsageBytes" : 16071520, + "DurationUs" : 40907000, + "CpuTimeUs" : 2429865 + }, + { + "Tasks" : [ + { + "InputBytes" : 30391581, + "FinishTimeMs" : 1726585373714, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332933, + "InputRows" : 3409433, + "ComputeTimeUs" : 1930953, + "InputChannels" : [ + { + "WaitTimeUs" : 41985190, + "ChannelId" : 7141, + "Rows" : 3409433, + "SrcStageId" : 7, + "Bytes" : 30391581 + }, + { + "WaitTimeUs" : 38100828, + "ChannelId" : 1421, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 20467, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41595742, + "TaskId" : 236 + } + ], + "PeakMemoryUsageBytes" : 13964096, + "DurationUs" : 40781000, + "CpuTimeUs" : 2442618 + }, + { + "Tasks" : [ + { + "InputBytes" : 30395717, + "FinishTimeMs" : 1726585373718, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332892, + "InputRows" : 3410012, + "ComputeTimeUs" : 1934519, + "InputChannels" : [ + { + "WaitTimeUs" : 41975970, + "ChannelId" : 8685, + "Rows" : 3410012, + "SrcStageId" : 7, + "Bytes" : 30395717 + }, + { + "WaitTimeUs" : 38228598, + "ChannelId" : 149, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 16684, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41596534, + "TaskId" : 196 + } + ], + "PeakMemoryUsageBytes" : 14936864, + "DurationUs" : 40826000, + "CpuTimeUs" : 2458189 + }, + { + "Tasks" : [ + { + "InputBytes" : 30406261, + "FinishTimeMs" : 1726585373734, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585332917, + "InputRows" : 3411229, + "ComputeTimeUs" : 1945016, + "InputChannels" : [ + { + "WaitTimeUs" : 42003938, + "ChannelId" : 11773, + "Rows" : 3411229, + "SrcStageId" : 7, + "Bytes" : 30406261 + }, + { + "WaitTimeUs" : 38210426, + "ChannelId" : 1653, + "SrcStageId" : 1 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 17363, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41601376, + "TaskId" : 204 + } + ], + "PeakMemoryUsageBytes" : 15657760, + "DurationUs" : 40817000, + "CpuTimeUs" : 2472221 + }, + { + "Tasks" : [ + { + "InputBytes" : 30351898, + "FinishTimeMs" : 1726585373735, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585333161, + "InputRows" : 3405070, + "ComputeTimeUs" : 1953477, + "InputChannels" : [ + { + "WaitTimeUs" : 42286847, + "ChannelId" : 12352, + "Rows" : 3405070, + "SrcStageId" : 7, + "Bytes" : 30351898 + }, + { + "WaitTimeUs" : 38398607, + "ChannelId" : 208, + "SrcStageId" : 1 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 22310, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41603601, + "TaskId" : 255 + } + ], + "PeakMemoryUsageBytes" : 16050976, + "DurationUs" : 40574000, + "CpuTimeUs" : 2497457 + }, + { + "Tasks" : [ + { + "InputBytes" : 30374799, + "FinishTimeMs" : 1726585373759, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585332906, + "InputRows" : 3407630, + "ComputeTimeUs" : 1975226, + "InputChannels" : [ + { + "WaitTimeUs" : 42042256, + "ChannelId" : 7335, + "Rows" : 3407630, + "SrcStageId" : 7, + "Bytes" : 30374799 + }, + { + "WaitTimeUs" : 38172105, + "ChannelId" : 207, + "SrcStageId" : 1 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 22213, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41589080, + "TaskId" : 254 + } + ], + "PeakMemoryUsageBytes" : 15178464, + "DurationUs" : 40853000, + "CpuTimeUs" : 2384637 + }, + { + "Tasks" : [ + { + "InputBytes" : 30371655, + "FinishTimeMs" : 1726585373891, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585332758, + "InputRows" : 3407278, + "ComputeTimeUs" : 2112675, + "InputChannels" : [ + { + "WaitTimeUs" : 42120424, + "ChannelId" : 12738, + "Rows" : 3407278, + "SrcStageId" : 7, + "Bytes" : 30371655 + }, + { + "WaitTimeUs" : 38154705, + "ChannelId" : 1914, + "SrcStageId" : 1 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 17072, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41592258, + "TaskId" : 201 + } + ], + "PeakMemoryUsageBytes" : 15647488, + "DurationUs" : 41133000, + "CpuTimeUs" : 2725023 + }, + { + "Tasks" : [ + { + "InputBytes" : 30382771, + "FinishTimeMs" : 1726585373899, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585333012, + "InputRows" : 3408530, + "ComputeTimeUs" : 2118533, + "InputChannels" : [ + { + "WaitTimeUs" : 42119900, + "ChannelId" : 6756, + "Rows" : 3408530, + "SrcStageId" : 7, + "Bytes" : 30382771 + }, + { + "WaitTimeUs" : 38093969, + "ChannelId" : 1740, + "SrcStageId" : 1 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 17266, + "DstStageId" : 9 + } + ], + "WaitInputTimeUs" : 41587825, + "TaskId" : 203 + } + ], + "PeakMemoryUsageBytes" : 14095168, + "DurationUs" : 40887000, + "CpuTimeUs" : 2602037 + } + ], + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { }, + "Name" : "26", + "Push" : { + "WaitTimeUs" : { + "Count" : 88, + "Sum" : 3785352560, + "Max" : 43361151, + "Min" : 42819081 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 88, + "Sum" : 1568669696, + "Max" : 17825792, + "Min" : 17825792 + }, + "DurationUs" : { + "Count" : 88, + "Sum" : 3581513000, + "Max" : 41133000, + "Min" : 40414000 + }, + "InputBytes" : { + "Count" : 88, + "Sum" : 2673896773, + "Max" : 30423729, + "Min" : 30345162 + }, + "Tasks" : 88, + "InputRows" : { + "Count" : 88, + "Sum" : 299974711, + "Max" : 3413078, + "Min" : 3404318 + }, + "PhysicalStageId" : 8, + "StageDurationUs" : 41141000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 88, + "Sum" : 3660237410, + "Max" : 41606716, + "Min" : 41587207 + }, + "CpuTimeUs" : { + "Count" : 88, + "Sum" : 161192354, + "Max" : 2118704, + "Min" : 1753431 + }, + "Input" : [ + { + "Pop" : { }, + "Name" : "20", + "Push" : { + "WaitTimeUs" : { + "Count" : 88, + "Sum" : 3360840502, + "Max" : 38468056, + "Min" : 38093969 + } + } + }, + { + "Pop" : { + "LastMessageMs" : { + "Count" : 88, + "Sum" : 3822047, + "Max" : 43717, + "Min" : 43355 + }, + "Rows" : { + "Count" : 88, + "Sum" : 299974711, + "Max" : 3413078, + "Min" : 3404318 + }, + "Chunks" : { + "Count" : 88, + "Sum" : 22682, + "Max" : 258, + "Min" : 257 + }, + "FirstMessageMs" : { + "Count" : 88, + "Sum" : 241610, + "Max" : 2991, + "Min" : 2588 + }, + "ActiveMessageMs" : { + "Count" : 88, + "Max" : 43717, + "Min" : 2588 + }, + "Bytes" : { + "Count" : 88, + "Sum" : 2673896773, + "Max" : 30423729, + "Min" : 30345162 + }, + "ActiveTimeUs" : { + "Count" : 88, + "Sum" : 3580437000, + "Max" : 41126000, + "Min" : 40404000 + }, + "WaitPeriods" : { + "Count" : 88, + "Sum" : 22466, + "Max" : 256, + "Min" : 253 + } + }, + "Name" : "18", + "Push" : { + "Rows" : { + "Count" : 88, + "Sum" : 299974711, + "Max" : 3413078, + "Min" : 3404318 + }, + "LastMessageMs" : { + "Count" : 88, + "Sum" : 3822047, + "Max" : 43717, + "Min" : 43355 + }, + "Chunks" : { + "Count" : 88, + "Sum" : 194598, + "Max" : 2227, + "Min" : 2200 + }, + "ResumeMessageMs" : { + "Count" : 88, + "Sum" : 3822047, + "Max" : 43717, + "Min" : 43355 + }, + "FirstMessageMs" : { + "Count" : 88, + "Sum" : 241610, + "Max" : 2991, + "Min" : 2588 + }, + "ActiveMessageMs" : { + "Count" : 88, + "Max" : 43717, + "Min" : 2588 + }, + "Bytes" : { + "Count" : 88, + "Sum" : 2673896773, + "Max" : 30423729, + "Min" : 30345162 + }, + "PauseMessageMs" : { + "Count" : 88, + "Sum" : 55227, + "Max" : 696, + "Min" : 620 + }, + "ActiveTimeUs" : { + "Count" : 88, + "Sum" : 3580437000, + "Max" : 41126000, + "Min" : 40404000 + }, + "WaitTimeUs" : { + "Count" : 88, + "Sum" : 3698297345, + "Max" : 42286847, + "Min" : 41905326 + }, + "WaitPeriods" : { + "Count" : 88, + "Sum" : 22522, + "Max" : 256, + "Min" : 255 + }, + "WaitMessageMs" : { + "Count" : 88, + "Max" : 43717, + "Min" : 620 + } + } + } + ] + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "o.o_orderkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 25, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/lineitem" + ], + "PlanNodeId" : 24, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3.909325428e+12", + "ReadRanges" : [ + "l_orderkey (-∞, +∞)", + "l_linenumber (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "5.999999427e+10", + "Table" : "column/tpch10000/lineitem", + "ReadColumns" : [ + "l_discount", + "l_extendedprice", + "l_orderkey", + "l_partkey", + "l_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 7 + }, + { + "Id" : 8 + }, + { + "Id" : 15 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379274, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "WaitOutputTimeUs" : 36821413, + "OutputRows" : 15818, + "StartTimeMs" : 1726585330170, + "ComputeTimeUs" : 1191209, + "NodeId" : 50002, + "OutputChannels" : [ + { + "WaitTimeUs" : 524799, + "ChannelId" : 14065, + "Rows" : 15818, + "DstStageId" : 9, + "Bytes" : 383162862 + } + ], + "WaitInputTimeUs" : 11090515, + "TaskId" : 6, + "OutputBytes" : 383162862 + } + ], + "PeakMemoryUsageBytes" : 32898688, + "DurationUs" : 49104000, + "CpuTimeUs" : 1500299 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "WaitOutputTimeUs" : 42455885, + "OutputRows" : 15873, + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 1160401, + "NodeId" : 50006, + "OutputChannels" : [ + { + "WaitTimeUs" : 475182, + "ChannelId" : 15229, + "Rows" : 15873, + "DstStageId" : 9, + "Bytes" : 386401387 + } + ], + "WaitInputTimeUs" : 5298258, + "TaskId" : 18, + "OutputBytes" : 386401387 + } + ], + "PeakMemoryUsageBytes" : 32964224, + "DurationUs" : 49091000, + "CpuTimeUs" : 1465667 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379274, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "WaitOutputTimeUs" : 36248888, + "OutputRows" : 15561, + "StartTimeMs" : 1726585330179, + "ComputeTimeUs" : 1165325, + "NodeId" : 50005, + "OutputChannels" : [ + { + "WaitTimeUs" : 1037200, + "ChannelId" : 14841, + "Rows" : 15561, + "DstStageId" : 9, + "Bytes" : 379933379 + } + ], + "WaitInputTimeUs" : 11666697, + "TaskId" : 14, + "OutputBytes" : 379933379 + } + ], + "PeakMemoryUsageBytes" : 32964224, + "DurationUs" : 49095000, + "CpuTimeUs" : 1481226 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "WaitOutputTimeUs" : 43058265, + "OutputRows" : 15692, + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 1197729, + "NodeId" : 50007, + "OutputChannels" : [ + { + "WaitTimeUs" : 840531, + "ChannelId" : 15326, + "Rows" : 15692, + "DstStageId" : 9, + "Bytes" : 383793908 + } + ], + "WaitInputTimeUs" : 4536992, + "TaskId" : 19, + "OutputBytes" : 383793908 + } + ], + "PeakMemoryUsageBytes" : 30932608, + "DurationUs" : 49087000, + "CpuTimeUs" : 1488153 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "WaitOutputTimeUs" : 41438307, + "OutputRows" : 15792, + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 1185268, + "NodeId" : 50007, + "OutputChannels" : [ + { + "WaitTimeUs" : 432276, + "ChannelId" : 15520, + "Rows" : 15792, + "DstStageId" : 9, + "Bytes" : 383199008 + } + ], + "WaitInputTimeUs" : 6159039, + "TaskId" : 21, + "OutputBytes" : 383199008 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49087000, + "CpuTimeUs" : 1475667 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "WaitOutputTimeUs" : 42390259, + "OutputRows" : 15945, + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 1194755, + "NodeId" : 50007, + "OutputChannels" : [ + { + "WaitTimeUs" : 824848, + "ChannelId" : 15423, + "Rows" : 15945, + "DstStageId" : 9, + "Bytes" : 387925195 + } + ], + "WaitInputTimeUs" : 5194510, + "TaskId" : 20, + "OutputBytes" : 387925195 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49087000, + "CpuTimeUs" : 1482649 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379278, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "WaitOutputTimeUs" : 44266887, + "OutputRows" : 15848, + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 1242449, + "NodeId" : 50003, + "OutputChannels" : [ + { + "WaitTimeUs" : 614283, + "ChannelId" : 14259, + "Rows" : 15848, + "DstStageId" : 9, + "Bytes" : 386857352 + } + ], + "WaitInputTimeUs" : 3471662, + "TaskId" : 8, + "OutputBytes" : 386857352 + } + ], + "PeakMemoryUsageBytes" : 30932608, + "DurationUs" : 49097000, + "CpuTimeUs" : 1562338 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "WaitOutputTimeUs" : 35095646, + "OutputRows" : 15259, + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 1277551, + "NodeId" : 50004, + "OutputChannels" : [ + { + "WaitTimeUs" : 371144, + "ChannelId" : 14550, + "Rows" : 15259, + "DstStageId" : 9, + "Bytes" : 371507281 + } + ], + "WaitInputTimeUs" : 12692331, + "TaskId" : 11, + "OutputBytes" : 371507281 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49094000, + "CpuTimeUs" : 1565084 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "WaitOutputTimeUs" : 44677790, + "OutputRows" : 14712, + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 1196017, + "NodeId" : 50004, + "OutputChannels" : [ + { + "WaitTimeUs" : 424039, + "ChannelId" : 14453, + "Rows" : 14712, + "DstStageId" : 9, + "Bytes" : 357900768 + } + ], + "WaitInputTimeUs" : 3176352, + "TaskId" : 10, + "OutputBytes" : 357900768 + } + ], + "PeakMemoryUsageBytes" : 30932608, + "DurationUs" : 49094000, + "CpuTimeUs" : 1473153 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379274, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "WaitOutputTimeUs" : 40468356, + "OutputRows" : 15620, + "StartTimeMs" : 1726585330179, + "ComputeTimeUs" : 1137806, + "NodeId" : 50005, + "OutputChannels" : [ + { + "WaitTimeUs" : 838997, + "ChannelId" : 14744, + "Rows" : 15620, + "DstStageId" : 9, + "Bytes" : 380436820 + } + ], + "WaitInputTimeUs" : 7477535, + "TaskId" : 13, + "OutputBytes" : 380436820 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49095000, + "CpuTimeUs" : 1458512 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379274, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "WaitOutputTimeUs" : 43234777, + "OutputRows" : 15846, + "StartTimeMs" : 1726585330170, + "ComputeTimeUs" : 1189954, + "NodeId" : 50002, + "OutputChannels" : [ + { + "WaitTimeUs" : 410071, + "ChannelId" : 13871, + "Rows" : 15846, + "DstStageId" : 9, + "Bytes" : 383821154 + } + ], + "WaitInputTimeUs" : 4768880, + "TaskId" : 4, + "OutputBytes" : 383821154 + } + ], + "PeakMemoryUsageBytes" : 32898688, + "DurationUs" : 49104000, + "CpuTimeUs" : 1493539 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379165, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "WaitOutputTimeUs" : 44744604, + "OutputRows" : 15804, + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 1260879, + "NodeId" : 50001, + "OutputChannels" : [ + { + "WaitTimeUs" : 1688736, + "ChannelId" : 13774, + "Rows" : 15804, + "DstStageId" : 9, + "Bytes" : 385737036 + } + ], + "WaitInputTimeUs" : 2725960, + "TaskId" : 3, + "OutputBytes" : 385737036 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 48978000, + "CpuTimeUs" : 1557163 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379340, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "WaitOutputTimeUs" : 45607023, + "OutputRows" : 15851, + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 1252745, + "NodeId" : 50001, + "OutputChannels" : [ + { + "WaitTimeUs" : 473429, + "ChannelId" : 13677, + "Rows" : 15851, + "DstStageId" : 9, + "Bytes" : 384079289 + } + ], + "WaitInputTimeUs" : 1884453, + "TaskId" : 2, + "OutputBytes" : 384079289 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49153000, + "CpuTimeUs" : 1552969 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379274, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "WaitOutputTimeUs" : 35162212, + "OutputRows" : 15905, + "StartTimeMs" : 1726585330179, + "ComputeTimeUs" : 1175412, + "NodeId" : 50005, + "OutputChannels" : [ + { + "WaitTimeUs" : 401235, + "ChannelId" : 14938, + "Rows" : 15905, + "DstStageId" : 9, + "Bytes" : 386929195 + } + ], + "WaitInputTimeUs" : 12743819, + "TaskId" : 15, + "OutputBytes" : 386929195 + } + ], + "PeakMemoryUsageBytes" : 32964224, + "DurationUs" : 49095000, + "CpuTimeUs" : 1499806 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379340, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "WaitOutputTimeUs" : 45244980, + "OutputRows" : 15831, + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 1256697, + "NodeId" : 50001, + "OutputChannels" : [ + { + "WaitTimeUs" : 470523, + "ChannelId" : 13580, + "Rows" : 15831, + "DstStageId" : 9, + "Bytes" : 384296669 + } + ], + "WaitInputTimeUs" : 2251622, + "TaskId" : 1, + "OutputBytes" : 384296669 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49153000, + "CpuTimeUs" : 1551796 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "WaitOutputTimeUs" : 44655725, + "OutputRows" : 15604, + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 1127339, + "NodeId" : 50006, + "OutputChannels" : [ + { + "WaitTimeUs" : 572183, + "ChannelId" : 15035, + "Rows" : 15604, + "DstStageId" : 9, + "Bytes" : 379338836 + } + ], + "WaitInputTimeUs" : 3186032, + "TaskId" : 16, + "OutputBytes" : 379338836 + } + ], + "PeakMemoryUsageBytes" : 30932608, + "DurationUs" : 49092000, + "CpuTimeUs" : 1419606 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "WaitOutputTimeUs" : 34711357, + "OutputRows" : 15754, + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 1297828, + "NodeId" : 50004, + "OutputChannels" : [ + { + "WaitTimeUs" : 448175, + "ChannelId" : 14647, + "Rows" : 15754, + "DstStageId" : 9, + "Bytes" : 384895006 + } + ], + "WaitInputTimeUs" : 13056488, + "TaskId" : 12, + "OutputBytes" : 384895006 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49094000, + "CpuTimeUs" : 1572097 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379278, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "WaitOutputTimeUs" : 45074813, + "OutputRows" : 15679, + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 1237258, + "NodeId" : 50003, + "OutputChannels" : [ + { + "WaitTimeUs" : 498154, + "ChannelId" : 14162, + "Rows" : 15679, + "DstStageId" : 9, + "Bytes" : 383228061 + } + ], + "WaitInputTimeUs" : 2661832, + "TaskId" : 7, + "OutputBytes" : 383228061 + } + ], + "PeakMemoryUsageBytes" : 30932608, + "DurationUs" : 49097000, + "CpuTimeUs" : 1567792 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379275, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "WaitOutputTimeUs" : 43574490, + "OutputRows" : 15720, + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 1146392, + "NodeId" : 50006, + "OutputChannels" : [ + { + "WaitTimeUs" : 453277, + "ChannelId" : 15132, + "Rows" : 15720, + "DstStageId" : 9, + "Bytes" : 383606080 + } + ], + "WaitInputTimeUs" : 4247893, + "TaskId" : 17, + "OutputBytes" : 383606080 + } + ], + "PeakMemoryUsageBytes" : 30932608, + "DurationUs" : 49091000, + "CpuTimeUs" : 1447294 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379278, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "WaitOutputTimeUs" : 43375423, + "OutputRows" : 15729, + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 1245998, + "NodeId" : 50003, + "OutputChannels" : [ + { + "WaitTimeUs" : 447136, + "ChannelId" : 14356, + "Rows" : 15729, + "DstStageId" : 9, + "Bytes" : 383221371 + } + ], + "WaitInputTimeUs" : 4389815, + "TaskId" : 9, + "OutputBytes" : 383221371 + } + ], + "PeakMemoryUsageBytes" : 30998144, + "DurationUs" : 49097000, + "CpuTimeUs" : 1571397 + }, + { + "Tasks" : [ + { + "FinishTimeMs" : 1726585379274, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "WaitOutputTimeUs" : 37719261, + "OutputRows" : 15842, + "StartTimeMs" : 1726585330170, + "ComputeTimeUs" : 1190721, + "NodeId" : 50002, + "OutputChannels" : [ + { + "WaitTimeUs" : 393461, + "ChannelId" : 13968, + "Rows" : 15842, + "DstStageId" : 9, + "Bytes" : 386867398 + } + ], + "WaitInputTimeUs" : 10193272, + "TaskId" : 5, + "OutputBytes" : 386867398 + } + ], + "PeakMemoryUsageBytes" : 32898688, + "DurationUs" : 49104000, + "CpuTimeUs" : 1490417 + } + ], + "UseLlvm" : "undefined", + "DurationUs" : { + "Count" : 21, + "Sum" : 1030989000, + "Max" : 49153000, + "Min" : 48978000 + }, + "Output" : [ + { + "Pop" : { + "Rows" : { + "Count" : 21, + "Sum" : 329685, + "Max" : 15945, + "Min" : 14712 + }, + "LastMessageMs" : { + "Count" : 21, + "Sum" : 1031228, + "Max" : 49170, + "Min" : 48995 + }, + "Chunks" : { + "Count" : 21, + "Sum" : 4432, + "Max" : 241, + "Min" : 204 + }, + "ResumeMessageMs" : { + "Count" : 21, + "Sum" : 1012476, + "Max" : 49105, + "Min" : 44496 + }, + "FirstMessageMs" : { + "Count" : 21, + "Sum" : 47620, + "Max" : 3324, + "Min" : 1514 + }, + "ActiveMessageMs" : { + "Count" : 21, + "Max" : 49170, + "Min" : 1514 + }, + "Bytes" : { + "Count" : 21, + "Sum" : 8027138055, + "Max" : 387925195, + "Min" : 357900768 + }, + "PauseMessageMs" : { + "Count" : 21, + "Sum" : 148500, + "Max" : 13694, + "Min" : 2943 + }, + "ActiveTimeUs" : { + "Count" : 21, + "Sum" : 983608000, + "Max" : 47656000, + "Min" : 45780000 + }, + "WaitTimeUs" : { + "Count" : 21, + "Sum" : 12639679, + "Max" : 1688736, + "Min" : 371144 + }, + "WaitPeriods" : { + "Count" : 21, + "Sum" : 139, + "Max" : 11, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 21, + "Max" : 49105, + "Min" : 2943 + } + }, + "Name" : "26", + "Push" : { + "Rows" : { + "Count" : 21, + "Sum" : 355608, + "Max" : 17496, + "Min" : 16704 + }, + "LastMessageMs" : { + "Count" : 21, + "Sum" : 999006, + "Max" : 49112, + "Min" : 44884 + }, + "Chunks" : { + "Count" : 21, + "Sum" : 355608, + "Max" : 17496, + "Min" : 16704 + }, + "ResumeMessageMs" : { + "Count" : 21, + "Sum" : 996657, + "Max" : 49109, + "Min" : 44295 + }, + "FirstMessageMs" : { + "Count" : 21, + "Sum" : 46966, + "Max" : 3304, + "Min" : 1486 + }, + "ActiveMessageMs" : { + "Count" : 21, + "Max" : 49112, + "Min" : 1486 + }, + "Bytes" : { + "Count" : 21, + "Sum" : 6388990934, + "Max" : 307809643, + "Min" : 301616306 + }, + "PauseMessageMs" : { + "Count" : 21, + "Sum" : 13181, + "Max" : 662, + "Min" : 621 + }, + "ActiveTimeUs" : { + "Count" : 21, + "Sum" : 952040000, + "Max" : 47103000, + "Min" : 42559000 + }, + "WaitTimeUs" : { + "Count" : 21, + "Sum" : 781291071, + "Max" : 37738030, + "Min" : 36912954 + }, + "WaitPeriods" : { + "Count" : 21, + "Sum" : 1905, + "Max" : 135, + "Min" : 73 + }, + "WaitMessageMs" : { + "Count" : 21, + "Max" : 49109, + "Min" : 621 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 21, + "Sum" : 726663168, + "Max" : 34603008, + "Min" : 34603008 + }, + "WaitOutputTimeUs" : { + "Count" : 21, + "Sum" : 870026361, + "Max" : 45607023, + "Min" : 34711357 + }, + "Tasks" : 21, + "OutputRows" : { + "Count" : 21, + "Sum" : 329685, + "Max" : 15945, + "Min" : 14712 + }, + "PhysicalStageId" : 0, + "StageDurationUs" : 49170000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 21, + "Sum" : 132873957, + "Max" : 13056488, + "Min" : 1884453 + }, + "CpuTimeUs" : { + "Count" : 21, + "Sum" : 25357784, + "Max" : 1299182, + "Min" : 1128482 + }, + "OutputBytes" : { + "Count" : 21, + "Sum" : 8027138055, + "Max" : 387925195, + "Min" : 357900768 + } + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "l_orderkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 25 + }, + { + "ExternalPlanNodeId" : 23 + } + ], + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_orderkey = o.o_orderkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.439999894e+11" + } + ], + "Node Type" : "InnerJoin (Grace)", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "InputBytes" : 343992074, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330935, + "InputRows" : 14126, + "ComputeTimeUs" : 8547176, + "InputChannels" : [ + { + "WaitTimeUs" : 48281403, + "ChannelId" : 13804, + "Rows" : 14126, + "SrcStageId" : 0, + "Bytes" : 343992074 + }, + { + "WaitTimeUs" : 43420108, + "ChannelId" : 16684, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 33465, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43769291, + "TaskId" : 371 + } + ], + "PeakMemoryUsageBytes" : 22230592, + "CpuTimeUs" : 8761682 + }, + { + "Tasks" : [ + { + "InputBytes" : 390563303, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330550, + "InputRows" : 16037, + "ComputeTimeUs" : 8810856, + "InputChannels" : [ + { + "WaitTimeUs" : 49225957, + "ChannelId" : 15080, + "Rows" : 16037, + "SrcStageId" : 0, + "Bytes" : 390563303 + }, + { + "WaitTimeUs" : 43430636, + "ChannelId" : 19400, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 26869, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43782294, + "TaskId" : 303 + } + ], + "PeakMemoryUsageBytes" : 22239232, + "CpuTimeUs" : 9128448 + }, + { + "Tasks" : [ + { + "InputBytes" : 357980254, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 14706, + "ComputeTimeUs" : 8799179, + "InputChannels" : [ + { + "WaitTimeUs" : 49560583, + "ChannelId" : 15370, + "Rows" : 14706, + "SrcStageId" : 0, + "Bytes" : 357980254 + }, + { + "WaitTimeUs" : 43430040, + "ChannelId" : 19594, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 27063, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43808442, + "TaskId" : 305 + } + ], + "PeakMemoryUsageBytes" : 22237504, + "CpuTimeUs" : 9105138 + }, + { + "Tasks" : [ + { + "InputBytes" : 392204423, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330554, + "InputRows" : 16117, + "ComputeTimeUs" : 8915172, + "InputChannels" : [ + { + "WaitTimeUs" : 49413265, + "ChannelId" : 14181, + "Rows" : 16117, + "SrcStageId" : 0, + "Bytes" : 392204423 + }, + { + "WaitTimeUs" : 43427756, + "ChannelId" : 16005, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 32786, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43781439, + "TaskId" : 364 + } + ], + "PeakMemoryUsageBytes" : 22237312, + "CpuTimeUs" : 9184372 + }, + { + "Tasks" : [ + { + "InputBytes" : 390470905, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330547, + "InputRows" : 16035, + "ComputeTimeUs" : 8953947, + "InputChannels" : [ + { + "WaitTimeUs" : 49157738, + "ChannelId" : 13862, + "Rows" : 16035, + "SrcStageId" : 0, + "Bytes" : 390470905 + }, + { + "WaitTimeUs" : 43427392, + "ChannelId" : 22310, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 29779, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43781797, + "TaskId" : 333 + } + ], + "PeakMemoryUsageBytes" : 22244288, + "CpuTimeUs" : 9249310 + }, + { + "Tasks" : [ + { + "InputBytes" : 393030467, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330592, + "InputRows" : 16113, + "ComputeTimeUs" : 8964780, + "InputChannels" : [ + { + "WaitTimeUs" : 49666557, + "ChannelId" : 15689, + "Rows" : 16113, + "SrcStageId" : 0, + "Bytes" : 393030467 + }, + { + "WaitTimeUs" : 43429403, + "ChannelId" : 22601, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 30070, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43779264, + "TaskId" : 336 + } + ], + "PeakMemoryUsageBytes" : 22242752, + "CpuTimeUs" : 9265804 + }, + { + "Tasks" : [ + { + "InputBytes" : 363758334, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330577, + "InputRows" : 14946, + "ComputeTimeUs" : 8886074, + "InputChannels" : [ + { + "WaitTimeUs" : 50212891, + "ChannelId" : 14442, + "Rows" : 14946, + "SrcStageId" : 0, + "Bytes" : 363758334 + }, + { + "WaitTimeUs" : 43424869, + "ChannelId" : 22698, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 30167, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43856291, + "TaskId" : 337 + } + ], + "PeakMemoryUsageBytes" : 22230976, + "CpuTimeUs" : 9144305 + }, + { + "Tasks" : [ + { + "InputBytes" : 398860818, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330782, + "InputRows" : 16382, + "ComputeTimeUs" : 8947577, + "InputChannels" : [ + { + "WaitTimeUs" : 50128839, + "ChannelId" : 15660, + "Rows" : 16382, + "SrcStageId" : 0, + "Bytes" : 398860818 + }, + { + "WaitTimeUs" : 43421061, + "ChannelId" : 19788, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 27257, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43861819, + "TaskId" : 307 + } + ], + "PeakMemoryUsageBytes" : 22236672, + "CpuTimeUs" : 9171688 + }, + { + "Tasks" : [ + { + "InputBytes" : 392709059, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330552, + "InputRows" : 16121, + "ComputeTimeUs" : 9037625, + "InputChannels" : [ + { + "WaitTimeUs" : 49616494, + "ChannelId" : 14762, + "Rows" : 16121, + "SrcStageId" : 0, + "Bytes" : 392709059 + }, + { + "WaitTimeUs" : 43429173, + "ChannelId" : 16490, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 33271, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43790163, + "TaskId" : 369 + } + ], + "PeakMemoryUsageBytes" : 22222528, + "CpuTimeUs" : 9341868 + }, + { + "Tasks" : [ + { + "InputBytes" : 390125164, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330588, + "InputRows" : 16036, + "ComputeTimeUs" : 9077701, + "InputChannels" : [ + { + "WaitTimeUs" : 49883789, + "ChannelId" : 14761, + "Rows" : 16036, + "SrcStageId" : 0, + "Bytes" : 390125164 + }, + { + "WaitTimeUs" : 43424491, + "ChannelId" : 16393, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 33174, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43767954, + "TaskId" : 368 + } + ], + "PeakMemoryUsageBytes" : 22226688, + "CpuTimeUs" : 9339912 + }, + { + "Tasks" : [ + { + "InputBytes" : 390692701, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330854, + "InputRows" : 16039, + "ComputeTimeUs" : 9109331, + "InputChannels" : [ + { + "WaitTimeUs" : 48919063, + "ChannelId" : 14732, + "Rows" : 16039, + "SrcStageId" : 0, + "Bytes" : 390692701 + }, + { + "WaitTimeUs" : 43420402, + "ChannelId" : 22892, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 30361, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43772887, + "TaskId" : 339 + } + ], + "PeakMemoryUsageBytes" : 22236928, + "CpuTimeUs" : 9334248 + }, + { + "Tasks" : [ + { + "InputBytes" : 393081633, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330573, + "InputRows" : 16147, + "ComputeTimeUs" : 9123203, + "InputChannels" : [ + { + "WaitTimeUs" : 49904661, + "ChannelId" : 14501, + "Rows" : 16147, + "SrcStageId" : 0, + "Bytes" : 393081633 + }, + { + "WaitTimeUs" : 43428753, + "ChannelId" : 19109, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 26578, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43777720, + "TaskId" : 300 + } + ], + "PeakMemoryUsageBytes" : 22233536, + "CpuTimeUs" : 9405241 + }, + { + "Tasks" : [ + { + "InputBytes" : 391989282, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330596, + "InputRows" : 16118, + "ComputeTimeUs" : 9152154, + "InputChannels" : [ + { + "WaitTimeUs" : 49188720, + "ChannelId" : 15109, + "Rows" : 16118, + "SrcStageId" : 0, + "Bytes" : 391989282 + }, + { + "WaitTimeUs" : 43427670, + "ChannelId" : 22213, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 29682, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43787704, + "TaskId" : 332 + } + ], + "PeakMemoryUsageBytes" : 22241024, + "CpuTimeUs" : 9437363 + }, + { + "Tasks" : [ + { + "InputBytes" : 390076501, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330533, + "InputRows" : 16039, + "ComputeTimeUs" : 9177609, + "InputChannels" : [ + { + "WaitTimeUs" : 47661928, + "ChannelId" : 15718, + "Rows" : 16039, + "SrcStageId" : 0, + "Bytes" : 390076501 + }, + { + "WaitTimeUs" : 43427138, + "ChannelId" : 16102, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 32883, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43768635, + "TaskId" : 365 + } + ], + "PeakMemoryUsageBytes" : 22235008, + "CpuTimeUs" : 9455603 + }, + { + "Tasks" : [ + { + "InputBytes" : 390976516, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330542, + "InputRows" : 16044, + "ComputeTimeUs" : 9200601, + "InputChannels" : [ + { + "WaitTimeUs" : 48688147, + "ChannelId" : 14471, + "Rows" : 16044, + "SrcStageId" : 0, + "Bytes" : 390976516 + }, + { + "WaitTimeUs" : 43434968, + "ChannelId" : 16199, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 32980, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43783464, + "TaskId" : 366 + } + ], + "PeakMemoryUsageBytes" : 22172736, + "CpuTimeUs" : 9532829 + }, + { + "Tasks" : [ + { + "InputBytes" : 389947632, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330542, + "InputRows" : 16008, + "ComputeTimeUs" : 9314368, + "InputChannels" : [ + { + "WaitTimeUs" : 48255781, + "ChannelId" : 14790, + "Rows" : 16008, + "SrcStageId" : 0, + "Bytes" : 389947632 + }, + { + "WaitTimeUs" : 43427700, + "ChannelId" : 19206, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 26675, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43775858, + "TaskId" : 301 + } + ], + "PeakMemoryUsageBytes" : 22307136, + "CpuTimeUs" : 9611064 + }, + { + "Tasks" : [ + { + "InputBytes" : 390762874, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330535, + "InputRows" : 16046, + "ComputeTimeUs" : 9307007, + "InputChannels" : [ + { + "WaitTimeUs" : 48267637, + "ChannelId" : 13833, + "Rows" : 16046, + "SrcStageId" : 0, + "Bytes" : 390762874 + }, + { + "WaitTimeUs" : 43425421, + "ChannelId" : 19497, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 26966, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43784403, + "TaskId" : 304 + } + ], + "PeakMemoryUsageBytes" : 22221632, + "CpuTimeUs" : 9580521 + }, + { + "Tasks" : [ + { + "InputBytes" : 390654038, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 16042, + "ComputeTimeUs" : 9364736, + "InputChannels" : [ + { + "WaitTimeUs" : 49338935, + "ChannelId" : 14152, + "Rows" : 16042, + "SrcStageId" : 0, + "Bytes" : 390654038 + }, + { + "WaitTimeUs" : 43437020, + "ChannelId" : 22504, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 29973, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43787915, + "TaskId" : 335 + } + ], + "PeakMemoryUsageBytes" : 22238656, + "CpuTimeUs" : 9709344 + }, + { + "Tasks" : [ + { + "InputBytes" : 392507762, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330774, + "InputRows" : 16118, + "ComputeTimeUs" : 9496234, + "InputChannels" : [ + { + "WaitTimeUs" : 50735302, + "ChannelId" : 13543, + "Rows" : 16118, + "SrcStageId" : 0, + "Bytes" : 392507762 + }, + { + "WaitTimeUs" : 43421415, + "ChannelId" : 19303, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 26772, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43766216, + "TaskId" : 302 + } + ], + "PeakMemoryUsageBytes" : 22236800, + "CpuTimeUs" : 9712739 + }, + { + "Tasks" : [ + { + "InputBytes" : 367734144, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330838, + "InputRows" : 15096, + "ComputeTimeUs" : 9513165, + "InputChannels" : [ + { + "WaitTimeUs" : 49724835, + "ChannelId" : 15399, + "Rows" : 15096, + "SrcStageId" : 0, + "Bytes" : 367734144 + }, + { + "WaitTimeUs" : 43420674, + "ChannelId" : 22407, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 29876, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43766322, + "TaskId" : 334 + } + ], + "PeakMemoryUsageBytes" : 22232320, + "CpuTimeUs" : 9727827 + }, + { + "Tasks" : [ + { + "InputBytes" : 392080139, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330912, + "InputRows" : 16121, + "ComputeTimeUs" : 9737173, + "InputChannels" : [ + { + "WaitTimeUs" : 49916014, + "ChannelId" : 14472, + "Rows" : 16121, + "SrcStageId" : 0, + "Bytes" : 392080139 + }, + { + "WaitTimeUs" : 43420236, + "ChannelId" : 16296, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 33077, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43774307, + "TaskId" : 367 + } + ], + "PeakMemoryUsageBytes" : 22234752, + "CpuTimeUs" : 9954984 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330176, + "ComputeTimeUs" : 3761, + "InputChannels" : [ + { + "WaitTimeUs" : 43722426, + "ChannelId" : 14384, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43435768, + "ChannelId" : 17072, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 24638, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43718434, + "TaskId" : 279 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 396409 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330173, + "ComputeTimeUs" : 4206, + "InputChannels" : [ + { + "WaitTimeUs" : 43724014, + "ChannelId" : 15544, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43437883, + "ChannelId" : 17848, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 25414, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43719456, + "TaskId" : 287 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 422493 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330175, + "ComputeTimeUs" : 4087, + "InputChannels" : [ + { + "WaitTimeUs" : 43722988, + "ChannelId" : 15167, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43437082, + "ChannelId" : 18527, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 25997, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43718582, + "TaskId" : 294 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 435356 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330175, + "ComputeTimeUs" : 3989, + "InputChannels" : [ + { + "WaitTimeUs" : 43722126, + "ChannelId" : 14704, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43436140, + "ChannelId" : 20176, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 27645, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43717844, + "TaskId" : 311 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 405660 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3380, + "InputChannels" : [ + { + "WaitTimeUs" : 43714808, + "ChannelId" : 15341, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43428749, + "ChannelId" : 16781, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 24347, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711133, + "TaskId" : 276 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 368904 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3259, + "InputChannels" : [ + { + "WaitTimeUs" : 43714227, + "ChannelId" : 13717, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43428869, + "ChannelId" : 17557, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 25123, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710647, + "TaskId" : 284 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 354783 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3102, + "InputChannels" : [ + { + "WaitTimeUs" : 43713918, + "ChannelId" : 14413, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43428568, + "ChannelId" : 19885, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 27354, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710582, + "TaskId" : 308 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 372443 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330176, + "ComputeTimeUs" : 3458, + "InputChannels" : [ + { + "WaitTimeUs" : 43721241, + "ChannelId" : 14327, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43434969, + "ChannelId" : 20855, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 28324, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43717494, + "TaskId" : 318 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 425170 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 3360, + "InputChannels" : [ + { + "WaitTimeUs" : 43711474, + "ChannelId" : 15457, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43425630, + "ChannelId" : 18721, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 26190, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43707926, + "TaskId" : 296 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 364120 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3344, + "InputChannels" : [ + { + "WaitTimeUs" : 43714131, + "ChannelId" : 14877, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43428676, + "ChannelId" : 18333, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 25899, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710579, + "TaskId" : 292 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 348862 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3768, + "InputChannels" : [ + { + "WaitTimeUs" : 43714561, + "ChannelId" : 14094, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43428078, + "ChannelId" : 16878, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 24444, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710548, + "TaskId" : 277 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 393661 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3838, + "InputChannels" : [ + { + "WaitTimeUs" : 43713912, + "ChannelId" : 15254, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427934, + "ChannelId" : 17654, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 25220, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43709788, + "TaskId" : 285 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 412200 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 3949, + "InputChannels" : [ + { + "WaitTimeUs" : 43715720, + "ChannelId" : 14210, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429908, + "ChannelId" : 18818, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 26287, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711343, + "TaskId" : 297 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 374265 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 4161, + "InputChannels" : [ + { + "WaitTimeUs" : 43715799, + "ChannelId" : 14674, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429974, + "ChannelId" : 17266, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 24832, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711314, + "TaskId" : 281 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 443262 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3925, + "InputChannels" : [ + { + "WaitTimeUs" : 43713910, + "ChannelId" : 13630, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427795, + "ChannelId" : 18430, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 25996, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43709684, + "TaskId" : 293 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 402344 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330175, + "ComputeTimeUs" : 4141, + "InputChannels" : [ + { + "WaitTimeUs" : 43722697, + "ChannelId" : 13775, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43436079, + "ChannelId" : 23183, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 30652, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43718273, + "TaskId" : 342 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 417057 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 2067, + "InputChannels" : [ + { + "WaitTimeUs" : 43707076, + "ChannelId" : 14007, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43421364, + "ChannelId" : 17751, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 25317, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704931, + "TaskId" : 286 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 293624 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 3213, + "InputChannels" : [ + { + "WaitTimeUs" : 43712203, + "ChannelId" : 14385, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43425627, + "ChannelId" : 17169, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 24735, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43708711, + "TaskId" : 280 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 395357 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 3275, + "InputChannels" : [ + { + "WaitTimeUs" : 43711425, + "ChannelId" : 14298, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43425389, + "ChannelId" : 18042, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 25608, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43707848, + "TaskId" : 289 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 413078 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330175, + "ComputeTimeUs" : 4204, + "InputChannels" : [ + { + "WaitTimeUs" : 43723201, + "ChannelId" : 15776, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43436883, + "ChannelId" : 21728, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 29197, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43718583, + "TaskId" : 327 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 444179 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 2177, + "InputChannels" : [ + { + "WaitTimeUs" : 43707741, + "ChannelId" : 15631, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43421292, + "ChannelId" : 16975, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 24541, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43705458, + "TaskId" : 278 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 292739 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1956, + "InputChannels" : [ + { + "WaitTimeUs" : 43707050, + "ChannelId" : 13920, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43421150, + "ChannelId" : 18624, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 26093, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43705005, + "TaskId" : 295 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 293218 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 4158, + "InputChannels" : [ + { + "WaitTimeUs" : 43715800, + "ChannelId" : 14297, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429991, + "ChannelId" : 17945, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 25511, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711326, + "TaskId" : 288 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 435045 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 4396, + "InputChannels" : [ + { + "WaitTimeUs" : 43715529, + "ChannelId" : 14906, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429673, + "ChannelId" : 21146, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 28615, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710853, + "TaskId" : 321 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 378966 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 4114, + "InputChannels" : [ + { + "WaitTimeUs" : 43715511, + "ChannelId" : 14993, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429693, + "ChannelId" : 20273, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 27742, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711114, + "TaskId" : 312 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 381207 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330174, + "ComputeTimeUs" : 4088, + "InputChannels" : [ + { + "WaitTimeUs" : 43723997, + "ChannelId" : 13688, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43437447, + "ChannelId" : 24056, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 31525, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43719618, + "TaskId" : 351 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 417438 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3727, + "InputChannels" : [ + { + "WaitTimeUs" : 43713810, + "ChannelId" : 14414, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427672, + "ChannelId" : 19982, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 27451, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43709833, + "TaskId" : 309 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 391627 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 3134, + "InputChannels" : [ + { + "WaitTimeUs" : 43711354, + "ChannelId" : 13746, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43425846, + "ChannelId" : 20370, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 27839, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43708012, + "TaskId" : 313 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 389162 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 3294, + "InputChannels" : [ + { + "WaitTimeUs" : 43711300, + "ChannelId" : 14617, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43425155, + "ChannelId" : 21049, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 28518, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43707763, + "TaskId" : 320 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 380645 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 3134, + "InputChannels" : [ + { + "WaitTimeUs" : 43711301, + "ChannelId" : 14529, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43425133, + "ChannelId" : 21825, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 29294, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43707863, + "TaskId" : 328 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 369323 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330174, + "ComputeTimeUs" : 4016, + "InputChannels" : [ + { + "WaitTimeUs" : 43723725, + "ChannelId" : 14848, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43437191, + "ChannelId" : 24256, + "SrcStageId" : 8 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 32301, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43719450, + "TaskId" : 359 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 420610 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 1939, + "InputChannels" : [ + { + "WaitTimeUs" : 43706567, + "ChannelId" : 14964, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420903, + "ChannelId" : 17460, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 25026, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704491, + "TaskId" : 283 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 316512 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1911, + "InputChannels" : [ + { + "WaitTimeUs" : 43706932, + "ChannelId" : 14616, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420980, + "ChannelId" : 20952, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 28421, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704921, + "TaskId" : 319 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 315787 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1812, + "InputChannels" : [ + { + "WaitTimeUs" : 43706929, + "ChannelId" : 14703, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43421335, + "ChannelId" : 20079, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 27548, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43705046, + "TaskId" : 310 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 275508 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1787, + "InputChannels" : [ + { + "WaitTimeUs" : 43706936, + "ChannelId" : 14239, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420831, + "ChannelId" : 21631, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 29100, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43705120, + "TaskId" : 326 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 280908 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3517, + "InputChannels" : [ + { + "WaitTimeUs" : 43713703, + "ChannelId" : 14326, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427588, + "ChannelId" : 20758, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 28227, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43709954, + "TaskId" : 317 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 436524 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3255, + "InputChannels" : [ + { + "WaitTimeUs" : 43713939, + "ChannelId" : 15573, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43428615, + "ChannelId" : 20661, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 28130, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710482, + "TaskId" : 316 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 366014 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 4248, + "InputChannels" : [ + { + "WaitTimeUs" : 43715474, + "ChannelId" : 14530, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429428, + "ChannelId" : 21922, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 29391, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710895, + "TaskId" : 329 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 391085 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 3932, + "InputChannels" : [ + { + "WaitTimeUs" : 43715449, + "ChannelId" : 15602, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429163, + "ChannelId" : 23474, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 30943, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711229, + "TaskId" : 345 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 397363 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 3451, + "InputChannels" : [ + { + "WaitTimeUs" : 43715701, + "ChannelId" : 13978, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43428987, + "ChannelId" : 24250, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 31719, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711996, + "TaskId" : 353 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 393425 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 3167, + "InputChannels" : [ + { + "WaitTimeUs" : 43711268, + "ChannelId" : 14065, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43424962, + "ChannelId" : 23377, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 30846, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43707925, + "TaskId" : 344 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 380419 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 2076, + "InputChannels" : [ + { + "WaitTimeUs" : 43706657, + "ChannelId" : 14588, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420867, + "ChannelId" : 18236, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 25802, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704532, + "TaskId" : 291 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 310753 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 1804, + "InputChannels" : [ + { + "WaitTimeUs" : 43706671, + "ChannelId" : 14500, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420909, + "ChannelId" : 19012, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 26481, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704808, + "TaskId" : 299 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 317896 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 3213, + "InputChannels" : [ + { + "WaitTimeUs" : 43713873, + "ChannelId" : 13949, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427906, + "ChannelId" : 21437, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 28906, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710444, + "TaskId" : 324 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 390453 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 2987, + "InputChannels" : [ + { + "WaitTimeUs" : 43713901, + "ChannelId" : 14733, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427905, + "ChannelId" : 22989, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 30458, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710717, + "TaskId" : 340 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 353932 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 3136, + "InputChannels" : [ + { + "WaitTimeUs" : 43713649, + "ChannelId" : 14646, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427267, + "ChannelId" : 23862, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 31331, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710336, + "TaskId" : 349 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 392515 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 2931, + "InputChannels" : [ + { + "WaitTimeUs" : 43713713, + "ChannelId" : 15022, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427220, + "ChannelId" : 23086, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 30555, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710559, + "TaskId" : 341 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 398451 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 3140, + "InputChannels" : [ + { + "WaitTimeUs" : 43713577, + "ChannelId" : 14558, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427265, + "ChannelId" : 24254, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 32107, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710257, + "TaskId" : 357 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 384595 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 2694, + "InputChannels" : [ + { + "WaitTimeUs" : 43713742, + "ChannelId" : 14645, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427900, + "ChannelId" : 23765, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 31234, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710885, + "TaskId" : 348 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 365523 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 3312, + "InputChannels" : [ + { + "WaitTimeUs" : 43713585, + "ChannelId" : 15486, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427454, + "ChannelId" : 21534, + "SrcStageId" : 8 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 29003, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43710029, + "TaskId" : 325 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 425996 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330192, + "ComputeTimeUs" : 1759, + "InputChannels" : [ + { + "WaitTimeUs" : 43706953, + "ChannelId" : 15312, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420554, + "ChannelId" : 23280, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 30749, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43705098, + "TaskId" : 343 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 289814 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 3573, + "InputChannels" : [ + { + "WaitTimeUs" : 43715604, + "ChannelId" : 13601, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43429199, + "ChannelId" : 24257, + "SrcStageId" : 8 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 32398, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711847, + "TaskId" : 360 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 373869 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330192, + "ComputeTimeUs" : 1590, + "InputChannels" : [ + { + "WaitTimeUs" : 43706918, + "ChannelId" : 14935, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420572, + "ChannelId" : 23959, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 31428, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43705263, + "TaskId" : 350 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 282168 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330192, + "ComputeTimeUs" : 1595, + "InputChannels" : [ + { + "WaitTimeUs" : 43706826, + "ChannelId" : 14559, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420320, + "ChannelId" : 24255, + "SrcStageId" : 8 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 32204, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43705187, + "TaskId" : 358 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 305722 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 2966, + "InputChannels" : [ + { + "WaitTimeUs" : 43711348, + "ChannelId" : 15225, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43424744, + "ChannelId" : 24153, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 31622, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43708263, + "TaskId" : 352 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 364529 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 3028, + "InputChannels" : [ + { + "WaitTimeUs" : 43711238, + "ChannelId" : 15138, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43424679, + "ChannelId" : 24258, + "SrcStageId" : 8 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 32495, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43708030, + "TaskId" : 361 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 360166 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 2552, + "InputChannels" : [ + { + "WaitTimeUs" : 43713719, + "ChannelId" : 15805, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43427997, + "ChannelId" : 24253, + "SrcStageId" : 8 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 32010, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43711043, + "TaskId" : 356 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 342746 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 2024, + "InputChannels" : [ + { + "WaitTimeUs" : 43706573, + "ChannelId" : 15196, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420941, + "ChannelId" : 21340, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 28809, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704407, + "TaskId" : 323 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 312170 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 1875, + "InputChannels" : [ + { + "WaitTimeUs" : 43706658, + "ChannelId" : 14036, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420771, + "ChannelId" : 20564, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 28033, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704721, + "TaskId" : 315 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 302542 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1869, + "InputChannels" : [ + { + "WaitTimeUs" : 43706560, + "ChannelId" : 13572, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420389, + "ChannelId" : 22116, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 29585, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704671, + "TaskId" : 331 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 297398 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1620, + "InputChannels" : [ + { + "WaitTimeUs" : 43706557, + "ChannelId" : 14356, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420241, + "ChannelId" : 23668, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 31137, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704883, + "TaskId" : 347 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 304586 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1514, + "InputChannels" : [ + { + "WaitTimeUs" : 43706492, + "ChannelId" : 15428, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420182, + "ChannelId" : 15908, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 32689, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704954, + "TaskId" : 363 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 292855 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 1654, + "InputChannels" : [ + { + "WaitTimeUs" : 43706485, + "ChannelId" : 14268, + "SrcStageId" : 0 + }, + { + "WaitTimeUs" : 43420116, + "ChannelId" : 24252, + "SrcStageId" : 8 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 31913, + "DstStageId" : 11 + } + ], + "WaitInputTimeUs" : 43704799, + "TaskId" : 355 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 294874 + } + ], + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { }, + "Name" : "28", + "Push" : { + "WaitTimeUs" : { + "Count" : 84, + "Sum" : 3825718067, + "Max" : 52915060, + "Min" : 43102813 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 84, + "Sum" : 616562688, + "Max" : 26214400, + "Min" : 1048576 + }, + "InputBytes" : { + "Count" : 21, + "Sum" : 8094198023, + "Max" : 398860818, + "Min" : 343992074 + }, + "Tasks" : 84, + "InputRows" : { + "Count" : 21, + "Sum" : 332437, + "Max" : 16382, + "Min" : 14126 + }, + "PhysicalStageId" : 9, + "StageDurationUs" : 0, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 84, + "Sum" : 3673241972, + "Max" : 43861819, + "Min" : 43704407 + }, + "CpuTimeUs" : { + "Count" : 84, + "Sum" : 191643542, + "Max" : 9737311, + "Min" : 1649 + }, + "Input" : [ + { + "Pop" : { }, + "Name" : "22", + "Push" : { + "WaitTimeUs" : { + "Count" : 84, + "Sum" : 3647856124, + "Max" : 43437883, + "Min" : 43420108 + } + } + }, + { + "Pop" : { + "Rows" : { + "Count" : 21, + "Sum" : 332437, + "Max" : 16382, + "Min" : 14126 + }, + "LastMessageMs" : { + "Count" : 21, + "Sum" : 1108757, + "Max" : 53429, + "Min" : 52159 + }, + "Chunks" : { + "Count" : 21, + "Sum" : 1671, + "Max" : 91, + "Min" : 69 + }, + "ResumeMessageMs" : { + "Count" : 21, + "Sum" : 1108587, + "Max" : 53429, + "Min" : 52159 + }, + "FirstMessageMs" : { + "Count" : 21, + "Sum" : 9930, + "Max" : 765, + "Min" : 363 + }, + "ActiveMessageMs" : { + "Count" : 21, + "Max" : 53429, + "Min" : 363 + }, + "Bytes" : { + "Count" : 21, + "Sum" : 8094198023, + "Max" : 398860818, + "Min" : 343992074 + }, + "PauseMessageMs" : { + "Count" : 21, + "Sum" : 919526, + "Max" : 43834, + "Min" : 43752 + }, + "ActiveTimeUs" : { + "Count" : 21, + "Sum" : 1098827000, + "Max" : 52687000, + "Min" : 51394000 + }, + "WaitTimeUs" : { + "Count" : 21, + "Sum" : 349405, + "Max" : 19249, + "Min" : 11846 + }, + "WaitPeriods" : { + "Count" : 21, + "Sum" : 1661, + "Max" : 91, + "Min" : 69 + }, + "WaitMessageMs" : { + "Count" : 21, + "Max" : 53429, + "Min" : 43752 + } + }, + "Name" : "24", + "Push" : { + "Rows" : { + "Count" : 21, + "Sum" : 332437, + "Max" : 16382, + "Min" : 14126 + }, + "LastMessageMs" : { + "Count" : 21, + "Sum" : 1108757, + "Max" : 53429, + "Min" : 52159 + }, + "Chunks" : { + "Count" : 21, + "Sum" : 4503, + "Max" : 227, + "Min" : 190 + }, + "ResumeMessageMs" : { + "Count" : 21, + "Sum" : 1108607, + "Max" : 53420, + "Min" : 52152 + }, + "FirstMessageMs" : { + "Count" : 21, + "Sum" : 9930, + "Max" : 765, + "Min" : 363 + }, + "ActiveMessageMs" : { + "Count" : 21, + "Max" : 53429, + "Min" : 363 + }, + "Bytes" : { + "Count" : 21, + "Sum" : 8094198023, + "Max" : 398860818, + "Min" : 343992074 + }, + "PauseMessageMs" : { + "Count" : 21, + "Sum" : 9386, + "Max" : 675, + "Min" : 341 + }, + "ActiveTimeUs" : { + "Count" : 21, + "Sum" : 1098827000, + "Max" : 52687000, + "Min" : 51394000 + }, + "WaitTimeUs" : { + "Count" : 84, + "Sum" : 3789671711, + "Max" : 50735302, + "Min" : 43706485 + }, + "WaitPeriods" : { + "Count" : 21, + "Sum" : 1650, + "Max" : 90, + "Min" : 68 + }, + "WaitMessageMs" : { + "Count" : 21, + "Max" : 53420, + "Min" : 341 + } + } + } + ] + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "l.l_partkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 27 + }, + { + "ExternalPlanNodeId" : 7 + } + ], + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_partkey = p.p_partkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.949999851e+11" + } + ], + "Node Type" : "InnerJoin (Grace)", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "InputBytes" : 229291, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 13319, + "ComputeTimeUs" : 438060, + "InputChannels" : [ + { + "WaitTimeUs" : 41304452, + "ChannelId" : 26384, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9678338, + "ChannelId" : 33872, + "Rows" : 13319, + "SrcStageId" : 10, + "Bytes" : 229291 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 36181, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40828674, + "TaskId" : 399 + } + ], + "PeakMemoryUsageBytes" : 34073216, + "CpuTimeUs" : 12545665 + }, + { + "Tasks" : [ + { + "InputBytes" : 220093, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 12705, + "ComputeTimeUs" : 435352, + "InputChannels" : [ + { + "WaitTimeUs" : 41305749, + "ChannelId" : 25220, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9034523, + "ChannelId" : 34916, + "Rows" : 12705, + "SrcStageId" : 10, + "Bytes" : 220093 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 43553, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40835048, + "TaskId" : 483 + } + ], + "PeakMemoryUsageBytes" : 32953344, + "CpuTimeUs" : 11818723 + }, + { + "Tasks" : [ + { + "InputBytes" : 189944, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 11000, + "ComputeTimeUs" : 430336, + "InputChannels" : [ + { + "WaitTimeUs" : 41306097, + "ChannelId" : 30167, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5140536, + "ChannelId" : 35351, + "Rows" : 11000, + "SrcStageId" : 10, + "Bytes" : 189944 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 39576, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40843384, + "TaskId" : 438 + } + ], + "PeakMemoryUsageBytes" : 34015744, + "CpuTimeUs" : 12176951 + }, + { + "Tasks" : [ + { + "InputBytes" : 190762, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 11058, + "ComputeTimeUs" : 393322, + "InputChannels" : [ + { + "WaitTimeUs" : 41305684, + "ChannelId" : 33077, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5425196, + "ChannelId" : 34133, + "Rows" : 11058, + "SrcStageId" : 10, + "Bytes" : 190762 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 42195, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40876891, + "TaskId" : 468 + } + ], + "PeakMemoryUsageBytes" : 32002816, + "CpuTimeUs" : 11458000 + }, + { + "Tasks" : [ + { + "InputBytes" : 235354, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331631, + "InputRows" : 13634, + "ComputeTimeUs" : 508096, + "InputChannels" : [ + { + "WaitTimeUs" : 41297849, + "ChannelId" : 32495, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5184196, + "ChannelId" : 34511, + "Rows" : 13634, + "SrcStageId" : 10, + "Bytes" : 235354 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 41710, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40750847, + "TaskId" : 462 + } + ], + "PeakMemoryUsageBytes" : 33919104, + "CpuTimeUs" : 14027524 + }, + { + "Tasks" : [ + { + "InputBytes" : 217278, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12566, + "ComputeTimeUs" : 442763, + "InputChannels" : [ + { + "WaitTimeUs" : 41295609, + "ChannelId" : 32107, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8938442, + "ChannelId" : 35467, + "Rows" : 12566, + "SrcStageId" : 10, + "Bytes" : 217278 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 41322, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40812355, + "TaskId" : 458 + } + ], + "PeakMemoryUsageBytes" : 23393536, + "CpuTimeUs" : 12740175 + }, + { + "Tasks" : [ + { + "InputBytes" : 196663, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 11355, + "ComputeTimeUs" : 477101, + "InputChannels" : [ + { + "WaitTimeUs" : 41295787, + "ChannelId" : 28809, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9555537, + "ChannelId" : 34569, + "Rows" : 11355, + "SrcStageId" : 10, + "Bytes" : 196663 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 38315, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40782129, + "TaskId" : 424 + } + ], + "PeakMemoryUsageBytes" : 26467840, + "CpuTimeUs" : 13192111 + }, + { + "Tasks" : [ + { + "InputBytes" : 193446, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 11246, + "ComputeTimeUs" : 448494, + "InputChannels" : [ + { + "WaitTimeUs" : 41295845, + "ChannelId" : 30361, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8655504, + "ChannelId" : 35641, + "Rows" : 11246, + "SrcStageId" : 10, + "Bytes" : 193446 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 39770, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40809957, + "TaskId" : 440 + } + ], + "PeakMemoryUsageBytes" : 23385856, + "CpuTimeUs" : 13155277 + }, + { + "Tasks" : [ + { + "InputBytes" : 176722, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 10242, + "ComputeTimeUs" : 425385, + "InputChannels" : [ + { + "WaitTimeUs" : 41294794, + "ChannelId" : 25123, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8365272, + "ChannelId" : 34627, + "Rows" : 10242, + "SrcStageId" : 10, + "Bytes" : 176722 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 43456, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40834574, + "TaskId" : 482 + } + ], + "PeakMemoryUsageBytes" : 21251456, + "CpuTimeUs" : 12479131 + }, + { + "Tasks" : [ + { + "InputBytes" : 207807, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 11987, + "ComputeTimeUs" : 450850, + "InputChannels" : [ + { + "WaitTimeUs" : 41295499, + "ChannelId" : 33466, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7681285, + "ChannelId" : 34714, + "Rows" : 11987, + "SrcStageId" : 10, + "Bytes" : 207807 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 42680, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40810205, + "TaskId" : 473 + } + ], + "PeakMemoryUsageBytes" : 25513472, + "CpuTimeUs" : 12318466 + }, + { + "Tasks" : [ + { + "InputBytes" : 191434, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 11130, + "ComputeTimeUs" : 462215, + "InputChannels" : [ + { + "WaitTimeUs" : 41295720, + "ChannelId" : 29682, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8611482, + "ChannelId" : 34482, + "Rows" : 11130, + "SrcStageId" : 10, + "Bytes" : 191434 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 39091, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40796195, + "TaskId" : 433 + } + ], + "PeakMemoryUsageBytes" : 33366784, + "CpuTimeUs" : 13160330 + }, + { + "Tasks" : [ + { + "InputBytes" : 226997, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13113, + "ComputeTimeUs" : 458829, + "InputChannels" : [ + { + "WaitTimeUs" : 41294810, + "ChannelId" : 25899, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9667692, + "ChannelId" : 34539, + "Rows" : 13113, + "SrcStageId" : 10, + "Bytes" : 226997 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 44135, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40799740, + "TaskId" : 490 + } + ], + "PeakMemoryUsageBytes" : 31457280, + "CpuTimeUs" : 13039197 + }, + { + "Tasks" : [ + { + "InputBytes" : 187167, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 10867, + "ComputeTimeUs" : 473867, + "InputChannels" : [ + { + "WaitTimeUs" : 41290405, + "ChannelId" : 25317, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6132005, + "ChannelId" : 33669, + "Rows" : 10867, + "SrcStageId" : 10, + "Bytes" : 187167 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 43650, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40778828, + "TaskId" : 484 + } + ], + "PeakMemoryUsageBytes" : 29713024, + "CpuTimeUs" : 13412355 + }, + { + "Tasks" : [ + { + "InputBytes" : 230285, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13289, + "ComputeTimeUs" : 487353, + "InputChannels" : [ + { + "WaitTimeUs" : 41290389, + "ChannelId" : 25996, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4978543, + "ChannelId" : 34540, + "Rows" : 13289, + "SrcStageId" : 10, + "Bytes" : 230285 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 44232, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40764876, + "TaskId" : 491 + } + ], + "PeakMemoryUsageBytes" : 29813760, + "CpuTimeUs" : 13853225 + }, + { + "Tasks" : [ + { + "InputBytes" : 184208, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10664, + "ComputeTimeUs" : 453124, + "InputChannels" : [ + { + "WaitTimeUs" : 41294102, + "ChannelId" : 32980, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4945090, + "ChannelId" : 35380, + "Rows" : 10664, + "SrcStageId" : 10, + "Bytes" : 184208 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 42098, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40805123, + "TaskId" : 467 + } + ], + "PeakMemoryUsageBytes" : 34047360, + "CpuTimeUs" : 13237717 + }, + { + "Tasks" : [ + { + "InputBytes" : 229221, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13225, + "ComputeTimeUs" : 459786, + "InputChannels" : [ + { + "WaitTimeUs" : 41291096, + "ChannelId" : 24541, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4208199, + "ChannelId" : 35293, + "Rows" : 13225, + "SrcStageId" : 10, + "Bytes" : 229221 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 42874, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40789677, + "TaskId" : 476 + } + ], + "PeakMemoryUsageBytes" : 34853376, + "CpuTimeUs" : 13121432 + }, + { + "Tasks" : [ + { + "InputBytes" : 241884, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13996, + "ComputeTimeUs" : 486332, + "InputChannels" : [ + { + "WaitTimeUs" : 41291225, + "ChannelId" : 30943, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6470685, + "ChannelId" : 33727, + "Rows" : 13996, + "SrcStageId" : 10, + "Bytes" : 241884 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 40255, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40762922, + "TaskId" : 446 + } + ], + "PeakMemoryUsageBytes" : 32205952, + "CpuTimeUs" : 13678126 + }, + { + "Tasks" : [ + { + "InputBytes" : 231120, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13360, + "ComputeTimeUs" : 489216, + "InputChannels" : [ + { + "WaitTimeUs" : 41294331, + "ChannelId" : 28615, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6119442, + "ChannelId" : 34279, + "Rows" : 13360, + "SrcStageId" : 10, + "Bytes" : 231120 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 38121, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40757006, + "TaskId" : 422 + } + ], + "PeakMemoryUsageBytes" : 29801088, + "CpuTimeUs" : 14038076 + }, + { + "Tasks" : [ + { + "InputBytes" : 183595, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 10679, + "ComputeTimeUs" : 462299, + "InputChannels" : [ + { + "WaitTimeUs" : 41291238, + "ChannelId" : 32301, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4050536, + "ChannelId" : 35757, + "Rows" : 10679, + "SrcStageId" : 10, + "Bytes" : 183595 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 41516, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40787139, + "TaskId" : 460 + } + ], + "PeakMemoryUsageBytes" : 31935744, + "CpuTimeUs" : 13327827 + }, + { + "Tasks" : [ + { + "InputBytes" : 162593, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 9445, + "ComputeTimeUs" : 428047, + "InputChannels" : [ + { + "WaitTimeUs" : 41297980, + "ChannelId" : 33271, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4261907, + "ChannelId" : 34423, + "Rows" : 9445, + "SrcStageId" : 10, + "Bytes" : 162593 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 42389, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40837248, + "TaskId" : 470 + } + ], + "PeakMemoryUsageBytes" : 29804800, + "CpuTimeUs" : 11784757 + }, + { + "Tasks" : [ + { + "InputBytes" : 199391, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 11555, + "ComputeTimeUs" : 436095, + "InputChannels" : [ + { + "WaitTimeUs" : 41298197, + "ChannelId" : 26093, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6078426, + "ChannelId" : 34829, + "Rows" : 11555, + "SrcStageId" : 10, + "Bytes" : 199391 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 35890, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40825317, + "TaskId" : 396 + } + ], + "PeakMemoryUsageBytes" : 32519040, + "CpuTimeUs" : 12511437 + }, + { + "Tasks" : [ + { + "InputBytes" : 224660, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13084, + "ComputeTimeUs" : 429032, + "InputChannels" : [ + { + "WaitTimeUs" : 41297926, + "ChannelId" : 24735, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 10074606, + "ChannelId" : 35583, + "Rows" : 13084, + "SrcStageId" : 10, + "Bytes" : 224660 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 43068, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40835264, + "TaskId" : 478 + } + ], + "PeakMemoryUsageBytes" : 36164992, + "CpuTimeUs" : 12121884 + }, + { + "Tasks" : [ + { + "InputBytes" : 214182, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12430, + "ComputeTimeUs" : 428639, + "InputChannels" : [ + { + "WaitTimeUs" : 41298132, + "ChannelId" : 31525, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9450315, + "ChannelId" : 34597, + "Rows" : 12430, + "SrcStageId" : 10, + "Bytes" : 214182 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 40837, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40835613, + "TaskId" : 452 + } + ], + "PeakMemoryUsageBytes" : 36164992, + "CpuTimeUs" : 12622077 + }, + { + "Tasks" : [ + { + "InputBytes" : 211007, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 12227, + "ComputeTimeUs" : 449743, + "InputChannels" : [ + { + "WaitTimeUs" : 41298212, + "ChannelId" : 29197, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9210979, + "ChannelId" : 33901, + "Rows" : 12227, + "SrcStageId" : 10, + "Bytes" : 211007 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 38703, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40813284, + "TaskId" : 428 + } + ], + "PeakMemoryUsageBytes" : 36166528, + "CpuTimeUs" : 12755647 + }, + { + "Tasks" : [ + { + "InputBytes" : 221422, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 12838, + "ComputeTimeUs" : 429574, + "InputChannels" : [ + { + "WaitTimeUs" : 41298253, + "ChannelId" : 28421, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9757520, + "ChannelId" : 35525, + "Rows" : 12838, + "SrcStageId" : 10, + "Bytes" : 221422 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 38024, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40826102, + "TaskId" : 420 + } + ], + "PeakMemoryUsageBytes" : 32241280, + "CpuTimeUs" : 12639622 + }, + { + "Tasks" : [ + { + "InputBytes" : 232116, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 13444, + "ComputeTimeUs" : 457003, + "InputChannels" : [ + { + "WaitTimeUs" : 41298206, + "ChannelId" : 26869, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8175703, + "ChannelId" : 34453, + "Rows" : 13444, + "SrcStageId" : 10, + "Bytes" : 232116 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 36569, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40802378, + "TaskId" : 404 + } + ], + "PeakMemoryUsageBytes" : 32691456, + "CpuTimeUs" : 12710842 + }, + { + "Tasks" : [ + { + "InputBytes" : 243652, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 14044, + "ComputeTimeUs" : 519352, + "InputChannels" : [ + { + "WaitTimeUs" : 41297941, + "ChannelId" : 31719, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6148819, + "ChannelId" : 34887, + "Rows" : 14044, + "SrcStageId" : 10, + "Bytes" : 243652 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 40936, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40734684, + "TaskId" : 454 + } + ], + "PeakMemoryUsageBytes" : 29810048, + "CpuTimeUs" : 14127177 + }, + { + "Tasks" : [ + { + "InputBytes" : 219292, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12700, + "ComputeTimeUs" : 498681, + "InputChannels" : [ + { + "WaitTimeUs" : 41298028, + "ChannelId" : 30846, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7248670, + "ChannelId" : 34974, + "Rows" : 12700, + "SrcStageId" : 10, + "Bytes" : 219292 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 40158, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40760050, + "TaskId" : 445 + } + ], + "PeakMemoryUsageBytes" : 29793920, + "CpuTimeUs" : 14552509 + }, + { + "Tasks" : [ + { + "InputBytes" : 240129, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 13901, + "ComputeTimeUs" : 497434, + "InputChannels" : [ + { + "WaitTimeUs" : 41297759, + "ChannelId" : 24638, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5600403, + "ChannelId" : 34046, + "Rows" : 13901, + "SrcStageId" : 10, + "Bytes" : 240129 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 42971, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40752235, + "TaskId" : 477 + } + ], + "PeakMemoryUsageBytes" : 34717952, + "CpuTimeUs" : 13848617 + }, + { + "Tasks" : [ + { + "InputBytes" : 196825, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 11445, + "ComputeTimeUs" : 415210, + "InputChannels" : [ + { + "WaitTimeUs" : 41298013, + "ChannelId" : 32398, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6477499, + "ChannelId" : 34510, + "Rows" : 11445, + "SrcStageId" : 10, + "Bytes" : 196825 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 41613, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40847172, + "TaskId" : 461 + } + ], + "PeakMemoryUsageBytes" : 29795968, + "CpuTimeUs" : 11906882 + }, + { + "Tasks" : [ + { + "InputBytes" : 182604, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10572, + "ComputeTimeUs" : 428039, + "InputChannels" : [ + { + "WaitTimeUs" : 41301332, + "ChannelId" : 26578, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4836953, + "ChannelId" : 34162, + "Rows" : 10572, + "SrcStageId" : 10, + "Bytes" : 182604 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 36278, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40827172, + "TaskId" : 401 + } + ], + "PeakMemoryUsageBytes" : 31930112, + "CpuTimeUs" : 11718281 + }, + { + "Tasks" : [ + { + "InputBytes" : 168624, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 9832, + "ComputeTimeUs" : 416627, + "InputChannels" : [ + { + "WaitTimeUs" : 41301398, + "ChannelId" : 29585, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4899936, + "ChannelId" : 34481, + "Rows" : 9832, + "SrcStageId" : 10, + "Bytes" : 168624 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 39000, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40845434, + "TaskId" : 432 + } + ], + "PeakMemoryUsageBytes" : 31784960, + "CpuTimeUs" : 11469881 + }, + { + "Tasks" : [ + { + "InputBytes" : 218184, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12640, + "ComputeTimeUs" : 412399, + "InputChannels" : [ + { + "WaitTimeUs" : 41301364, + "ChannelId" : 24347, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7759120, + "ChannelId" : 35003, + "Rows" : 12640, + "SrcStageId" : 10, + "Bytes" : 218184 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 42777, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40850838, + "TaskId" : 474 + } + ], + "PeakMemoryUsageBytes" : 34045056, + "CpuTimeUs" : 11256339 + }, + { + "Tasks" : [ + { + "InputBytes" : 181413, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 10497, + "ComputeTimeUs" : 407281, + "InputChannels" : [ + { + "WaitTimeUs" : 41301408, + "ChannelId" : 32786, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5320743, + "ChannelId" : 35090, + "Rows" : 10497, + "SrcStageId" : 10, + "Bytes" : 181413 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 41904, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40861669, + "TaskId" : 465 + } + ], + "PeakMemoryUsageBytes" : 27991296, + "CpuTimeUs" : 11049101 + }, + { + "Tasks" : [ + { + "InputBytes" : 232850, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13482, + "ComputeTimeUs" : 524059, + "InputChannels" : [ + { + "WaitTimeUs" : 41295792, + "ChannelId" : 26481, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7806723, + "ChannelId" : 35409, + "Rows" : 13482, + "SrcStageId" : 10, + "Bytes" : 232850 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 36184, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40732648, + "TaskId" : 400 + } + ], + "PeakMemoryUsageBytes" : 34467072, + "CpuTimeUs" : 13101720 + }, + { + "Tasks" : [ + { + "InputBytes" : 208643, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331631, + "InputRows" : 12039, + "ComputeTimeUs" : 485786, + "InputChannels" : [ + { + "WaitTimeUs" : 41297813, + "ChannelId" : 33174, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5672103, + "ChannelId" : 35670, + "Rows" : 12039, + "SrcStageId" : 10, + "Bytes" : 208643 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 42292, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40774507, + "TaskId" : 469 + } + ], + "PeakMemoryUsageBytes" : 29796224, + "CpuTimeUs" : 13817730 + }, + { + "Tasks" : [ + { + "InputBytes" : 197892, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 11524, + "ComputeTimeUs" : 508185, + "InputChannels" : [ + { + "WaitTimeUs" : 41294545, + "ChannelId" : 27063, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4514332, + "ChannelId" : 33495, + "Rows" : 11524, + "SrcStageId" : 10, + "Bytes" : 197892 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 36763, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40742669, + "TaskId" : 406 + } + ], + "PeakMemoryUsageBytes" : 31940736, + "CpuTimeUs" : 14101966 + }, + { + "Tasks" : [ + { + "InputBytes" : 189661, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 11001, + "ComputeTimeUs" : 417163, + "InputChannels" : [ + { + "WaitTimeUs" : 41302270, + "ChannelId" : 27839, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8635706, + "ChannelId" : 34655, + "Rows" : 11001, + "SrcStageId" : 10, + "Bytes" : 189661 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 37442, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40849913, + "TaskId" : 414 + } + ], + "PeakMemoryUsageBytes" : 21273216, + "CpuTimeUs" : 12706851 + }, + { + "Tasks" : [ + { + "InputBytes" : 191108, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 11068, + "ComputeTimeUs" : 458649, + "InputChannels" : [ + { + "WaitTimeUs" : 41295693, + "ChannelId" : 31137, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9437376, + "ChannelId" : 34017, + "Rows" : 11068, + "SrcStageId" : 10, + "Bytes" : 191108 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 40449, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40801243, + "TaskId" : 448 + } + ], + "PeakMemoryUsageBytes" : 34396416, + "CpuTimeUs" : 12884736 + }, + { + "Tasks" : [ + { + "InputBytes" : 174603, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10199, + "ComputeTimeUs" : 405902, + "InputChannels" : [ + { + "WaitTimeUs" : 41299843, + "ChannelId" : 29488, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8449409, + "ChannelId" : 35728, + "Rows" : 10199, + "SrcStageId" : 10, + "Bytes" : 174603 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 38994, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40859953, + "TaskId" : 431 + } + ], + "PeakMemoryUsageBytes" : 21268992, + "CpuTimeUs" : 12554988 + }, + { + "Tasks" : [ + { + "InputBytes" : 196555, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 11399, + "ComputeTimeUs" : 454597, + "InputChannels" : [ + { + "WaitTimeUs" : 41301384, + "ChannelId" : 28906, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7525139, + "ChannelId" : 34858, + "Rows" : 11399, + "SrcStageId" : 10, + "Bytes" : 196555 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 38412, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40807801, + "TaskId" : 425 + } + ], + "PeakMemoryUsageBytes" : 34035840, + "CpuTimeUs" : 11815013 + }, + { + "Tasks" : [ + { + "InputBytes" : 205097, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 11909, + "ComputeTimeUs" : 439400, + "InputChannels" : [ + { + "WaitTimeUs" : 41305255, + "ChannelId" : 31040, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9045343, + "ChannelId" : 35264, + "Rows" : 11909, + "SrcStageId" : 10, + "Bytes" : 205097 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 40352, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40832261, + "TaskId" : 447 + } + ], + "PeakMemoryUsageBytes" : 37216768, + "CpuTimeUs" : 12233749 + }, + { + "Tasks" : [ + { + "InputBytes" : 246389, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331626, + "InputRows" : 14273, + "ComputeTimeUs" : 503175, + "InputChannels" : [ + { + "WaitTimeUs" : 41290153, + "ChannelId" : 25608, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7964092, + "ChannelId" : 35496, + "Rows" : 14273, + "SrcStageId" : 10, + "Bytes" : 246389 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 43844, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40747391, + "TaskId" : 487 + } + ], + "PeakMemoryUsageBytes" : 31903360, + "CpuTimeUs" : 14091332 + }, + { + "Tasks" : [ + { + "InputBytes" : 211012, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331626, + "InputRows" : 12244, + "ComputeTimeUs" : 500452, + "InputChannels" : [ + { + "WaitTimeUs" : 41290884, + "ChannelId" : 24832, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4891899, + "ChannelId" : 34336, + "Rows" : 12244, + "SrcStageId" : 10, + "Bytes" : 211012 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 43165, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40751240, + "TaskId" : 479 + } + ], + "PeakMemoryUsageBytes" : 29527296, + "CpuTimeUs" : 13830150 + }, + { + "Tasks" : [ + { + "InputBytes" : 258301, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 14993, + "ComputeTimeUs" : 523835, + "InputChannels" : [ + { + "WaitTimeUs" : 41291198, + "ChannelId" : 29100, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8203934, + "ChannelId" : 35148, + "Rows" : 14993, + "SrcStageId" : 10, + "Bytes" : 258301 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 38606, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40722852, + "TaskId" : 427 + } + ], + "PeakMemoryUsageBytes" : 32768128, + "CpuTimeUs" : 14509743 + }, + { + "Tasks" : [ + { + "InputBytes" : 232445, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 13433, + "ComputeTimeUs" : 530578, + "InputChannels" : [ + { + "WaitTimeUs" : 41290983, + "ChannelId" : 31428, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6760820, + "ChannelId" : 34308, + "Rows" : 13433, + "SrcStageId" : 10, + "Bytes" : 232445 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 40740, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40711848, + "TaskId" : 451 + } + ], + "PeakMemoryUsageBytes" : 33685632, + "CpuTimeUs" : 14133364 + }, + { + "Tasks" : [ + { + "InputBytes" : 272954, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 15842, + "ComputeTimeUs" : 533009, + "InputChannels" : [ + { + "WaitTimeUs" : 41298164, + "ChannelId" : 26966, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 11288136, + "ChannelId" : 34742, + "Rows" : 15842, + "SrcStageId" : 10, + "Bytes" : 272954 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 36666, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40719231, + "TaskId" : 405 + } + ], + "PeakMemoryUsageBytes" : 35583232, + "CpuTimeUs" : 14812138 + }, + { + "Tasks" : [ + { + "InputBytes" : 211687, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12227, + "ComputeTimeUs" : 443995, + "InputChannels" : [ + { + "WaitTimeUs" : 41298175, + "ChannelId" : 30749, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9217590, + "ChannelId" : 34685, + "Rows" : 12227, + "SrcStageId" : 10, + "Bytes" : 211687 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 40061, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40814336, + "TaskId" : 444 + } + ], + "PeakMemoryUsageBytes" : 36165888, + "CpuTimeUs" : 12694370 + }, + { + "Tasks" : [ + { + "InputBytes" : 225924, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 13004, + "ComputeTimeUs" : 546476, + "InputChannels" : [ + { + "WaitTimeUs" : 41290884, + "ChannelId" : 33368, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6140319, + "ChannelId" : 34424, + "Rows" : 13004, + "SrcStageId" : 10, + "Bytes" : 225924 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 42486, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40700878, + "TaskId" : 471 + } + ], + "PeakMemoryUsageBytes" : 29783808, + "CpuTimeUs" : 13600905 + }, + { + "Tasks" : [ + { + "InputBytes" : 190168, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 11000, + "ComputeTimeUs" : 427646, + "InputChannels" : [ + { + "WaitTimeUs" : 41301428, + "ChannelId" : 27257, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5135855, + "ChannelId" : 33785, + "Rows" : 11000, + "SrcStageId" : 10, + "Bytes" : 190168 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 36957, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40840276, + "TaskId" : 408 + } + ], + "PeakMemoryUsageBytes" : 31932800, + "CpuTimeUs" : 11709546 + }, + { + "Tasks" : [ + { + "InputBytes" : 203087, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 11699, + "ComputeTimeUs" : 483119, + "InputChannels" : [ + { + "WaitTimeUs" : 41290993, + "ChannelId" : 32592, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5805433, + "ChannelId" : 34800, + "Rows" : 11699, + "SrcStageId" : 10, + "Bytes" : 203087 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 41807, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40765295, + "TaskId" : 463 + } + ], + "PeakMemoryUsageBytes" : 28537600, + "CpuTimeUs" : 13653201 + }, + { + "Tasks" : [ + { + "InputBytes" : 221132, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 12788, + "ComputeTimeUs" : 424148, + "InputChannels" : [ + { + "WaitTimeUs" : 41301483, + "ChannelId" : 30458, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7916987, + "ChannelId" : 34394, + "Rows" : 12788, + "SrcStageId" : 10, + "Bytes" : 221132 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 39867, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40835788, + "TaskId" : 441 + } + ], + "PeakMemoryUsageBytes" : 32571392, + "CpuTimeUs" : 11434626 + }, + { + "Tasks" : [ + { + "InputBytes" : 215839, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 12523, + "ComputeTimeUs" : 438089, + "InputChannels" : [ + { + "WaitTimeUs" : 41297143, + "ChannelId" : 25511, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9712039, + "ChannelId" : 33959, + "Rows" : 12523, + "SrcStageId" : 10, + "Bytes" : 215839 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 43752, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40825422, + "TaskId" : 486 + } + ], + "PeakMemoryUsageBytes" : 36168704, + "CpuTimeUs" : 12542823 + }, + { + "Tasks" : [ + { + "InputBytes" : 260180, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 15044, + "ComputeTimeUs" : 551884, + "InputChannels" : [ + { + "WaitTimeUs" : 41298244, + "ChannelId" : 26190, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 10941748, + "ChannelId" : 33582, + "Rows" : 15044, + "SrcStageId" : 10, + "Bytes" : 260180 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 35987, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40700737, + "TaskId" : 397 + } + ], + "PeakMemoryUsageBytes" : 35319552, + "CpuTimeUs" : 14614173 + }, + { + "Tasks" : [ + { + "InputBytes" : 264356, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331626, + "InputRows" : 15260, + "ComputeTimeUs" : 574314, + "InputChannels" : [ + { + "WaitTimeUs" : 41291094, + "ChannelId" : 26772, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7214189, + "ChannelId" : 34452, + "Rows" : 15260, + "SrcStageId" : 10, + "Bytes" : 264356 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 36472, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40669775, + "TaskId" : 403 + } + ], + "PeakMemoryUsageBytes" : 29969920, + "CpuTimeUs" : 14654346 + }, + { + "Tasks" : [ + { + "InputBytes" : 223743, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 12907, + "ComputeTimeUs" : 433496, + "InputChannels" : [ + { + "WaitTimeUs" : 41301530, + "ChannelId" : 28130, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5549878, + "ChannelId" : 33698, + "Rows" : 12907, + "SrcStageId" : 10, + "Bytes" : 223743 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 37733, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40834229, + "TaskId" : 417 + } + ], + "PeakMemoryUsageBytes" : 29944832, + "CpuTimeUs" : 11757531 + }, + { + "Tasks" : [ + { + "InputBytes" : 180400, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10472, + "ComputeTimeUs" : 419458, + "InputChannels" : [ + { + "WaitTimeUs" : 41301352, + "ChannelId" : 28712, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7466970, + "ChannelId" : 34568, + "Rows" : 10472, + "SrcStageId" : 10, + "Bytes" : 180400 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 38218, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40846366, + "TaskId" : 423 + } + ], + "PeakMemoryUsageBytes" : 23388544, + "CpuTimeUs" : 12728943 + }, + { + "Tasks" : [ + { + "InputBytes" : 240059, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13903, + "ComputeTimeUs" : 501474, + "InputChannels" : [ + { + "WaitTimeUs" : 41291336, + "ChannelId" : 26287, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8357182, + "ChannelId" : 35119, + "Rows" : 13903, + "SrcStageId" : 10, + "Bytes" : 240059 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 36084, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40748114, + "TaskId" : 398 + } + ], + "PeakMemoryUsageBytes" : 30050560, + "CpuTimeUs" : 14352900 + }, + { + "Tasks" : [ + { + "InputBytes" : 201149, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 11609, + "ComputeTimeUs" : 406389, + "InputChannels" : [ + { + "WaitTimeUs" : 41304497, + "ChannelId" : 32204, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8776980, + "ChannelId" : 34220, + "Rows" : 11609, + "SrcStageId" : 10, + "Bytes" : 201149 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 41419, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40864602, + "TaskId" : 459 + } + ], + "PeakMemoryUsageBytes" : 21479168, + "CpuTimeUs" : 11998423 + }, + { + "Tasks" : [ + { + "InputBytes" : 264942, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 15366, + "ComputeTimeUs" : 536095, + "InputChannels" : [ + { + "WaitTimeUs" : 41291135, + "ChannelId" : 30652, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7993923, + "ChannelId" : 34684, + "Rows" : 15366, + "SrcStageId" : 10, + "Bytes" : 264942 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 39968, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40715261, + "TaskId" : 443 + } + ], + "PeakMemoryUsageBytes" : 37283200, + "CpuTimeUs" : 14201107 + }, + { + "Tasks" : [ + { + "InputBytes" : 207837, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12009, + "ComputeTimeUs" : 431088, + "InputChannels" : [ + { + "WaitTimeUs" : 41303274, + "ChannelId" : 27160, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9068847, + "ChannelId" : 35032, + "Rows" : 12009, + "SrcStageId" : 10, + "Bytes" : 207837 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 36860, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40837728, + "TaskId" : 407 + } + ], + "PeakMemoryUsageBytes" : 36164992, + "CpuTimeUs" : 12822702 + }, + { + "Tasks" : [ + { + "InputBytes" : 239037, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 13833, + "ComputeTimeUs" : 514503, + "InputChannels" : [ + { + "WaitTimeUs" : 41298161, + "ChannelId" : 27742, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 10426282, + "ChannelId" : 34366, + "Rows" : 13833, + "SrcStageId" : 10, + "Bytes" : 239037 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 37345, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40742333, + "TaskId" : 413 + } + ], + "PeakMemoryUsageBytes" : 33284224, + "CpuTimeUs" : 14748437 + }, + { + "Tasks" : [ + { + "InputBytes" : 213742, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12358, + "ComputeTimeUs" : 499178, + "InputChannels" : [ + { + "WaitTimeUs" : 41298005, + "ChannelId" : 29294, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7018044, + "ChannelId" : 35438, + "Rows" : 12358, + "SrcStageId" : 10, + "Bytes" : 213742 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 38800, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40759177, + "TaskId" : 429 + } + ], + "PeakMemoryUsageBytes" : 29796864, + "CpuTimeUs" : 14631350 + }, + { + "Tasks" : [ + { + "InputBytes" : 179397, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10377, + "ComputeTimeUs" : 444414, + "InputChannels" : [ + { + "WaitTimeUs" : 41295551, + "ChannelId" : 32883, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6238758, + "ChannelId" : 33843, + "Rows" : 10377, + "SrcStageId" : 10, + "Bytes" : 179397 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 42001, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40816399, + "TaskId" : 466 + } + ], + "PeakMemoryUsageBytes" : 27659520, + "CpuTimeUs" : 12663461 + }, + { + "Tasks" : [ + { + "InputBytes" : 174021, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 10137, + "ComputeTimeUs" : 404223, + "InputChannels" : [ + { + "WaitTimeUs" : 41301470, + "ChannelId" : 31234, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6887261, + "ChannelId" : 35554, + "Rows" : 10137, + "SrcStageId" : 10, + "Bytes" : 174021 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 40546, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40859019, + "TaskId" : 449 + } + ], + "PeakMemoryUsageBytes" : 32833536, + "CpuTimeUs" : 11312888 + }, + { + "Tasks" : [ + { + "InputBytes" : 266824, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 15480, + "ComputeTimeUs" : 519641, + "InputChannels" : [ + { + "WaitTimeUs" : 41291048, + "ChannelId" : 30070, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8141645, + "ChannelId" : 33814, + "Rows" : 15480, + "SrcStageId" : 10, + "Bytes" : 266824 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 39479, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40731469, + "TaskId" : 437 + } + ], + "PeakMemoryUsageBytes" : 38258816, + "CpuTimeUs" : 14292828 + }, + { + "Tasks" : [ + { + "InputBytes" : 230225, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 13333, + "ComputeTimeUs" : 544517, + "InputChannels" : [ + { + "WaitTimeUs" : 41291257, + "ChannelId" : 28324, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6605945, + "ChannelId" : 33988, + "Rows" : 13333, + "SrcStageId" : 10, + "Bytes" : 230225 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 37927, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40701664, + "TaskId" : 419 + } + ], + "PeakMemoryUsageBytes" : 31887744, + "CpuTimeUs" : 14637293 + }, + { + "Tasks" : [ + { + "InputBytes" : 231349, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331626, + "InputRows" : 13425, + "ComputeTimeUs" : 560023, + "InputChannels" : [ + { + "WaitTimeUs" : 41291174, + "ChannelId" : 27548, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6633927, + "ChannelId" : 35612, + "Rows" : 13425, + "SrcStageId" : 10, + "Bytes" : 231349 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 37152, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40681661, + "TaskId" : 411 + } + ], + "PeakMemoryUsageBytes" : 29789440, + "CpuTimeUs" : 14578538 + }, + { + "Tasks" : [ + { + "InputBytes" : 214311, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 12403, + "ComputeTimeUs" : 504907, + "InputChannels" : [ + { + "WaitTimeUs" : 41298147, + "ChannelId" : 28518, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 7035299, + "ChannelId" : 34278, + "Rows" : 12403, + "SrcStageId" : 10, + "Bytes" : 214311 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 38032, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40743575, + "TaskId" : 421 + } + ], + "PeakMemoryUsageBytes" : 29789696, + "CpuTimeUs" : 14695271 + }, + { + "Tasks" : [ + { + "InputBytes" : 201295, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 11635, + "ComputeTimeUs" : 414231, + "InputChannels" : [ + { + "WaitTimeUs" : 41301334, + "ChannelId" : 31622, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5526733, + "ChannelId" : 34598, + "Rows" : 11635, + "SrcStageId" : 10, + "Bytes" : 201295 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 40934, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40853032, + "TaskId" : 453 + } + ], + "PeakMemoryUsageBytes" : 29856128, + "CpuTimeUs" : 11248903 + }, + { + "Tasks" : [ + { + "InputBytes" : 261587, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 15215, + "ComputeTimeUs" : 524204, + "InputChannels" : [ + { + "WaitTimeUs" : 41297171, + "ChannelId" : 25414, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5817139, + "ChannelId" : 35206, + "Rows" : 15215, + "SrcStageId" : 10, + "Bytes" : 261587 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 43747, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40733199, + "TaskId" : 485 + } + ], + "PeakMemoryUsageBytes" : 35577088, + "CpuTimeUs" : 14048791 + }, + { + "Tasks" : [ + { + "InputBytes" : 166728, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 9720, + "ComputeTimeUs" : 411471, + "InputChannels" : [ + { + "WaitTimeUs" : 41298051, + "ChannelId" : 32010, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 4948709, + "ChannelId" : 33930, + "Rows" : 9720, + "SrcStageId" : 10, + "Bytes" : 166728 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 41225, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40848210, + "TaskId" : 457 + } + ], + "PeakMemoryUsageBytes" : 29805184, + "CpuTimeUs" : 12171954 + }, + { + "Tasks" : [ + { + "InputBytes" : 181400, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10536, + "ComputeTimeUs" : 441985, + "InputChannels" : [ + { + "WaitTimeUs" : 41298260, + "ChannelId" : 27645, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8176266, + "ChannelId" : 34365, + "Rows" : 10536, + "SrcStageId" : 10, + "Bytes" : 181400 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 37248, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40816197, + "TaskId" : 412 + } + ], + "PeakMemoryUsageBytes" : 31317248, + "CpuTimeUs" : 12903868 + }, + { + "Tasks" : [ + { + "InputBytes" : 186308, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10804, + "ComputeTimeUs" : 390857, + "InputChannels" : [ + { + "WaitTimeUs" : 41305597, + "ChannelId" : 24444, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9195777, + "ChannelId" : 33756, + "Rows" : 10804, + "SrcStageId" : 10, + "Bytes" : 186308 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 42784, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40883840, + "TaskId" : 475 + } + ], + "PeakMemoryUsageBytes" : 28456960, + "CpuTimeUs" : 11421526 + }, + { + "Tasks" : [ + { + "InputBytes" : 200448, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 11624, + "ComputeTimeUs" : 479655, + "InputChannels" : [ + { + "WaitTimeUs" : 41291393, + "ChannelId" : 27936, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5566510, + "ChannelId" : 34656, + "Rows" : 11624, + "SrcStageId" : 10, + "Bytes" : 200448 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 37539, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40768651, + "TaskId" : 415 + } + ], + "PeakMemoryUsageBytes" : 31940864, + "CpuTimeUs" : 14005784 + }, + { + "Tasks" : [ + { + "InputBytes" : 241824, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 13952, + "ComputeTimeUs" : 500729, + "InputChannels" : [ + { + "WaitTimeUs" : 41291318, + "ChannelId" : 29391, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5678865, + "ChannelId" : 34191, + "Rows" : 13952, + "SrcStageId" : 10, + "Bytes" : 241824 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 38897, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40753661, + "TaskId" : 430 + } + ], + "PeakMemoryUsageBytes" : 29809024, + "CpuTimeUs" : 13951149 + }, + { + "Tasks" : [ + { + "InputBytes" : 229322, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 13402, + "ComputeTimeUs" : 443908, + "InputChannels" : [ + { + "WaitTimeUs" : 41300112, + "ChannelId" : 25802, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 6882995, + "ChannelId" : 35786, + "Rows" : 13402, + "SrcStageId" : 10, + "Bytes" : 229322 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 44038, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40822579, + "TaskId" : 489 + } + ], + "PeakMemoryUsageBytes" : 29805568, + "CpuTimeUs" : 11689921 + }, + { + "Tasks" : [ + { + "InputBytes" : 256873, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585331628, + "InputRows" : 14877, + "ComputeTimeUs" : 490994, + "InputChannels" : [ + { + "WaitTimeUs" : 41291237, + "ChannelId" : 30264, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8618588, + "ChannelId" : 34104, + "Rows" : 14877, + "SrcStageId" : 10, + "Bytes" : 256873 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 39673, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40763415, + "TaskId" : 439 + } + ], + "PeakMemoryUsageBytes" : 34050304, + "CpuTimeUs" : 13962254 + }, + { + "Tasks" : [ + { + "InputBytes" : 185887, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 10819, + "ComputeTimeUs" : 410499, + "InputChannels" : [ + { + "WaitTimeUs" : 41300131, + "ChannelId" : 25026, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 5446278, + "ChannelId" : 34626, + "Rows" : 10819, + "SrcStageId" : 10, + "Bytes" : 185887 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 43359, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40856698, + "TaskId" : 481 + } + ], + "PeakMemoryUsageBytes" : 29807360, + "CpuTimeUs" : 11219610 + }, + { + "Tasks" : [ + { + "InputBytes" : 234114, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331630, + "InputRows" : 13538, + "ComputeTimeUs" : 505670, + "InputChannels" : [ + { + "WaitTimeUs" : 41295839, + "ChannelId" : 28033, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 10010691, + "ChannelId" : 34945, + "Rows" : 13538, + "SrcStageId" : 10, + "Bytes" : 234114 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 37636, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40745693, + "TaskId" : 416 + } + ], + "PeakMemoryUsageBytes" : 33348608, + "CpuTimeUs" : 13172342 + }, + { + "Tasks" : [ + { + "InputBytes" : 272637, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585331627, + "InputRows" : 15785, + "ComputeTimeUs" : 544660, + "InputChannels" : [ + { + "WaitTimeUs" : 41291106, + "ChannelId" : 29876, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 8244610, + "ChannelId" : 33524, + "Rows" : 15785, + "SrcStageId" : 10, + "Bytes" : 272637 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 39285, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40705448, + "TaskId" : 435 + } + ], + "PeakMemoryUsageBytes" : 36167552, + "CpuTimeUs" : 14403358 + }, + { + "Tasks" : [ + { + "InputBytes" : 239345, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 13845, + "ComputeTimeUs" : 579307, + "InputChannels" : [ + { + "WaitTimeUs" : 41295800, + "ChannelId" : 27354, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 10184850, + "ChannelId" : 35322, + "Rows" : 13845, + "SrcStageId" : 10, + "Bytes" : 239345 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 37054, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40679459, + "TaskId" : 409 + } + ], + "PeakMemoryUsageBytes" : 34138624, + "CpuTimeUs" : 13225815 + }, + { + "Tasks" : [ + { + "InputBytes" : 224601, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585331629, + "InputRows" : 13069, + "ComputeTimeUs" : 463107, + "InputChannels" : [ + { + "WaitTimeUs" : 41305242, + "ChannelId" : 29973, + "SrcStageId" : 9 + }, + { + "WaitTimeUs" : 9652040, + "ChannelId" : 35061, + "Rows" : 13069, + "SrcStageId" : 10, + "Bytes" : 224601 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 39382, + "DstStageId" : 14 + } + ], + "WaitInputTimeUs" : 40804101, + "TaskId" : 436 + } + ], + "PeakMemoryUsageBytes" : 36168576, + "CpuTimeUs" : 12590350 + } + ], + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { }, + "Name" : "30", + "Push" : { + "WaitTimeUs" : { + "Count" : 83, + "Sum" : 3384135833, + "Max" : 40861837, + "Min" : 40629263 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 83, + "Sum" : 2939158528, + "Max" : 42991616, + "Min" : 26214400 + }, + "InputBytes" : { + "Count" : 83, + "Sum" : 17838653, + "Max" : 272954, + "Min" : 162593 + }, + "Tasks" : 83, + "InputRows" : { + "Count" : 83, + "Sum" : 1033473, + "Max" : 15842, + "Min" : 9445 + }, + "PhysicalStageId" : 11, + "StageDurationUs" : 0, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 83, + "Sum" : 3385601874, + "Max" : 40883840, + "Min" : 40669775 + }, + "CpuTimeUs" : { + "Count" : 83, + "Sum" : 38845893, + "Max" : 579554, + "Min" : 391015 + }, + "Input" : [ + { + "Pop" : { }, + "Name" : "26", + "Push" : { + "WaitTimeUs" : { + "Count" : 83, + "Sum" : 3427658779, + "Max" : 41306097, + "Min" : 41290153 + } + } + }, + { + "Pop" : { + "LastMessageMs" : { + "Count" : 83, + "Sum" : 3080242, + "Max" : 41208, + "Min" : 30176 + }, + "Rows" : { + "Count" : 83, + "Sum" : 1033473, + "Max" : 15842, + "Min" : 9445 + }, + "Chunks" : { + "Count" : 83, + "Sum" : 1598, + "Max" : 29, + "Min" : 13 + }, + "FirstMessageMs" : { + "Count" : 83, + "Sum" : 121070, + "Max" : 1461, + "Min" : 1456 + }, + "ActiveMessageMs" : { + "Count" : 83, + "Max" : 41208, + "Min" : 1456 + }, + "Bytes" : { + "Count" : 83, + "Sum" : 17838653, + "Max" : 272954, + "Min" : 162593 + }, + "ActiveTimeUs" : { + "Count" : 83, + "Sum" : 2959172000, + "Max" : 39750000, + "Min" : 28717000 + }, + "WaitPeriods" : { + "Count" : 23, + "Sum" : 23, + "Max" : 1, + "Min" : 1 + } + }, + "Name" : "6", + "Push" : { + "Rows" : { + "Count" : 83, + "Sum" : 1033473, + "Max" : 15842, + "Min" : 9445 + }, + "LastMessageMs" : { + "Count" : 83, + "Sum" : 3080242, + "Max" : 41208, + "Min" : 30176 + }, + "Chunks" : { + "Count" : 83, + "Sum" : 381610, + "Max" : 5816, + "Min" : 3461 + }, + "ResumeMessageMs" : { + "Count" : 83, + "Sum" : 3004291, + "Max" : 41091, + "Min" : 18529 + }, + "FirstMessageMs" : { + "Count" : 83, + "Sum" : 121070, + "Max" : 1461, + "Min" : 1456 + }, + "ActiveMessageMs" : { + "Count" : 83, + "Max" : 41208, + "Min" : 1456 + }, + "Bytes" : { + "Count" : 83, + "Sum" : 17838653, + "Max" : 272954, + "Min" : 162593 + }, + "PauseMessageMs" : { + "Count" : 83, + "Sum" : 60153, + "Max" : 767, + "Min" : 716 + }, + "ActiveTimeUs" : { + "Count" : 83, + "Sum" : 2959172000, + "Max" : 39750000, + "Min" : 28717000 + }, + "WaitTimeUs" : { + "Count" : 83, + "Sum" : 610574266, + "Max" : 11288136, + "Min" : 4050536 + }, + "WaitPeriods" : { + "Count" : 83, + "Sum" : 1046, + "Max" : 20, + "Min" : 8 + }, + "WaitMessageMs" : { + "Count" : 83, + "Max" : 41091, + "Min" : 716 + } + } + } + ] + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "l.l_suppkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 5, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/supplier" + ], + "PlanNodeId" : 4, + "Plans" : [ + { + "PlanNodeId" : 3, + "Plans" : [ + { + "PlanNodeId" : 2, + "Plans" : [ + { + "PlanNodeId" : 1, + "Node Type" : "UnionAll", + "PlanNodeType" : "Connection", + "CTE Name" : "TableFullScan_25" + } + ], + "Node Type" : "Stage", + "Stats" : { + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 40, + "Max" : 40, + "Min" : 40 + }, + "Rows" : { + "Count" : 1, + "Sum" : 1000, + "Max" : 1000, + "Min" : 1000 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 686, + "Max" : 686, + "Min" : 686 + }, + "ActiveMessageMs" : { + "Count" : 1, + "Max" : 686, + "Min" : 262 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 9280, + "Max" : 9280, + "Min" : 9280 + }, + "ActiveTimeUs" : { + "Count" : 1, + "Sum" : 424000, + "Max" : 424000, + "Min" : 424000 + } + }, + "Name" : "4", + "Push" : { + "LastMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "Rows" : { + "Count" : 1, + "Sum" : 1000, + "Max" : 1000, + "Min" : 1000 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 1000, + "Max" : 1000, + "Min" : 1000 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 251, + "Max" : 251, + "Min" : 251 + }, + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 30146, + "Max" : 30146, + "Min" : 30146 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 8, + "Max" : 8, + "Min" : 8 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 262, + "Min" : 251 + } + } + } + ], + "DurationUs" : { + "Count" : 1, + "Sum" : 428000, + "Max" : 428000, + "Min" : 428000 + }, + "MaxMemoryUsage" : { + "Count" : 1, + "Sum" : 1048576, + "Max" : 1048576, + "Min" : 1048576 + }, + "InputBytes" : { + "Count" : 1, + "Sum" : 232, + "Max" : 232, + "Min" : 232 + }, + "Tasks" : 1, + "OutputRows" : { + "Count" : 1, + "Sum" : 1000, + "Max" : 1000, + "Min" : 1000 + }, + "InputRows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "PhysicalStageId" : 12, + "StageDurationUs" : 428000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 1, + "Sum" : 253915, + "Max" : 253915, + "Min" : 253915 + }, + "OutputBytes" : { + "Count" : 1, + "Sum" : 9280, + "Max" : 9280, + "Min" : 9280 + }, + "CpuTimeUs" : { + "Count" : 1, + "Sum" : 557, + "Max" : 557, + "Min" : 557 + }, + "Input" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 232, + "Max" : 232, + "Min" : 232 + } + }, + "Name" : "12", + "Push" : { + "LastMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "Rows" : { + "Count" : 1, + "Sum" : 25, + "Max" : 25, + "Min" : 25 + }, + "Chunks" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "FirstMessageMs" : { + "Count" : 1, + "Sum" : 262, + "Max" : 262, + "Min" : 262 + }, + "Bytes" : { + "Count" : 1, + "Sum" : 232, + "Max" : 232, + "Min" : 232 + }, + "PauseMessageMs" : { + "Count" : 1, + "Sum" : 251, + "Max" : 251, + "Min" : 251 + }, + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 254085, + "Max" : 254085, + "Min" : 254085 + }, + "WaitPeriods" : { + "Count" : 1, + "Sum" : 1, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 1, + "Max" : 262, + "Min" : 251 + } + } + } + ] + } + } + ], + "Node Type" : "Broadcast", + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + }, + { + "ExternalPlanNodeId" : 3 + } + ], + "E-Rows" : "100000000", + "Condition" : "s.s_nationkey = n_1.n_nationkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "9497519768", + "E-Cost" : "300000067.5" + }, + { + "Scan" : "Parallel", + "E-Size" : "9497519768", + "ReadRanges" : [ + "s_suppkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "100000000", + "Table" : "column/tpch10000/supplier", + "ReadColumns" : [ + "s_nationkey", + "s_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 5 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "InnerJoin (MapJoin)-TableFullScan", + "Stats" : { + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 35, + "Sum" : 8357, + "Max" : 972, + "Min" : 88 + }, + "Rows" : { + "Count" : 35, + "Sum" : 36983734, + "Max" : 3929180, + "Min" : 487284 + }, + "LastMessageMs" : { + "Count" : 35, + "Sum" : 98624, + "Max" : 5278, + "Min" : 1242 + }, + "ActiveMessageMs" : { + "Count" : 35, + "Max" : 5278, + "Min" : 390 + }, + "FirstMessageMs" : { + "Count" : 35, + "Sum" : 50225, + "Max" : 4447, + "Min" : 390 + }, + "Bytes" : { + "Count" : 35, + "Sum" : 520350510, + "Max" : 55269193, + "Min" : 6859191 + }, + "ActiveTimeUs" : { + "Count" : 35, + "Sum" : 48399000, + "Max" : 4327000, + "Min" : 1000 + } + }, + "Name" : "30", + "Push" : { + "Rows" : { + "Count" : 35, + "Sum" : 87502024, + "Max" : 4773478, + "Min" : 828196 + }, + "LastMessageMs" : { + "Count" : 35, + "Sum" : 169240, + "Max" : 8845, + "Min" : 1389 + }, + "Chunks" : { + "Count" : 35, + "Sum" : 87502024, + "Max" : 4773478, + "Min" : 828196 + }, + "ResumeMessageMs" : { + "Count" : 35, + "Sum" : 104170, + "Max" : 7258, + "Min" : 1203 + }, + "FirstMessageMs" : { + "Count" : 35, + "Sum" : 38027, + "Max" : 3464, + "Min" : 329 + }, + "ActiveMessageMs" : { + "Count" : 35, + "Max" : 8845, + "Min" : 329 + }, + "PauseMessageMs" : { + "Count" : 35, + "Sum" : 25486, + "Max" : 2051, + "Min" : 328 + }, + "ActiveTimeUs" : { + "Count" : 35, + "Sum" : 131213000, + "Max" : 7150000, + "Min" : 1056000 + }, + "WaitTimeUs" : { + "Count" : 35, + "Sum" : 35226926, + "Max" : 5819913, + "Min" : 27384 + }, + "WaitPeriods" : { + "Count" : 35, + "Sum" : 10701, + "Max" : 1003, + "Min" : 132 + }, + "WaitMessageMs" : { + "Count" : 35, + "Max" : 7258, + "Min" : 328 + } + } + } + ], + "DurationUs" : { + "Count" : 35, + "Sum" : 162459000, + "Max" : 8590000, + "Min" : 1084000 + }, + "MaxMemoryUsage" : { + "Count" : 35, + "Sum" : 1101004800, + "Max" : 31457280, + "Min" : 31457280 + }, + "InputBytes" : { + "Count" : 35, + "Sum" : 8120, + "Max" : 232, + "Min" : 232 + }, + "Tasks" : 35, + "OutputRows" : { + "Count" : 35, + "Sum" : 36983734, + "Max" : 3929180, + "Min" : 487284 + }, + "InputRows" : { + "Count" : 35, + "Sum" : 875, + "Max" : 25, + "Min" : 25 + }, + "PhysicalStageId" : 13, + "StageDurationUs" : 8605000, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 35, + "Sum" : 68573020, + "Max" : 6324774, + "Min" : 145385 + }, + "OutputBytes" : { + "Count" : 35, + "Sum" : 520350510, + "Max" : 55269193, + "Min" : 6859191 + }, + "CpuTimeUs" : { + "Count" : 35, + "Sum" : 99922754, + "Max" : 5164473, + "Min" : 983109 + }, + "Input" : [ + { + "Pop" : { + "Chunks" : { + "Count" : 35, + "Sum" : 35, + "Max" : 1, + "Min" : 1 + }, + "Rows" : { + "Count" : 35, + "Sum" : 875, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 35, + "Sum" : 15461, + "Max" : 689, + "Min" : 263 + }, + "ActiveMessageMs" : { + "Count" : 35, + "Max" : 689, + "Min" : 263 + }, + "FirstMessageMs" : { + "Count" : 35, + "Sum" : 15461, + "Max" : 689, + "Min" : 263 + }, + "Bytes" : { + "Count" : 35, + "Sum" : 8120, + "Max" : 232, + "Min" : 232 + } + }, + "Name" : "2", + "Push" : { + "Rows" : { + "Count" : 35, + "Sum" : 875, + "Max" : 25, + "Min" : 25 + }, + "LastMessageMs" : { + "Count" : 35, + "Sum" : 15461, + "Max" : 689, + "Min" : 263 + }, + "Chunks" : { + "Count" : 35, + "Sum" : 35, + "Max" : 1, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 35, + "Sum" : 15461, + "Max" : 689, + "Min" : 263 + }, + "FirstMessageMs" : { + "Count" : 35, + "Sum" : 15461, + "Max" : 689, + "Min" : 263 + }, + "ActiveMessageMs" : { + "Count" : 35, + "Max" : 689, + "Min" : 263 + }, + "Bytes" : { + "Count" : 35, + "Sum" : 8120, + "Max" : 232, + "Min" : 232 + }, + "PauseMessageMs" : { + "Count" : 35, + "Sum" : 14172, + "Max" : 689, + "Min" : 25 + }, + "WaitTimeUs" : { + "Count" : 35, + "Sum" : 6379106, + "Max" : 477498, + "Min" : 341 + }, + "WaitPeriods" : { + "Count" : 35, + "Sum" : 35, + "Max" : 1, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 35, + "Max" : 689, + "Min" : 25 + } + } + } + ] + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "s.s_suppkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "GroupBy" : "item.o_year", + "Aggregation" : "{_yql_agg_0: SUM(If,state._yql_agg_0),_yql_agg_1: SUM(item.volume,state._yql_agg_1)}", + "Name" : "Aggregate" + }, + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 29 + }, + { + "ExternalPlanNodeId" : 5 + } + ], + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_suppkey = s.s_suppkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "2.405999809e+11" + } + ], + "Node Type" : "Aggregate-InnerJoin (Grace)", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "InputBytes" : 3519, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 250, + "ComputeTimeUs" : 6037, + "InputChannels" : [ + { + "WaitTimeUs" : 5295665, + "ChannelId" : 43262, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 380058, + "ChannelId" : 46958, + "Rows" : 250, + "SrcStageId" : 13, + "Bytes" : 3519 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 51216, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5289082, + "TaskId" : 571 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 285156 + }, + { + "Tasks" : [ + { + "InputBytes" : 3342, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330571, + "InputRows" : 237, + "ComputeTimeUs" : 6267, + "InputChannels" : [ + { + "WaitTimeUs" : 5289234, + "ChannelId" : 40934, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 383938, + "ChannelId" : 45686, + "Rows" : 237, + "SrcStageId" : 13, + "Bytes" : 3342 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55387, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5282449, + "TaskId" : 619 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 289726 + }, + { + "Tasks" : [ + { + "InputBytes" : 3552, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330566, + "InputRows" : 253, + "ComputeTimeUs" : 6418, + "InputChannels" : [ + { + "WaitTimeUs" : 5281344, + "ChannelId" : 37830, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 378601, + "ChannelId" : 47598, + "Rows" : 253, + "SrcStageId" : 13, + "Bytes" : 3552 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 53256, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5274183, + "TaskId" : 595 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 297219 + }, + { + "Tasks" : [ + { + "InputBytes" : 27552, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330730, + "InputRows" : 1982, + "ComputeTimeUs" : 5121, + "InputChannels" : [ + { + "WaitTimeUs" : 5312869, + "ChannelId" : 38412, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 539863, + "ChannelId" : 44308, + "Rows" : 1982, + "SrcStageId" : 13, + "Bytes" : 27552 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 50343, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5307273, + "TaskId" : 561 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 207656 + }, + { + "Tasks" : [ + { + "InputBytes" : 26654, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330757, + "InputRows" : 1912, + "ComputeTimeUs" : 5106, + "InputChannels" : [ + { + "WaitTimeUs" : 5288044, + "ChannelId" : 36084, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 566510, + "ChannelId" : 47700, + "Rows" : 1912, + "SrcStageId" : 13, + "Bytes" : 26654 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 54514, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5282609, + "TaskId" : 609 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 208864 + }, + { + "Tasks" : [ + { + "InputBytes" : 3888, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330884, + "InputRows" : 270, + "ComputeTimeUs" : 4501, + "InputChannels" : [ + { + "WaitTimeUs" : 5347850, + "ChannelId" : 36375, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 688294, + "ChannelId" : 45527, + "Rows" : 270, + "SrcStageId" : 13, + "Bytes" : 3888 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 49179, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5343037, + "TaskId" : 548 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 157515 + }, + { + "Tasks" : [ + { + "InputBytes" : 6640, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330609, + "InputRows" : 471, + "ComputeTimeUs" : 5205, + "InputChannels" : [ + { + "WaitTimeUs" : 4729448, + "ChannelId" : 42777, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 420949, + "ChannelId" : 44361, + "Rows" : 471, + "SrcStageId" : 13, + "Bytes" : 6640 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 54999, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4723788, + "TaskId" : 614 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 218248 + }, + { + "Tasks" : [ + { + "InputBytes" : 3616, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330570, + "InputRows" : 257, + "ComputeTimeUs" : 5124, + "InputChannels" : [ + { + "WaitTimeUs" : 4691963, + "ChannelId" : 40449, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 369681, + "ChannelId" : 47753, + "Rows" : 257, + "SrcStageId" : 13, + "Bytes" : 3616 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 51410, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4686460, + "TaskId" : 574 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 227378 + }, + { + "Tasks" : [ + { + "InputBytes" : 3160, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330566, + "InputRows" : 229, + "ComputeTimeUs" : 5161, + "InputChannels" : [ + { + "WaitTimeUs" : 5276288, + "ChannelId" : 40352, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 361953, + "ChannelId" : 45368, + "Rows" : 229, + "SrcStageId" : 13, + "Bytes" : 3160 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 50634, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5270654, + "TaskId" : 565 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 237045 + }, + { + "Tasks" : [ + { + "InputBytes" : 3157, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330566, + "InputRows" : 228, + "ComputeTimeUs" : 5104, + "InputChannels" : [ + { + "WaitTimeUs" : 5276474, + "ChannelId" : 44232, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 361075, + "ChannelId" : 47488, + "Rows" : 228, + "SrcStageId" : 13, + "Bytes" : 3157 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 51320, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5270741, + "TaskId" : 573 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 234296 + }, + { + "Tasks" : [ + { + "InputBytes" : 3439, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 241, + "ComputeTimeUs" : 5462, + "InputChannels" : [ + { + "WaitTimeUs" : 4737810, + "ChannelId" : 41128, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 357845, + "ChannelId" : 45792, + "Rows" : 241, + "SrcStageId" : 13, + "Bytes" : 3439 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 49276, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4731764, + "TaskId" : 549 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 242329 + }, + { + "Tasks" : [ + { + "InputBytes" : 26993, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330730, + "InputRows" : 1928, + "ComputeTimeUs" : 5065, + "InputChannels" : [ + { + "WaitTimeUs" : 5315812, + "ChannelId" : 35987, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 539591, + "ChannelId" : 45315, + "Rows" : 1928, + "SrcStageId" : 13, + "Bytes" : 26993 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 53738, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5310383, + "TaskId" : 600 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 205021 + }, + { + "Tasks" : [ + { + "InputBytes" : 3377, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330575, + "InputRows" : 241, + "ComputeTimeUs" : 6484, + "InputChannels" : [ + { + "WaitTimeUs" : 5287815, + "ChannelId" : 40158, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 384122, + "ChannelId" : 45262, + "Rows" : 241, + "SrcStageId" : 13, + "Bytes" : 3377 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 49082, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5280597, + "TaskId" : 547 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 287738 + }, + { + "Tasks" : [ + { + "InputBytes" : 3453, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330565, + "InputRows" : 246, + "ComputeTimeUs" : 6026, + "InputChannels" : [ + { + "WaitTimeUs" : 5308015, + "ChannelId" : 40740, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 370429, + "ChannelId" : 45580, + "Rows" : 246, + "SrcStageId" : 13, + "Bytes" : 3453 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 53835, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5301341, + "TaskId" : 601 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 251336 + }, + { + "Tasks" : [ + { + "InputBytes" : 3404, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330568, + "InputRows" : 242, + "ComputeTimeUs" : 5792, + "InputChannels" : [ + { + "WaitTimeUs" : 5304293, + "ChannelId" : 39964, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 380235, + "ChannelId" : 45156, + "Rows" : 242, + "SrcStageId" : 13, + "Bytes" : 3404 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55193, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5298020, + "TaskId" : 617 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 241092 + }, + { + "Tasks" : [ + { + "InputBytes" : 3499, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330569, + "InputRows" : 246, + "ComputeTimeUs" : 6176, + "InputChannels" : [ + { + "WaitTimeUs" : 5306381, + "ChannelId" : 39188, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 368449, + "ChannelId" : 44732, + "Rows" : 246, + "SrcStageId" : 13, + "Bytes" : 3499 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 48888, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5299754, + "TaskId" : 545 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 257324 + }, + { + "Tasks" : [ + { + "InputBytes" : 3771, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330564, + "InputRows" : 266, + "ComputeTimeUs" : 5653, + "InputChannels" : [ + { + "WaitTimeUs" : 5278988, + "ChannelId" : 37733, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 366098, + "ChannelId" : 46269, + "Rows" : 266, + "SrcStageId" : 13, + "Bytes" : 3771 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 52477, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5272782, + "TaskId" : 586 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 253455 + }, + { + "Tasks" : [ + { + "InputBytes" : 79851, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330565, + "InputRows" : 5679, + "ComputeTimeUs" : 6757, + "InputChannels" : [ + { + "WaitTimeUs" : 5308477, + "ChannelId" : 36957, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 443952, + "ChannelId" : 45845, + "Rows" : 5679, + "SrcStageId" : 13, + "Bytes" : 79851 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 53932, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5301216, + "TaskId" : 602 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 247540 + }, + { + "Tasks" : [ + { + "InputBytes" : 3107, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 222, + "ComputeTimeUs" : 5007, + "InputChannels" : [ + { + "WaitTimeUs" : 4672533, + "ChannelId" : 36569, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 356011, + "ChannelId" : 45633, + "Rows" : 222, + "SrcStageId" : 13, + "Bytes" : 3107 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 50731, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4667111, + "TaskId" : 566 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 218399 + }, + { + "Tasks" : [ + { + "InputBytes" : 3447, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330561, + "InputRows" : 245, + "ComputeTimeUs" : 5400, + "InputChannels" : [ + { + "WaitTimeUs" : 4701371, + "ChannelId" : 41904, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 353888, + "ChannelId" : 46216, + "Rows" : 245, + "SrcStageId" : 13, + "Bytes" : 3447 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 47821, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4695483, + "TaskId" : 533 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 243553 + }, + { + "Tasks" : [ + { + "InputBytes" : 145586, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330565, + "InputRows" : 10347, + "ComputeTimeUs" : 8298, + "InputChannels" : [ + { + "WaitTimeUs" : 5261874, + "ChannelId" : 40837, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 458821, + "ChannelId" : 47701, + "Rows" : 10347, + "SrcStageId" : 13, + "Bytes" : 145586 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 54611, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5252895, + "TaskId" : 610 + } + ], + "PeakMemoryUsageBytes" : 4194304, + "CpuTimeUs" : 254733 + }, + { + "Tasks" : [ + { + "InputBytes" : 3700, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330563, + "InputRows" : 265, + "ComputeTimeUs" : 5114, + "InputChannels" : [ + { + "WaitTimeUs" : 4705375, + "ChannelId" : 38121, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 350837, + "ChannelId" : 46481, + "Rows" : 265, + "SrcStageId" : 13, + "Bytes" : 3700 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 47918, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4699709, + "TaskId" : 534 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 214475 + }, + { + "Tasks" : [ + { + "InputBytes" : 3304, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330565, + "InputRows" : 231, + "ComputeTimeUs" : 4872, + "InputChannels" : [ + { + "WaitTimeUs" : 4703326, + "ChannelId" : 39577, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 359149, + "ChannelId" : 45209, + "Rows" : 231, + "SrcStageId" : 13, + "Bytes" : 3304 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 52186, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4698080, + "TaskId" : 582 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 224624 + }, + { + "Tasks" : [ + { + "InputBytes" : 3459, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330563, + "InputRows" : 244, + "ComputeTimeUs" : 6263, + "InputChannels" : [ + { + "WaitTimeUs" : 5291713, + "ChannelId" : 42486, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 378506, + "ChannelId" : 46534, + "Rows" : 244, + "SrcStageId" : 13, + "Bytes" : 3459 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 52574, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5284765, + "TaskId" : 587 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 285672 + }, + { + "Tasks" : [ + { + "InputBytes" : 3236, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330890, + "InputRows" : 222, + "ComputeTimeUs" : 3711, + "InputChannels" : [ + { + "WaitTimeUs" : 5267267, + "ChannelId" : 42583, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 695451, + "ChannelId" : 47599, + "Rows" : 222, + "SrcStageId" : 13, + "Bytes" : 3236 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 53350, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5263360, + "TaskId" : 596 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 150204 + }, + { + "Tasks" : [ + { + "InputBytes" : 26970, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330734, + "InputRows" : 1932, + "ComputeTimeUs" : 5583, + "InputChannels" : [ + { + "WaitTimeUs" : 5265483, + "ChannelId" : 42680, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 544526, + "ChannelId" : 46640, + "Rows" : 1932, + "SrcStageId" : 13, + "Bytes" : 26970 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 54223, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5259448, + "TaskId" : 605 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 239162 + }, + { + "Tasks" : [ + { + "InputBytes" : 3362, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330563, + "InputRows" : 234, + "ComputeTimeUs" : 6489, + "InputChannels" : [ + { + "WaitTimeUs" : 5283931, + "ChannelId" : 43359, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 382586, + "ChannelId" : 44679, + "Rows" : 234, + "SrcStageId" : 13, + "Bytes" : 3362 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 51992, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5276730, + "TaskId" : 580 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 291376 + }, + { + "Tasks" : [ + { + "InputBytes" : 3276, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330563, + "InputRows" : 234, + "ComputeTimeUs" : 6214, + "InputChannels" : [ + { + "WaitTimeUs" : 5315224, + "ChannelId" : 43068, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 367156, + "ChannelId" : 46852, + "Rows" : 234, + "SrcStageId" : 13, + "Bytes" : 3276 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 49567, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5308369, + "TaskId" : 553 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 258045 + }, + { + "Tasks" : [ + { + "InputBytes" : 203605, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330564, + "InputRows" : 14483, + "ComputeTimeUs" : 9196, + "InputChannels" : [ + { + "WaitTimeUs" : 5279533, + "ChannelId" : 36860, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 428520, + "ChannelId" : 47596, + "Rows" : 14483, + "SrcStageId" : 13, + "Bytes" : 203605 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 53156, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5269763, + "TaskId" : 593 + } + ], + "PeakMemoryUsageBytes" : 4194304, + "CpuTimeUs" : 252458 + }, + { + "Tasks" : [ + { + "InputBytes" : 26770, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330730, + "InputRows" : 1931, + "ComputeTimeUs" : 5807, + "InputChannels" : [ + { + "WaitTimeUs" : 5315186, + "ChannelId" : 41613, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 539397, + "ChannelId" : 47597, + "Rows" : 1931, + "SrcStageId" : 13, + "Bytes" : 26770 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 53253, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5309003, + "TaskId" : 594 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 216532 + }, + { + "Tasks" : [ + { + "InputBytes" : 27581, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330757, + "InputRows" : 1972, + "ComputeTimeUs" : 5437, + "InputChannels" : [ + { + "WaitTimeUs" : 5304070, + "ChannelId" : 36181, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 566106, + "ChannelId" : 45421, + "Rows" : 1972, + "SrcStageId" : 13, + "Bytes" : 27581 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55290, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5298202, + "TaskId" : 618 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 207906 + }, + { + "Tasks" : [ + { + "InputBytes" : 3120, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330894, + "InputRows" : 222, + "ComputeTimeUs" : 3695, + "InputChannels" : [ + { + "WaitTimeUs" : 5270069, + "ChannelId" : 38994, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 699339, + "ChannelId" : 44626, + "Rows" : 222, + "SrcStageId" : 13, + "Bytes" : 3120 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55096, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5266174, + "TaskId" : 615 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 144294 + }, + { + "Tasks" : [ + { + "InputBytes" : 3105, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330887, + "InputRows" : 222, + "ComputeTimeUs" : 3851, + "InputChannels" : [ + { + "WaitTimeUs" : 5261713, + "ChannelId" : 41322, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 682739, + "ChannelId" : 45898, + "Rows" : 222, + "SrcStageId" : 13, + "Bytes" : 3105 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 50828, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5257559, + "TaskId" : 567 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 149956 + }, + { + "Tasks" : [ + { + "InputBytes" : 3268, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330892, + "InputRows" : 230, + "ComputeTimeUs" : 3548, + "InputChannels" : [ + { + "WaitTimeUs" : 5260268, + "ChannelId" : 37442, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 680698, + "ChannelId" : 47650, + "Rows" : 230, + "SrcStageId" : 13, + "Bytes" : 3268 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 50149, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5256485, + "TaskId" : 559 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 145294 + }, + { + "Tasks" : [ + { + "InputBytes" : 2952, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330891, + "InputRows" : 209, + "ComputeTimeUs" : 3629, + "InputChannels" : [ + { + "WaitTimeUs" : 5278513, + "ChannelId" : 43650, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 696839, + "ChannelId" : 47170, + "Rows" : 209, + "SrcStageId" : 13, + "Bytes" : 2952 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 54320, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5274664, + "TaskId" : 607 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 150139 + }, + { + "Tasks" : [ + { + "InputBytes" : 3643, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330887, + "InputRows" : 257, + "ComputeTimeUs" : 3693, + "InputChannels" : [ + { + "WaitTimeUs" : 5261195, + "ChannelId" : 36666, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 684925, + "ChannelId" : 47754, + "Rows" : 257, + "SrcStageId" : 13, + "Bytes" : 3643 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 51507, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5257173, + "TaskId" : 575 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 149357 + }, + { + "Tasks" : [ + { + "InputBytes" : 3560, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330563, + "InputRows" : 254, + "ComputeTimeUs" : 5736, + "InputChannels" : [ + { + "WaitTimeUs" : 5315074, + "ChannelId" : 37636, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 367953, + "ChannelId" : 47756, + "Rows" : 254, + "SrcStageId" : 13, + "Bytes" : 3560 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 51701, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5308777, + "TaskId" : 577 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 250943 + }, + { + "Tasks" : [ + { + "InputBytes" : 3479, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330884, + "InputRows" : 242, + "ComputeTimeUs" : 3844, + "InputChannels" : [ + { + "WaitTimeUs" : 5272246, + "ChannelId" : 38218, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 676638, + "ChannelId" : 47546, + "Rows" : 242, + "SrcStageId" : 13, + "Bytes" : 3479 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 48694, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5268213, + "TaskId" : 543 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 148683 + }, + { + "Tasks" : [ + { + "InputBytes" : 3331, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330563, + "InputRows" : 245, + "ComputeTimeUs" : 5853, + "InputChannels" : [ + { + "WaitTimeUs" : 5303288, + "ChannelId" : 42292, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 368465, + "ChannelId" : 46428, + "Rows" : 245, + "SrcStageId" : 13, + "Bytes" : 3331 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 51022, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5296924, + "TaskId" : 569 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 252591 + }, + { + "Tasks" : [ + { + "InputBytes" : 3671, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330561, + "InputRows" : 257, + "ComputeTimeUs" : 5697, + "InputChannels" : [ + { + "WaitTimeUs" : 4742314, + "ChannelId" : 37248, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 352394, + "ChannelId" : 47544, + "Rows" : 257, + "SrcStageId" : 13, + "Bytes" : 3671 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 48504, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4736058, + "TaskId" : 541 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 251823 + }, + { + "Tasks" : [ + { + "InputBytes" : 3711, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 261, + "ComputeTimeUs" : 5457, + "InputChannels" : [ + { + "WaitTimeUs" : 5275570, + "ChannelId" : 36472, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 361003, + "ChannelId" : 47648, + "Rows" : 261, + "SrcStageId" : 13, + "Bytes" : 3711 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 49955, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5269623, + "TaskId" : 557 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 241114 + }, + { + "Tasks" : [ + { + "InputBytes" : 3533, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330561, + "InputRows" : 251, + "ComputeTimeUs" : 5128, + "InputChannels" : [ + { + "WaitTimeUs" : 4691905, + "ChannelId" : 42001, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 352547, + "ChannelId" : 47545, + "Rows" : 251, + "SrcStageId" : 13, + "Bytes" : 3533 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 48597, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4686284, + "TaskId" : 542 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 225977 + }, + { + "Tasks" : [ + { + "InputBytes" : 3370, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330568, + "InputRows" : 241, + "ComputeTimeUs" : 4772, + "InputChannels" : [ + { + "WaitTimeUs" : 4692310, + "ChannelId" : 39673, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 368219, + "ChannelId" : 47329, + "Rows" : 241, + "SrcStageId" : 13, + "Bytes" : 3370 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 52865, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4687121, + "TaskId" : 590 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 215481 + }, + { + "Tasks" : [ + { + "InputBytes" : 3970, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330561, + "InputRows" : 285, + "ComputeTimeUs" : 6508, + "InputChannels" : [ + { + "WaitTimeUs" : 5305646, + "ChannelId" : 39382, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 376712, + "ChannelId" : 44838, + "Rows" : 285, + "SrcStageId" : 13, + "Bytes" : 3970 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 50440, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5298579, + "TaskId" : 563 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 292090 + }, + { + "Tasks" : [ + { + "InputBytes" : 3406, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330574, + "InputRows" : 238, + "ComputeTimeUs" : 6782, + "InputChannels" : [ + { + "WaitTimeUs" : 5281552, + "ChannelId" : 36278, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 387251, + "ChannelId" : 47542, + "Rows" : 238, + "SrcStageId" : 13, + "Bytes" : 3406 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 48403, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5274085, + "TaskId" : 539 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 293360 + }, + { + "Tasks" : [ + { + "InputBytes" : 3565, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330892, + "InputRows" : 253, + "ComputeTimeUs" : 3664, + "InputChannels" : [ + { + "WaitTimeUs" : 5300108, + "ChannelId" : 35890, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 698318, + "ChannelId" : 47594, + "Rows" : 253, + "SrcStageId" : 13, + "Bytes" : 3565 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 52962, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5296147, + "TaskId" : 591 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 151859 + }, + { + "Tasks" : [ + { + "InputBytes" : 3275, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330892, + "InputRows" : 232, + "ComputeTimeUs" : 3456, + "InputChannels" : [ + { + "WaitTimeUs" : 5269509, + "ChannelId" : 39770, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 698363, + "ChannelId" : 45050, + "Rows" : 232, + "SrcStageId" : 13, + "Bytes" : 3275 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 53641, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5265776, + "TaskId" : 599 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 150966 + }, + { + "Tasks" : [ + { + "InputBytes" : 3447, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330886, + "InputRows" : 249, + "ComputeTimeUs" : 3948, + "InputChannels" : [ + { + "WaitTimeUs" : 5271489, + "ChannelId" : 42874, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 691642, + "ChannelId" : 46746, + "Rows" : 249, + "SrcStageId" : 13, + "Bytes" : 3447 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 48015, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5267151, + "TaskId" : 535 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 146858 + }, + { + "Tasks" : [ + { + "InputBytes" : 3799, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330890, + "InputRows" : 266, + "ComputeTimeUs" : 3701, + "InputChannels" : [ + { + "WaitTimeUs" : 5317623, + "ChannelId" : 38703, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 694643, + "ChannelId" : 46799, + "Rows" : 266, + "SrcStageId" : 13, + "Bytes" : 3799 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 52671, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5313718, + "TaskId" : 588 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 150299 + }, + { + "Tasks" : [ + { + "InputBytes" : 7046, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330619, + "InputRows" : 498, + "ComputeTimeUs" : 5496, + "InputChannels" : [ + { + "WaitTimeUs" : 5268664, + "ChannelId" : 38800, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 430432, + "ChannelId" : 44520, + "Rows" : 498, + "SrcStageId" : 13, + "Bytes" : 7046 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 53447, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5262707, + "TaskId" : 597 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 240148 + }, + { + "Tasks" : [ + { + "InputBytes" : 27097, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330730, + "InputRows" : 1929, + "ComputeTimeUs" : 5154, + "InputChannels" : [ + { + "WaitTimeUs" : 5334963, + "ChannelId" : 41516, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 539286, + "ChannelId" : 46004, + "Rows" : 1929, + "SrcStageId" : 13, + "Bytes" : 27097 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 52380, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5329464, + "TaskId" : 585 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 211366 + }, + { + "Tasks" : [ + { + "InputBytes" : 3953, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330561, + "InputRows" : 281, + "ComputeTimeUs" : 5119, + "InputChannels" : [ + { + "WaitTimeUs" : 4717254, + "ChannelId" : 37345, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 353517, + "ChannelId" : 46057, + "Rows" : 281, + "SrcStageId" : 13, + "Bytes" : 3953 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 49373, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4711706, + "TaskId" : 550 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 222741 + }, + { + "Tasks" : [ + { + "InputBytes" : 145345, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330567, + "InputRows" : 10324, + "ComputeTimeUs" : 8399, + "InputChannels" : [ + { + "WaitTimeUs" : 5235681, + "ChannelId" : 37054, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 454492, + "ChannelId" : 47702, + "Rows" : 10324, + "SrcStageId" : 13, + "Bytes" : 145345 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 54708, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5226678, + "TaskId" : 611 + } + ], + "PeakMemoryUsageBytes" : 4194304, + "CpuTimeUs" : 295357 + }, + { + "Tasks" : [ + { + "InputBytes" : 3538, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 250, + "ComputeTimeUs" : 6373, + "InputChannels" : [ + { + "WaitTimeUs" : 5277374, + "ChannelId" : 40255, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 370543, + "ChannelId" : 47647, + "Rows" : 250, + "SrcStageId" : 13, + "Bytes" : 3538 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 49858, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5270426, + "TaskId" : 556 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 290326 + }, + { + "Tasks" : [ + { + "InputBytes" : 26400, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330730, + "InputRows" : 1870, + "ComputeTimeUs" : 5167, + "InputChannels" : [ + { + "WaitTimeUs" : 5300363, + "ChannelId" : 42389, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 539584, + "ChannelId" : 47757, + "Rows" : 1870, + "SrcStageId" : 13, + "Bytes" : 26400 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 51798, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5294877, + "TaskId" : 578 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 209101 + }, + { + "Tasks" : [ + { + "InputBytes" : 3531, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330886, + "InputRows" : 251, + "ComputeTimeUs" : 3736, + "InputChannels" : [ + { + "WaitTimeUs" : 5271580, + "ChannelId" : 42098, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 679122, + "ChannelId" : 46322, + "Rows" : 251, + "SrcStageId" : 13, + "Bytes" : 3531 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 49470, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5267599, + "TaskId" : 551 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 147994 + }, + { + "Tasks" : [ + { + "InputBytes" : 6018, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330618, + "InputRows" : 424, + "ComputeTimeUs" : 5506, + "InputChannels" : [ + { + "WaitTimeUs" : 5270518, + "ChannelId" : 43456, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 429317, + "ChannelId" : 47064, + "Rows" : 424, + "SrcStageId" : 13, + "Bytes" : 6018 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 52768, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5264567, + "TaskId" : 589 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 241695 + }, + { + "Tasks" : [ + { + "InputBytes" : 27610, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330730, + "InputRows" : 1971, + "ComputeTimeUs" : 5020, + "InputChannels" : [ + { + "WaitTimeUs" : 5334342, + "ChannelId" : 38509, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 540106, + "ChannelId" : 46693, + "Rows" : 1971, + "SrcStageId" : 13, + "Bytes" : 27610 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 51119, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5328909, + "TaskId" : 570 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 207248 + }, + { + "Tasks" : [ + { + "InputBytes" : 27064, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330730, + "InputRows" : 1940, + "ComputeTimeUs" : 5737, + "InputChannels" : [ + { + "WaitTimeUs" : 5274249, + "ChannelId" : 43941, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 539671, + "ChannelId" : 44997, + "Rows" : 1940, + "SrcStageId" : 13, + "Bytes" : 27064 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 48985, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5268015, + "TaskId" : 546 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 213930 + }, + { + "Tasks" : [ + { + "InputBytes" : 3640, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330566, + "InputRows" : 259, + "ComputeTimeUs" : 5195, + "InputChannels" : [ + { + "WaitTimeUs" : 4694466, + "ChannelId" : 43553, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 366095, + "ChannelId" : 44785, + "Rows" : 259, + "SrcStageId" : 13, + "Bytes" : 3640 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 53544, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4688736, + "TaskId" : 598 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 225524 + }, + { + "Tasks" : [ + { + "InputBytes" : 145016, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330568, + "InputRows" : 10282, + "ComputeTimeUs" : 8073, + "InputChannels" : [ + { + "WaitTimeUs" : 4699842, + "ChannelId" : 38897, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 438225, + "ChannelId" : 46905, + "Rows" : 10282, + "SrcStageId" : 13, + "Bytes" : 145016 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 54224, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4691384, + "TaskId" : 606 + } + ], + "PeakMemoryUsageBytes" : 4194304, + "CpuTimeUs" : 239951 + }, + { + "Tasks" : [ + { + "InputBytes" : 3357, + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330562, + "InputRows" : 235, + "ComputeTimeUs" : 4930, + "InputChannels" : [ + { + "WaitTimeUs" : 4680746, + "ChannelId" : 41225, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 358070, + "ChannelId" : 47649, + "Rows" : 235, + "SrcStageId" : 13, + "Bytes" : 3357 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 50052, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 4675458, + "TaskId" : 558 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 214074 + }, + { + "Tasks" : [ + { + "InputBytes" : 26926, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330737, + "InputRows" : 1916, + "ComputeTimeUs" : 5855, + "InputChannels" : [ + { + "WaitTimeUs" : 5274475, + "ChannelId" : 38024, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 538044, + "ChannelId" : 47704, + "Rows" : 1916, + "SrcStageId" : 13, + "Bytes" : 26926 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 54902, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5268078, + "TaskId" : 613 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 245590 + }, + { + "Tasks" : [ + { + "InputBytes" : 3436, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330889, + "InputRows" : 243, + "ComputeTimeUs" : 3645, + "InputChannels" : [ + { + "WaitTimeUs" : 5292244, + "ChannelId" : 39479, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 681321, + "ChannelId" : 47223, + "Rows" : 243, + "SrcStageId" : 13, + "Bytes" : 3436 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 51313, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5288246, + "TaskId" : 572 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 148041 + }, + { + "Tasks" : [ + { + "InputBytes" : 147248, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330563, + "InputRows" : 10451, + "ComputeTimeUs" : 8554, + "InputChannels" : [ + { + "WaitTimeUs" : 5315896, + "ChannelId" : 43165, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 476152, + "ChannelId" : 44573, + "Rows" : 10451, + "SrcStageId" : 13, + "Bytes" : 147248 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 50352, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5306759, + "TaskId" : 562 + } + ], + "PeakMemoryUsageBytes" : 4194304, + "CpuTimeUs" : 260091 + }, + { + "Tasks" : [ + { + "InputBytes" : 3404, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330889, + "InputRows" : 242, + "ComputeTimeUs" : 3757, + "InputChannels" : [ + { + "WaitTimeUs" : 5256891, + "ChannelId" : 38606, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 693856, + "ChannelId" : 44414, + "Rows" : 242, + "SrcStageId" : 13, + "Bytes" : 3404 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 51895, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5252879, + "TaskId" : 579 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 146872 + }, + { + "Tasks" : [ + { + "InputBytes" : 3404, + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330567, + "InputRows" : 243, + "ComputeTimeUs" : 5394, + "InputChannels" : [ + { + "WaitTimeUs" : 5280076, + "ChannelId" : 39576, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 364778, + "ChannelId" : 44944, + "Rows" : 243, + "SrcStageId" : 13, + "Bytes" : 3404 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 52089, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5274286, + "TaskId" : 581 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 237671 + }, + { + "Tasks" : [ + { + "InputBytes" : 3485, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330893, + "InputRows" : 241, + "ComputeTimeUs" : 3587, + "InputChannels" : [ + { + "WaitTimeUs" : 5267832, + "ChannelId" : 41710, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 697533, + "ChannelId" : 46110, + "Rows" : 241, + "SrcStageId" : 13, + "Bytes" : 3485 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 54029, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5263959, + "TaskId" : 603 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 144573 + }, + { + "Tasks" : [ + { + "InputBytes" : 3187, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330895, + "InputRows" : 222, + "ComputeTimeUs" : 3591, + "InputChannels" : [ + { + "WaitTimeUs" : 5269617, + "ChannelId" : 37151, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 699161, + "ChannelId" : 45951, + "Rows" : 222, + "SrcStageId" : 13, + "Bytes" : 3187 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55484, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5265892, + "TaskId" : 620 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 146768 + }, + { + "Tasks" : [ + { + "InputBytes" : 3838, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330893, + "InputRows" : 268, + "ComputeTimeUs" : 3595, + "InputChannels" : [ + { + "WaitTimeUs" : 5265534, + "ChannelId" : 41807, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 697750, + "ChannelId" : 47703, + "Rows" : 268, + "SrcStageId" : 13, + "Bytes" : 3838 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 54805, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5261768, + "TaskId" : 612 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 144799 + }, + { + "Tasks" : [ + { + "InputBytes" : 3449, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330887, + "InputRows" : 246, + "ComputeTimeUs" : 3663, + "InputChannels" : [ + { + "WaitTimeUs" : 5277485, + "ChannelId" : 44135, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 677597, + "ChannelId" : 45103, + "Rows" : 246, + "SrcStageId" : 13, + "Bytes" : 3449 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 50537, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5273603, + "TaskId" : 564 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 150437 + }, + { + "Tasks" : [ + { + "InputBytes" : 3367, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330883, + "InputRows" : 239, + "ComputeTimeUs" : 3969, + "InputChannels" : [ + { + "WaitTimeUs" : 5302965, + "ChannelId" : 41031, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 686243, + "ChannelId" : 47543, + "Rows" : 239, + "SrcStageId" : 13, + "Bytes" : 3367 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 48500, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5298675, + "TaskId" : 540 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 157275 + }, + { + "Tasks" : [ + { + "InputBytes" : 26902, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330729, + "InputRows" : 1913, + "ComputeTimeUs" : 5054, + "InputChannels" : [ + { + "WaitTimeUs" : 5298455, + "ChannelId" : 39285, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 538720, + "ChannelId" : 47117, + "Rows" : 1913, + "SrcStageId" : 13, + "Bytes" : 26902 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 49664, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5293024, + "TaskId" : 554 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 206211 + }, + { + "Tasks" : [ + { + "InputBytes" : 3526, + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330886, + "InputRows" : 251, + "ComputeTimeUs" : 3790, + "InputChannels" : [ + { + "WaitTimeUs" : 5313822, + "ChannelId" : 44038, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 687090, + "ChannelId" : 47382, + "Rows" : 251, + "SrcStageId" : 13, + "Bytes" : 3526 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 49761, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5309702, + "TaskId" : 555 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 152019 + }, + { + "Tasks" : [ + { + "InputBytes" : 3339, + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330889, + "InputRows" : 237, + "ComputeTimeUs" : 3688, + "InputChannels" : [ + { + "WaitTimeUs" : 5261875, + "ChannelId" : 40546, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 687966, + "ChannelId" : 45474, + "Rows" : 237, + "SrcStageId" : 13, + "Bytes" : 3339 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 52283, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5257943, + "TaskId" : 583 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 150326 + }, + { + "Tasks" : [ + { + "InputBytes" : 3332, + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330569, + "InputRows" : 232, + "ComputeTimeUs" : 5880, + "InputChannels" : [ + { + "WaitTimeUs" : 5305792, + "ChannelId" : 40061, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 363647, + "ChannelId" : 47541, + "Rows" : 232, + "SrcStageId" : 13, + "Bytes" : 3332 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 48306, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5299410, + "TaskId" : 538 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 253841 + }, + { + "Tasks" : [ + { + "InputBytes" : 25877, + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330728, + "InputRows" : 1865, + "ComputeTimeUs" : 5157, + "InputChannels" : [ + { + "WaitTimeUs" : 5268011, + "ChannelId" : 43844, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 537863, + "ChannelId" : 47276, + "Rows" : 1865, + "SrcStageId" : 13, + "Bytes" : 25877 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 48209, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5262485, + "TaskId" : 537 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 208155 + }, + { + "Tasks" : [ + { + "InputBytes" : 3714, + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330565, + "InputRows" : 266, + "ComputeTimeUs" : 6305, + "InputChannels" : [ + { + "WaitTimeUs" : 5269929, + "ChannelId" : 37927, + "SrcStageId" : 11 + }, + { + "WaitTimeUs" : 380614, + "ChannelId" : 46375, + "Rows" : 266, + "SrcStageId" : 13, + "Bytes" : 3714 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 54126, + "DstStageId" : 15 + } + ], + "WaitInputTimeUs" : 5263084, + "TaskId" : 604 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 288300 + } + ], + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { }, + "Name" : "32", + "Push" : { + "WaitTimeUs" : { + "Count" : 78, + "Sum" : 359651191, + "Max" : 4826923, + "Min" : 4135490 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 78, + "Sum" : 123731968, + "Max" : 9437184, + "Min" : 1048576 + }, + "InputBytes" : { + "Count" : 78, + "Sum" : 1430524, + "Max" : 203605, + "Min" : 2952 + }, + "Tasks" : 78, + "InputRows" : { + "Count" : 78, + "Sum" : 101743, + "Max" : 14483, + "Min" : 209 + }, + "PhysicalStageId" : 14, + "StageDurationUs" : 0, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 78, + "Sum" : 403809881, + "Max" : 5343037, + "Min" : 4667111 + }, + "CpuTimeUs" : { + "Count" : 78, + "Sum" : 428389, + "Max" : 9395, + "Min" : 3624 + }, + "Input" : [ + { + "Pop" : { }, + "Name" : "28", + "Push" : { + "WaitTimeUs" : { + "Count" : 78, + "Sum" : 404254989, + "Max" : 5347850, + "Min" : 4672533 + } + } + }, + { + "Pop" : { + "LastMessageMs" : { + "Count" : 78, + "Sum" : 58277, + "Max" : 4700, + "Min" : 391 + }, + "Rows" : { + "Count" : 78, + "Sum" : 101743, + "Max" : 14483, + "Min" : 209 + }, + "Chunks" : { + "Count" : 78, + "Sum" : 84, + "Max" : 2, + "Min" : 1 + }, + "FirstMessageMs" : { + "Count" : 78, + "Sum" : 40298, + "Max" : 725, + "Min" : 391 + }, + "ActiveMessageMs" : { + "Count" : 78, + "Max" : 4700, + "Min" : 391 + }, + "Bytes" : { + "Count" : 78, + "Sum" : 1430524, + "Max" : 203605, + "Min" : 2952 + }, + "ActiveTimeUs" : { + "Count" : 6, + "Sum" : 17979000, + "Max" : 4307000, + "Min" : 2357000 + }, + "WaitPeriods" : { + "Count" : 6, + "Sum" : 6, + "Max" : 1, + "Min" : 1 + } + }, + "Name" : "4", + "Push" : { + "Rows" : { + "Count" : 78, + "Sum" : 101743, + "Max" : 14483, + "Min" : 209 + }, + "LastMessageMs" : { + "Count" : 78, + "Sum" : 58277, + "Max" : 4700, + "Min" : 391 + }, + "Chunks" : { + "Count" : 78, + "Sum" : 91, + "Max" : 6, + "Min" : 1 + }, + "ResumeMessageMs" : { + "Count" : 78, + "Sum" : 58271, + "Max" : 4698, + "Min" : 391 + }, + "FirstMessageMs" : { + "Count" : 78, + "Sum" : 40298, + "Max" : 725, + "Min" : 391 + }, + "ActiveMessageMs" : { + "Count" : 78, + "Max" : 4700, + "Min" : 391 + }, + "Bytes" : { + "Count" : 78, + "Sum" : 1430524, + "Max" : 203605, + "Min" : 2952 + }, + "PauseMessageMs" : { + "Count" : 78, + "Sum" : 39238, + "Max" : 723, + "Min" : 365 + }, + "ActiveTimeUs" : { + "Count" : 6, + "Sum" : 17979000, + "Max" : 4307000, + "Min" : 2357000 + }, + "WaitTimeUs" : { + "Count" : 78, + "Sum" : 38728080, + "Max" : 699339, + "Min" : 350837 + }, + "WaitPeriods" : { + "Count" : 78, + "Sum" : 84, + "Max" : 2, + "Min" : 1 + }, + "WaitMessageMs" : { + "Count" : 78, + "Max" : 4698, + "Min" : 365 + } + } + } + ] + } + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "o_year" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 31 + } + ], + "SortBy" : "row.o_year", + "Name" : "Sort" + } + ], + "Node Type" : "Sort", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330182, + "ComputeTimeUs" : 1018, + "InputChannels" : [ + { + "WaitTimeUs" : 703749, + "ChannelId" : 49567, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55551, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702733, + "TaskId" : 628 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 191260 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 944, + "InputChannels" : [ + { + "WaitTimeUs" : 703649, + "ChannelId" : 48694, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55558, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702715, + "TaskId" : 635 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 198786 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 1038, + "InputChannels" : [ + { + "WaitTimeUs" : 702739, + "ChannelId" : 52574, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55566, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 701696, + "TaskId" : 643 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 164148 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 666, + "InputChannels" : [ + { + "WaitTimeUs" : 702143, + "ChannelId" : 50440, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55544, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 701538, + "TaskId" : 621 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 182808 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 497, + "InputChannels" : [ + { + "WaitTimeUs" : 700374, + "ChannelId" : 55193, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55545, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699941, + "TaskId" : 622 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 166264 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 563, + "InputChannels" : [ + { + "WaitTimeUs" : 700607, + "ChannelId" : 54320, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55552, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 700079, + "TaskId" : 629 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 213703 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 485, + "InputChannels" : [ + { + "WaitTimeUs" : 704950, + "ChannelId" : 50537, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55553, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 704537, + "TaskId" : 630 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 174771 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330184, + "ComputeTimeUs" : 1082, + "InputChannels" : [ + { + "WaitTimeUs" : 702897, + "ChannelId" : 52671, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55575, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 701779, + "TaskId" : 652 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 171836 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 1069, + "InputChannels" : [ + { + "WaitTimeUs" : 708005, + "ChannelId" : 52380, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55548, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 706927, + "TaskId" : 625 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 168774 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 74, + "InputChannels" : [ + { + "WaitTimeUs" : 698158, + "ChannelId" : 53350, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55550, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 698238, + "TaskId" : 627 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 142730 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 634, + "InputChannels" : [ + { + "WaitTimeUs" : 699360, + "ChannelId" : 49664, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55560, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 698777, + "TaskId" : 637 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 176594 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 1088, + "InputChannels" : [ + { + "WaitTimeUs" : 702993, + "ChannelId" : 51798, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55582, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 701911, + "TaskId" : 659 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 169313 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 1065, + "InputChannels" : [ + { + "WaitTimeUs" : 703234, + "ChannelId" : 50926, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55590, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702172, + "TaskId" : 667 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 158849 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 497, + "InputChannels" : [ + { + "WaitTimeUs" : 716254, + "ChannelId" : 54417, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55561, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 715824, + "TaskId" : 638 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 181672 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 985, + "InputChannels" : [ + { + "WaitTimeUs" : 700690, + "ChannelId" : 51023, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55599, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699693, + "TaskId" : 676 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 196641 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 649, + "InputChannels" : [ + { + "WaitTimeUs" : 699956, + "ChannelId" : 53544, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55568, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699348, + "TaskId" : 645 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 175187 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330189, + "ComputeTimeUs" : 976, + "InputChannels" : [ + { + "WaitTimeUs" : 699666, + "ChannelId" : 54902, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55606, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 698670, + "TaskId" : 683 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 169877 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 471, + "InputChannels" : [ + { + "WaitTimeUs" : 722587, + "ChannelId" : 49761, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55569, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 722176, + "TaskId" : 646 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 190066 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 465, + "InputChannels" : [ + { + "WaitTimeUs" : 702437, + "ChannelId" : 53641, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55577, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702042, + "TaskId" : 654 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 178033 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 540, + "InputChannels" : [ + { + "WaitTimeUs" : 707309, + "ChannelId" : 48985, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55585, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 706828, + "TaskId" : 662 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 184737 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 87, + "InputChannels" : [ + { + "WaitTimeUs" : 696762, + "ChannelId" : 53447, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55559, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 696838, + "TaskId" : 636 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 144954 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330185, + "ComputeTimeUs" : 1194, + "InputChannels" : [ + { + "WaitTimeUs" : 702811, + "ChannelId" : 50246, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55614, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 701601, + "TaskId" : 691 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 184004 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 50, + "InputChannels" : [ + { + "WaitTimeUs" : 697584, + "ChannelId" : 48791, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55567, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 697651, + "TaskId" : 644 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 151767 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 885, + "InputChannels" : [ + { + "WaitTimeUs" : 703063, + "ChannelId" : 52477, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55557, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702177, + "TaskId" : 634 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 169498 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 964, + "InputChannels" : [ + { + "WaitTimeUs" : 703366, + "ChannelId" : 51604, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55564, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702402, + "TaskId" : 641 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 176885 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 641, + "InputChannels" : [ + { + "WaitTimeUs" : 699233, + "ChannelId" : 48888, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55576, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 698652, + "TaskId" : 653 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 198116 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330183, + "ComputeTimeUs" : 1047, + "InputChannels" : [ + { + "WaitTimeUs" : 703993, + "ChannelId" : 50343, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55623, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702943, + "TaskId" : 700 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 162576 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 72, + "InputChannels" : [ + { + "WaitTimeUs" : 699482, + "ChannelId" : 47918, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55574, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699562, + "TaskId" : 651 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 156915 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 53, + "InputChannels" : [ + { + "WaitTimeUs" : 708015, + "ChannelId" : 48015, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55583, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 708092, + "TaskId" : 660 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 157334 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 806, + "InputChannels" : [ + { + "WaitTimeUs" : 703343, + "ChannelId" : 50829, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55581, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702569, + "TaskId" : 658 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 165948 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 972, + "InputChannels" : [ + { + "WaitTimeUs" : 705877, + "ChannelId" : 55484, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55572, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 704900, + "TaskId" : 649 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 170824 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330180, + "ComputeTimeUs" : 1024, + "InputChannels" : [ + { + "WaitTimeUs" : 706601, + "ChannelId" : 49470, + "SrcStageId" : 14 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55630, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 705539, + "TaskId" : 707 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 167247 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 576, + "InputChannels" : [ + { + "WaitTimeUs" : 698127, + "ChannelId" : 52768, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55584, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 697601, + "TaskId" : 661 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 175232 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 691, + "InputChannels" : [ + { + "WaitTimeUs" : 704964, + "ChannelId" : 48112, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55592, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 704316, + "TaskId" : 669 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 175778 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 535, + "InputChannels" : [ + { + "WaitTimeUs" : 700289, + "ChannelId" : 51992, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55600, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699804, + "TaskId" : 677 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 178189 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 574, + "InputChannels" : [ + { + "WaitTimeUs" : 701965, + "ChannelId" : 51120, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55608, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 701439, + "TaskId" : 685 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 172363 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 60, + "InputChannels" : [ + { + "WaitTimeUs" : 710769, + "ChannelId" : 51895, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55591, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 710841, + "TaskId" : 668 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 141222 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 815, + "InputChannels" : [ + { + "WaitTimeUs" : 705718, + "ChannelId" : 50052, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55596, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 704920, + "TaskId" : 673 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 171139 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330186, + "ComputeTimeUs" : 811, + "InputChannels" : [ + { + "WaitTimeUs" : 705323, + "ChannelId" : 54708, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55588, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 704525, + "TaskId" : 665 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 168264 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 880, + "InputChannels" : [ + { + "WaitTimeUs" : 711786, + "ChannelId" : 50149, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55605, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 710877, + "TaskId" : 682 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 166670 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 768, + "InputChannels" : [ + { + "WaitTimeUs" : 706972, + "ChannelId" : 49276, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55612, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 706222, + "TaskId" : 689 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 169876 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 58, + "InputChannels" : [ + { + "WaitTimeUs" : 712096, + "ChannelId" : 51022, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55598, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 712172, + "TaskId" : 675 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 140786 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 485, + "InputChannels" : [ + { + "WaitTimeUs" : 707235, + "ChannelId" : 48209, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55601, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 706820, + "TaskId" : 678 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 173900 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330189, + "ComputeTimeUs" : 612, + "InputChannels" : [ + { + "WaitTimeUs" : 701213, + "ChannelId" : 51216, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55616, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 700641, + "TaskId" : 693 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 176857 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 448, + "InputChannels" : [ + { + "WaitTimeUs" : 714123, + "ChannelId" : 52865, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55593, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 713736, + "TaskId" : 670 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 174357 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0011.search.yandex.net", + "StartTimeMs" : 1726585330189, + "ComputeTimeUs" : 638, + "InputChannels" : [ + { + "WaitTimeUs" : 698389, + "ChannelId" : 55096, + "SrcStageId" : 14 + } + ], + "NodeId" : 50004, + "OutputChannels" : [ + { + "ChannelId" : 55624, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 697804, + "TaskId" : 701 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 166190 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 779, + "InputChannels" : [ + { + "WaitTimeUs" : 707755, + "ChannelId" : 53156, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55620, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 706999, + "TaskId" : 697 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 190139 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 54, + "InputChannels" : [ + { + "WaitTimeUs" : 721343, + "ChannelId" : 54999, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55615, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 721420, + "TaskId" : 692 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 152646 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330196, + "ComputeTimeUs" : 57, + "InputChannels" : [ + { + "WaitTimeUs" : 721033, + "ChannelId" : 54126, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55622, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 721107, + "TaskId" : 699 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 159804 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330195, + "ComputeTimeUs" : 73, + "InputChannels" : [ + { + "WaitTimeUs" : 716027, + "ChannelId" : 51119, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55607, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 716096, + "TaskId" : 684 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 173074 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 438, + "InputChannels" : [ + { + "WaitTimeUs" : 716726, + "ChannelId" : 52089, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55609, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 716353, + "TaskId" : 686 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 182195 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 453, + "InputChannels" : [ + { + "WaitTimeUs" : 696154, + "ChannelId" : 48597, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55549, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 695788, + "TaskId" : 626 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 185133 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 487, + "InputChannels" : [ + { + "WaitTimeUs" : 703924, + "ChannelId" : 47821, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55565, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 703516, + "TaskId" : 642 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 170831 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 516, + "InputChannels" : [ + { + "WaitTimeUs" : 702838, + "ChannelId" : 51508, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55556, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 702381, + "TaskId" : 633 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 175239 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 380, + "InputChannels" : [ + { + "WaitTimeUs" : 699511, + "ChannelId" : 50828, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55580, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699208, + "TaskId" : 657 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 179811 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 422, + "InputChannels" : [ + { + "WaitTimeUs" : 700886, + "ChannelId" : 50925, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55589, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 700543, + "TaskId" : 666 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 191274 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 397, + "InputChannels" : [ + { + "WaitTimeUs" : 702048, + "ChannelId" : 51701, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55573, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 701726, + "TaskId" : 650 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 165219 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 410, + "InputChannels" : [ + { + "WaitTimeUs" : 708158, + "ChannelId" : 54805, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55597, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 707820, + "TaskId" : 674 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 183651 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330190, + "ComputeTimeUs" : 425, + "InputChannels" : [ + { + "WaitTimeUs" : 706417, + "ChannelId" : 53932, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55604, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 706076, + "TaskId" : 681 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 175347 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 490, + "InputChannels" : [ + { + "WaitTimeUs" : 699621, + "ChannelId" : 54029, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55613, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699198, + "TaskId" : 690 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 179312 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0012.search.yandex.net", + "StartTimeMs" : 1726585330187, + "ComputeTimeUs" : 781, + "InputChannels" : [ + { + "WaitTimeUs" : 708804, + "ChannelId" : 53253, + "SrcStageId" : 14 + } + ], + "NodeId" : 50005, + "OutputChannels" : [ + { + "ChannelId" : 55629, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 708036, + "TaskId" : 706 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 175258 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0014.search.yandex.net", + "StartTimeMs" : 1726585330196, + "ComputeTimeUs" : 63, + "InputChannels" : [ + { + "WaitTimeUs" : 725955, + "ChannelId" : 54223, + "SrcStageId" : 14 + } + ], + "NodeId" : 50007, + "OutputChannels" : [ + { + "ChannelId" : 55631, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 726031, + "TaskId" : 708 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 156342 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 462, + "InputChannels" : [ + { + "WaitTimeUs" : 717845, + "ChannelId" : 51217, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55617, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 717443, + "TaskId" : 694 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 194644 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 415, + "InputChannels" : [ + { + "WaitTimeUs" : 699982, + "ChannelId" : 49373, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55621, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 699634, + "TaskId" : 698 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 182361 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0013.search.yandex.net", + "StartTimeMs" : 1726585330191, + "ComputeTimeUs" : 414, + "InputChannels" : [ + { + "WaitTimeUs" : 706300, + "ChannelId" : 48500, + "SrcStageId" : 14 + } + ], + "NodeId" : 50006, + "OutputChannels" : [ + { + "ChannelId" : 55628, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 705967, + "TaskId" : 705 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 197113 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0010.search.yandex.net", + "StartTimeMs" : 1726585330188, + "ComputeTimeUs" : 466, + "InputChannels" : [ + { + "WaitTimeUs" : 730501, + "ChannelId" : 51313, + "SrcStageId" : 14 + } + ], + "NodeId" : 50003, + "OutputChannels" : [ + { + "ChannelId" : 55625, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 730097, + "TaskId" : 702 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 161091 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 72, + "InputChannels" : [ + { + "WaitTimeUs" : 696560, + "ChannelId" : 51410, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55546, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 696631, + "TaskId" : 623 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 158511 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 74, + "InputChannels" : [ + { + "WaitTimeUs" : 703952, + "ChannelId" : 55290, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55554, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 704027, + "TaskId" : 631 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 167164 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 55, + "InputChannels" : [ + { + "WaitTimeUs" : 707115, + "ChannelId" : 49858, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55578, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 707191, + "TaskId" : 655 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 162508 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 64, + "InputChannels" : [ + { + "WaitTimeUs" : 706470, + "ChannelId" : 50634, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55562, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 706547, + "TaskId" : 639 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 155853 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 58, + "InputChannels" : [ + { + "WaitTimeUs" : 705524, + "ChannelId" : 54514, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55570, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 705599, + "TaskId" : 647 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 153676 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 58, + "InputChannels" : [ + { + "WaitTimeUs" : 709780, + "ChannelId" : 53738, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55586, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 709853, + "TaskId" : 663 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 143136 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 57, + "InputChannels" : [ + { + "WaitTimeUs" : 716017, + "ChannelId" : 52962, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55602, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 716092, + "TaskId" : 679 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 206837 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 56, + "InputChannels" : [ + { + "WaitTimeUs" : 722891, + "ChannelId" : 52186, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55618, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 722964, + "TaskId" : 695 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 160478 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 62, + "InputChannels" : [ + { + "WaitTimeUs" : 710333, + "ChannelId" : 49082, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55594, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 710409, + "TaskId" : 671 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 168984 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 53, + "InputChannels" : [ + { + "WaitTimeUs" : 718430, + "ChannelId" : 48306, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55610, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 718505, + "TaskId" : 687 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 160507 + }, + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0008.search.yandex.net", + "StartTimeMs" : 1726585330194, + "ComputeTimeUs" : 63, + "InputChannels" : [ + { + "WaitTimeUs" : 724583, + "ChannelId" : 51314, + "SrcStageId" : 14 + } + ], + "NodeId" : 50001, + "OutputChannels" : [ + { + "ChannelId" : 55626, + "DstStageId" : 16 + } + ], + "WaitInputTimeUs" : 724651, + "TaskId" : 703 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 147875 + } + ], + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { }, + "Name" : "34", + "Push" : { + "WaitTimeUs" : { + "Count" : 55, + "Sum" : 19910307, + "Max" : 697024, + "Min" : 161078 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 77, + "Sum" : 2422210560, + "Max" : 31457280, + "Min" : 31457280 + }, + "Tasks" : 77, + "PhysicalStageId" : 15, + "StageDurationUs" : 0, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 77, + "Sum" : 54370176, + "Max" : 730097, + "Min" : 695788 + }, + "CpuTimeUs" : { + "Count" : 77, + "Sum" : 42906, + "Max" : 1236, + "Min" : 97 + }, + "Input" : [ + { + "Pop" : { }, + "Name" : "30", + "Push" : { + "WaitTimeUs" : { + "Count" : 77, + "Sum" : 54404339, + "Max" : 730501, + "Min" : 696154 + } + } + } + ] + } + } + ], + "Node Type" : "Merge", + "SortColumns" : [ + "o_year (Asc)" + ], + "PlanNodeType" : "Connection" + } + ], + "Node Type" : "Stage", + "Stats" : { + "ComputeNodes" : [ + { + "Tasks" : [ + { + "Host" : "ydb-vla-testing-0009.search.yandex.net", + "StartTimeMs" : 1726585330181, + "ComputeTimeUs" : 208, + "InputChannels" : [ + { + "WaitTimeUs" : 8375, + "ChannelId" : 55581, + "SrcStageId" : 15 + } + ], + "NodeId" : 50002, + "OutputChannels" : [ + { + "ChannelId" : 55632, + "DstStageId" : 0 + } + ], + "WaitInputTimeUs" : 736758, + "TaskId" : 709 + } + ], + "PeakMemoryUsageBytes" : 2097152, + "CpuTimeUs" : 165953 + } + ], + "UseLlvm" : "undefined", + "Output" : [ + { + "Pop" : { }, + "Name" : "RESULT", + "Push" : { + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 737036, + "Max" : 737036, + "Min" : 737036 + } + } + } + ], + "MaxMemoryUsage" : { + "Count" : 1, + "Sum" : 1048576, + "Max" : 1048576, + "Min" : 1048576 + }, + "Tasks" : 1, + "PhysicalStageId" : 16, + "StageDurationUs" : 0, + "BaseTimeMs" : 1726585330170, + "WaitInputTimeUs" : { + "Count" : 1, + "Sum" : 736758, + "Max" : 736758, + "Min" : 736758 + }, + "CpuTimeUs" : { + "Count" : 1, + "Sum" : 336, + "Max" : 336, + "Min" : 336 + }, + "Input" : [ + { + "Pop" : { }, + "Name" : "32", + "Push" : { + "WaitTimeUs" : { + "Count" : 1, + "Sum" : 8375, + "Max" : 8375, + "Min" : 8375 + } + } + } + ] + } + } + ], + "Node Type" : "ResultSet", + "PlanNodeType" : "ResultSet" + } + ], + "Node Type" : "Query", + "Stats" : { + "Compilation" : { + "FromCache" : false, + "DurationUs" : 497636, + "CpuTimeUs" : 494697 + }, + "ProcessCpuTimeUs" : 118, + "TotalDurationUs" : 192660499, + "ResourcePoolId" : "default", + "QueuedTimeUs" : 1006 + }, + "PlanNodeType" : "Query" + }, + "meta" : { + "version" : "0.2", + "type" : "query" + }, + "SimplifiedPlan" : { + "PlanNodeId" : 0, + "Plans" : [ + { + "PlanNodeId" : 1, + "Plans" : [ + { + "PlanNodeId" : 4, + "Plans" : [ + { + "PlanNodeId" : 6, + "Plans" : [ + { + "PlanNodeId" : 7, + "Plans" : [ + { + "PlanNodeId" : 9, + "Plans" : [ + { + "PlanNodeId" : 11, + "Plans" : [ + { + "PlanNodeId" : 13, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3.909325428e+12", + "ReadRanges" : [ + "l_orderkey (-∞, +∞)", + "l_linenumber (-∞, +∞)" + ], + "Name" : "TableFullScan", + "A-Rows" : 329685, + "E-Rows" : "5.999999427e+10", + "A-Cpu" : 1299.182, + "Table" : "column/tpch10000/lineitem", + "ReadColumns" : [ + "l_discount", + "l_extendedprice", + "l_orderkey", + "l_partkey", + "l_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 7 + }, + { + "Id" : 8 + }, + { + "Id" : 15 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 15, + "Plans" : [ + { + "PlanNodeId" : 17, + "Plans" : [ + { + "PlanNodeId" : 18, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "9.344265128e+11", + "ReadRanges" : [ + "o_orderkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "1.5e+10", + "Table" : "column/tpch10000/orders", + "ReadColumns" : [ + "o_custkey", + "o_orderdate", + "o_orderkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 5 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "3750000000", + "A-Cpu" : 5415.879, + "Predicate" : "item.o_orderdate >= \"9131\" And item.o_orderdate <= \"9861\"", + "Name" : "Filter", + "E-Size" : "2.336066282e+11", + "E-Cost" : "0" + } + ], + "Node Type" : "Filter" + }, + { + "PlanNodeId" : 20, + "Plans" : [ + { + "PlanNodeId" : 21, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "1.573541826e+11", + "ReadRanges" : [ + "c_custkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "1500000000", + "Table" : "column/tpch10000/customer", + "ReadColumns" : [ + "c_custkey", + "c_nationkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 4 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 25, + "Plans" : [ + { + "PlanNodeId" : 27, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3760", + "ReadRanges" : [ + "n_nationkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "A-Rows" : 50, + "E-Rows" : "25", + "A-Cpu" : 0.331, + "Table" : "column/tpch10000/nation", + "ReadColumns" : [ + "n_name", + "n_nationkey", + "n_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 2 + }, + { + "Id" : 3 + }, + { + "Id" : 4 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 31, + "Plans" : [ + { + "PlanNodeId" : 32, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "1280", + "ReadRanges" : [ + "r_regionkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "5", + "Table" : "column/tpch10000/region", + "ReadColumns" : [ + "r_name", + "r_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "AFRICA" + }, + "Column" : { + "Id" : 4 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 2 + }, + { + "Id" : 4 + } + ] + }, + "Column" : { + "Id" : 5 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 5 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "5", + "A-Rows" : 1, + "A-Cpu" : 0.132, + "Predicate" : "r_name == AFRICA", + "Name" : "Filter", + "E-Size" : "1280", + "E-Cost" : "0" + } + ], + "Node Type" : "Filter" + } + ], + "Operators" : [ + { + "E-Rows" : "25", + "A-Rows" : 5, + "Condition" : "n.n_regionkey = r.r_regionkey", + "A-Cpu" : 0.799, + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "3760", + "E-Cost" : "88.5" + } + ], + "Node Type" : "InnerJoin (MapJoin)" + } + ], + "Operators" : [ + { + "E-Rows" : "1500000000", + "A-Rows" : 299974711, + "Condition" : "c.c_nationkey = n.n_nationkey", + "A-Cpu" : 17470.074, + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "1.573541826e+11", + "E-Cost" : "4500000156" + } + ], + "Node Type" : "InnerJoin (MapJoin)" + } + ], + "Operators" : [ + { + "E-Rows" : "3750000000", + "Condition" : "o.o_custkey = c.c_custkey", + "A-Cpu" : 25004.657, + "Name" : "InnerJoin (Grace)", + "E-Size" : "2.336066282e+11", + "E-Cost" : "2.025000016e+10" + } + ], + "Node Type" : "InnerJoin (Grace)" + } + ], + "Operators" : [ + { + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_orderkey = o.o_orderkey", + "A-Cpu" : 36041.15, + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.439999894e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + }, + { + "PlanNodeId" : 34, + "Plans" : [ + { + "PlanNodeId" : 35, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "1.453776614e+11", + "ReadRanges" : [ + "p_partkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "2000000000", + "Table" : "column/tpch10000/part", + "ReadColumns" : [ + "p_partkey", + "p_type" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "ECONOMY PLATED COPPER" + }, + "Column" : { + "Id" : 10 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 9 + }, + { + "Id" : 10 + } + ] + }, + "Column" : { + "Id" : 11 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 11 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 6 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "2000000000", + "A-Rows" : 7914072, + "A-Cpu" : 2849.333, + "Predicate" : "p_type == ECONOMY PLATED COPPER", + "Name" : "Filter", + "E-Size" : "1.453776614e+11", + "E-Cost" : "0" + } + ], + "Node Type" : "Filter" + } + ], + "Operators" : [ + { + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_partkey = p.p_partkey", + "A-Cpu" : 39470.037, + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.949999851e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + }, + { + "PlanNodeId" : 37, + "Plans" : [ + { + "PlanNodeId" : 38, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "9497519768", + "ReadRanges" : [ + "s_suppkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "100000000", + "Table" : "column/tpch10000/supplier", + "ReadColumns" : [ + "s_nationkey", + "s_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 5 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 41, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3760", + "ReadRanges" : [ + "n_nationkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "A-Rows" : 50, + "E-Rows" : "25", + "A-Cpu" : 0.331, + "Table" : "column/tpch10000/nation", + "ReadColumns" : [ + "n_name", + "n_nationkey", + "n_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 2 + }, + { + "Id" : 3 + }, + { + "Id" : 4 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "100000000", + "A-Rows" : 36983734, + "Condition" : "s.s_nationkey = n_1.n_nationkey", + "A-Cpu" : 5164.804, + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "9497519768", + "E-Cost" : "300000067.5" + } + ], + "Node Type" : "InnerJoin (MapJoin)" + } + ], + "Operators" : [ + { + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_suppkey = s.s_suppkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "2.405999809e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + } + ], + "Operators" : [ + { + "GroupBy" : "item.o_year", + "Aggregation" : "{_yql_agg_0: SUM(If,state._yql_agg_0),_yql_agg_1: SUM(item.volume,state._yql_agg_1)}", + "A-Cpu" : 44644.236, + "Name" : "Aggregate" + } + ], + "Node Type" : "Aggregate" + } + ], + "Operators" : [ + { + "A-Cpu" : 44645.472, + "SortBy" : "row.o_year", + "Name" : "Sort" + } + ], + "Node Type" : "Sort" + } + ], + "Node Type" : "ResultSet", + "PlanNodeType" : "ResultSet" + } + ], + "Node Type" : "Query", + "PlanNodeType" : "Query" + } +} diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.0.svg b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.svg new file mode 100644 index 000000000000..e90da519966e --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.svg @@ -0,0 +1,636 @@ + + + + + + +16 +Memory 0%, ∑1.00MB, 1.00MB | 1.00MB | 1.00MB + + +1.00MB + +CPU Usage 0%, ∑336us, 336us | 336us | 336us + + +336us + + + + + +15 +Memory 16%, ∑2.25GB, 30.00MB | 30.00MB | 30.00MB + + +2.25GB + +CPU Usage 0%, ∑42ms, 97us | 557us | 1ms + + +42ms + + + + + + +14 +Memory 0%, ∑118.00MB, 1.00MB | 1.51MB | 9.00MB + + +118.00MB + +CPU Usage 0%, ∑0.42s, 3ms | 5ms | 9ms + + +0.42s + +Input 0%, ∑1.36MB, 2.88KB | 17.91KB | 198.83KB, Rows ∑101.74K, 209 | 1.30K | 14.48K, Width 14B + + +1.36MB + +Input 324.20KB/s, Rows 23.61K/s, Duration: 4.30 (0.39 | 0.51 | 0.72 - 0.39 | 0.74 | 4.70) + + + + + + +11 +Memory 20%, ∑2.73GB, 25.00MB | 33.77MB | 41.00MB + + +2.73GB + +CPU Usage 1%, ∑38.84s, 0.39s | 0.46s | 0.57s + + +38.84s + +Input 0%, ∑17.01MB, 158.78KB | 209.88KB | 266.55KB, Rows ∑1.03M, 9.44K | 12.45K | 15.84K, Width 17B + + +17.01MB + +Input 438.23KB/s, Rows 25.99K/s, Duration: 39.75 (1.45 | 1.45 | 1.46 - 30.17 | 37.11 | 41.20) + + + + + +10 +Output 1%, ∑130.38MB, 4.04MB | 5.66MB | 7.46MB, Rows ∑7.91M, 245.08K | 344.09K | 453.22K, Width 17B + + +130.38MB + +Output 3.27MB/s, Rows 198.56K/s, Duration: 39.85 (1.45 | 2.09 | 2.43 - 17.51 | 33.16 | 41.31) + +Memory 4%, ∑575.00MB, 25.00MB | 25.00MB | 25.00MB + + +575.00MB + +CPU Usage 2%, ∑47.35s, 1.44s | 2.05s | 2.84s + + +47.35s + + + + + + +9 +Memory 4%, ∑588.00MB, 1.00MB | 7.00MB | 25.00MB + + +588.00MB + +CPU Usage 9%, ∑3m 11s, 1ms | 2.28s | 9.73s + + +3m 11s + +Input 75%, ∑7.53GB, 328.05MB | 367.58MB | 380.38MB, Rows ∑332.43K, 14.12K | 15.83K | 16.38K, Width 23.77KB + + +7.53GB + +Input 145.46MB/s, Rows 6.26K/s, Duration: 53.06 (0.36 | 0.47 | 0.76 - 52.15 | 52.79 | 53.42) + + + + + + +8 +Memory 10%, ∑1.46GB, 17.00MB | 17.00MB | 17.00MB + + +1.46GB + +CPU Usage 7%, ∑2m 41s, 1.75s | 1.83s | 2.11s + + +2m 41s + +Input 24%, ∑2.49GB, 28.93MB | 28.97MB | 29.01MB, Rows ∑299.97M, 3.40M | 3.40M | 3.41M, Width 8B + + +2.49GB + +Input 62.00MB/s, Rows 7.29M/s, Duration: 41.12 (2.58 | 2.74 | 2.99 - 43.35 | 43.43 | 43.71) + + + + + +1 +Memory 1%, ∑216.00MB, 9.00MB | 9.00MB | 9.00MB + + +216.00MB + +CPU Usage 4%, ∑1m 42s, 3.10s | 4.26s | 5.41s + + +1m 42s + + + + + +7 +Output 23%, ∑2.49GB, 5.66MB | 19.92MB | 31.02MB, Rows ∑299.97M, 664.60K | 2.34M | 3.63M, Width 8B + + +2.49GB + +Output 64.22MB/s, Rows 7.55M/s, Duration: 39.70 (2.57 | 2.81 | 3.25 - 42.17 | 42.24 | 42.27) + +Memory 27%, ∑3.75GB, 30.00MB | 30.00MB | 30.00MB + + +3.75GB + +CPU Usage 68%, ∑24m 20s, 2.95s | 11.40s | 17.46s + + +24m 20s + +Input 0%, ∑2.50KB, 20B | 20B | 20B, Rows ∑640, 5 | 5 | 5, Width 4B + + +2.50KB + +Input 12.25KB/s, Rows 3.13K/s, Duration: 0.20 (2.52 | 2.54 | 2.72 - 2.52 | 2.54 | 2.72) + + + + + +6 +Output 0%, ∑2.50KB, 2.50KB | 2.50KB | 2.50KB, Rows ∑640, 640 | 640 | 640, Width 4B + + +2.50KB + +Output 2.44MB/s, Rows 640.00K/s, Duration: 0.00 (2.52 | 2.52 | 2.52 - 2.52 | 2.52 | 2.52) + +Memory 0%, ∑1.00MB, 1.00MB | 1.00MB | 1.00MB + + +1.00MB + +CPU Usage 0%, ∑964us, 964us | 964us | 964us + + +964us + +Input 0%, ∑20B, 20B | 20B | 20B, Rows ∑5, 5 | 5 | 5, Width 4B + + +20B + +Input, Duration: 0.00 (2.52 | 2.52 | 2.52 - 2.52 | 2.52 | 2.52) + + + + + + +5 +Output 0%, ∑20B, 20B | 20B | 20B, Rows ∑5, 5 | 5 | 5, Width 4B + + +20B + +Output, Duration: 0.00 (2.52 | 2.52 | 2.52 - 2.52 | 2.52 | 2.52) + +Memory 0%, ∑90.00MB, 30.00MB | 30.00MB | 30.00MB + + +90.00MB + +CPU Usage 0%, ∑636us, 140us | 212us | 336us + + +636us + +Input 0%, ∑55B, 55B | 55B | 55B, Rows ∑25, 25 | 25 | 25, Width 2B + + +55B + +Input, Duration: 0.00 (2.52 | 2.52 | 2.52 - 2.52 | 2.52 | 2.52) + +Input 0%, ∑27B, 9B | 9B | 9B, Rows ∑3, 1 | 1 | 1, Width 9B + + +27B + +Input 8.78KB/s, Rows 1.00K/s, Duration: 0.00 (2.52 | 2.52 | 2.52 - 2.52 | 2.52 | 2.52) + + + + + +2 +Output 0%, ∑55B, 55B | 55B | 55B, Rows ∑25, 25 | 25 | 25, Width 2B + + +55B + +Output, Duration: 0.00 (0.47 | 0.47 | 0.47 - 0.47 | 0.47 | 0.47) + +Memory 0%, ∑3.00MB, 1.00MB | 1.00MB | 1.00MB + + +3.00MB + +CPU Usage 0%, ∑868us, 217us | 289us | 331us + + +868us + + + + + +4 +Output 0%, ∑27B, 27B | 27B | 27B, Rows ∑3, 3 | 3 | 3, Width 9B + + +27B + +Output, Duration: 0.00 (2.51 | 2.51 | 2.51 - 2.51 | 2.51 | 2.51) + +Memory 0%, ∑1.00MB, 1.00MB | 1.00MB | 1.00MB + + +1.00MB + +CPU Usage 0%, ∑192us, 192us | 192us | 192us + + +192us + +Input 0%, ∑9B, 9B | 9B | 9B, Rows ∑1, 1 | 1 | 1, Width 9B + + +9B + +Input, Duration: 0.00 (2.51 | 2.51 | 2.51 - 2.51 | 2.51 | 2.51) + + + + + +3 +Output 0%, ∑9B, 9B | 9B | 9B, Rows ∑1, 1 | 1 | 1, Width 9B + + +9B + +Output, Duration: 0.00 (2.51 | 2.51 | 2.51 - 2.51 | 2.51 | 2.51) + +Memory 0%, ∑3.00MB, 1.00MB | 1.00MB | 1.00MB + + +3.00MB + +CPU Usage 0%, ∑349us, 100us | 116us | 132us + + +349us + + + + + +0 +Output 70%, ∑7.47GB, 341.32MB | 364.53MB | 369.95MB, Rows ∑329.68K, 14.71K | 15.69K | 15.94K, Width 23.77KB + + +7.47GB + +Output 160.63MB/s, Rows 6.91K/s, Duration: 47.65 (1.51 | 2.26 | 3.32 - 48.99 | 49.10 | 49.17) + +Memory 5%, ∑693.00MB, 33.00MB | 33.00MB | 33.00MB + + +693.00MB + +CPU Usage 1%, ∑25.35s, 1.12s | 1.20s | 1.29s + + +25.35s + + + + + +13 +Output 4%, ∑496.24MB, 6.54MB | 14.17MB | 52.70MB, Rows ∑36.98M, 487.28K | 1.05M | 3.92M, Width 14B + + +496.24MB + +Output 101.52MB/s, Rows 7.56M/s, Duration: 4.88 (0.39 | 1.43 | 4.44 - 1.24 | 2.81 | 5.27) + +Memory 7%, ∑1.02GB, 30.00MB | 30.00MB | 30.00MB + + +1.02GB + +CPU Usage 4%, ∑1m 39s, 0.98s | 2.85s | 5.16s + + +1m 39s + +Input 0%, ∑7.92KB, 232B | 232B | 232B, Rows ∑875, 25 | 25 | 25, Width 9B + + +7.92KB + +Input 18.61KB/s, Rows 2.05K/s, Duration: 0.42 (0.26 | 0.44 | 0.68 - 0.26 | 0.44 | 0.68) + + + + + +12 +Output 0%, ∑9.06KB, 9.06KB | 9.06KB | 9.06KB, Rows ∑1.00K, 1.00K | 1.00K | 1.00K, Width 9B + + +9.06KB + +Output 21.37KB/s, Rows 2.35K/s, Duration: 0.42 (0.26 | 0.26 | 0.26 - 0.68 | 0.68 | 0.68) + +Memory 0%, ∑1.00MB, 1.00MB | 1.00MB | 1.00MB + + +1.00MB + +CPU Usage 0%, ∑557us, 557us | 557us | 557us + + +557us + + + + + +2 +Output 0%, ∑232B, 232B | 232B | 232B, Rows ∑25, 25 | 25 | 25, Width 9B + + +232B + +Output, Duration: 0.00 (0.26 | 0.26 | 0.26 - 0.26 | 0.26 | 0.26) + +Input 0%, ∑232B, 232B | 232B | 232B, Rows ∑25, 25 | 25 | 25, Width 9B + + +232B + +Input, Duration: 0.00 (0.26 | 0.26 | 0.26 - 0.26 | 0.26 | 0.26) + + + +0:00 + +0:06 + +0:12 + +0:18 + +0:24 + +0:30 + +0:36 + +0:42 + +0:48 +ResultSet +654 +Ingress 0B, Rows 0, Avg 0B/s + + 0B + +CPU Usage 35m 27s, Avg 39.81 CPU/s + + 35m 27s + +Memory 13.46GB + + 13.46GB + +Duration: 53.42, Total 53.42 + + 53.42 + +Stage +1 +Connection: Merge + + Me + +Sort +77 +Connection: HashShuffle KeyColumns: o_year + + H + +Aggregate +InnerJoin (Grace) on l.l_suppkey = s.s_suppkey +Est: 240.59G Rows: 14.99G Size: 910.20GB +78 +Connection: HashShuffle KeyColumns: l.l_suppkey + + H + +Connection: HashShuffle KeyColumns: s.s_suppkey + + H + + + + + +InnerJoin (Grace) on l.l_partkey = p.p_partkey +Est: 194.99G Rows: 14.99G Size: 910.20GB +83 +Connection: HashShuffle KeyColumns: p_partkey + + H + + + + + +Connection: HashShuffle KeyColumns: l.l_partkey + + H + +Filter: p_type == ECONOMY PLATED COPPER +Est: 0 Rows: 2.00G Size: 135.39GB +TableFullScan +Est: 0 Rows: 2.00G Size: 135.39GB + + + + +23 +InnerJoin (Grace) on l.l_orderkey = o.o_orderkey +Est: 143.99G Rows: 14.99G Size: 910.20GB +84 +Connection: HashShuffle KeyColumns: o.o_orderkey + + H + +Connection: HashShuffle KeyColumns: l_orderkey + + H + +21 + + + + +InnerJoin (Grace) on o.o_custkey = c.c_custkey +Est: 20.25G Rows: 3.75G Size: 217.56GB +88 +Connection: HashShuffle KeyColumns: o_custkey + + H + +Connection: HashShuffle KeyColumns: c.c_custkey + + H + + + + + +Filter: o_orderdate >= "9131" And o_orderdate <= "9861" +Est: 0 Rows: 3.75G Size: 217.56GB +TableFullScan +Est: 0 Rows: 15.00G Size: 870.25GB +24 +InnerJoin (MapJoin) on c.c_nationkey = n.n_nationkey +Est: 4.50G Rows: 1.50G Size: 146.54GB +TableFullScan +Est: 0 Rows: 1.50G Size: 146.54GB + + + + +128 +Connection: Broadcast + + B + + + + + +Stage +1 +Connection: UnionAll + + U + +InnerJoin (MapJoin) on n.n_regionkey = r.r_regionkey +Est: 88 Rows: 25 Size: 3.67KB +1 +3 +Connection: Map + + Ma + +1 +Connection: Broadcast + + B + + + + + +TableFullScan +Est: 0 Rows: 25 Size: 3.67KB +1 +3 +Stage +1 +Connection: UnionAll + + U + +Filter: r_name == AFRICA +Est: 0 Rows: 5 Size: 1.25KB +TableFullScan +Est: 0 Rows: 5 Size: 1.25KB +1 +3 +TableFullScan +Est: 0 Rows: 59.99G Size: 3.55TB + + + + +21 +InnerJoin (MapJoin) on s.s_nationkey = n_1.n_nationkey +Est: 300.00M Rows: 100.00M Size: 8.84GB +TableFullScan +Est: 0 Rows: 100.00M Size: 8.84GB + + + + +35 +Connection: Broadcast + + B + + + + + +Stage +1 +TableFullScan +1 +Connection: UnionAll + + U + + + diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.0.table b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.table new file mode 100644 index 000000000000..f4876a0d849a --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.0.table @@ -0,0 +1,49 @@ +┌──────────────────────────────────────────────────────────────┬───────┬───────────┬───────────┬───────────┬───────────┐ +│ Operation  │ A-Cpu │ A-Rows  │ E-Cost  │ E-Rows  │ E-Size  │ +├──────────────────────────────────────────────────────────────┼───────┼───────────┼───────────┼───────────┼───────────┤ +│  -> ResultSet  │  │  │  │  │  │ +│  -> Sort (row.o_year)  │ 44645 │  │  │  │  │ +│  -> Aggregate (GroupBy: o_year, Aggregation: {_yql_agg_0 │ 44644 │  │  │  │  │ +│ : SUM(If,_yql_agg_0),_yql_agg_1: SUM(volume,_yql_agg_1)})  │  │  │  │  │  │ +│  -> InnerJoin (Grace) (l.l_suppkey = s.s_suppkey)  │  │  │ 2.406e+11 │ 1.500e+10 │ 9.773e+11 │ +│  -> InnerJoin (Grace) (l.l_partkey = p.p_partkey)  │ 39470 │  │ 1.950e+11 │ 1.500e+10 │ 9.773e+11 │ +│  -> InnerJoin (Grace) (l.l_orderkey = o.o_orderkey │ 36041 │  │ 1.440e+11 │ 1.500e+10 │ 9.773e+11 │ +│ )  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/linei │ 1299  │ 329685  │ 0  │ 6.000e+10 │ 3.909e+12 │ +│ tem, Scan: Parallel, ReadRanges: ["l_orderkey (-∞, +∞)","l_l │  │  │  │  │  │ +│ inenumber (-∞, +∞)"], ReadColumns: ["l_discount","l_extended │  │  │  │  │  │ +│ price","l_orderkey","l_partkey","l_suppkey"])  │  │  │  │  │  │ +│  -> InnerJoin (Grace) (o.o_custkey = c.c_custkey │ 25005 │  │ 2.025e+10 │ 3.750e+09 │ 2.336e+11 │ +│ )  │  │  │  │  │  │ +│  -> Filter (o_orderdate >= "9131" And o_orderd │ 5416  │  │ 0  │ 3.750e+09 │ 2.336e+11 │ +│ ate <= "9861")  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/o │  │  │ 0  │ 1.500e+10 │ 9.344e+11 │ +│ rders, Scan: Parallel, ReadRanges: ["o_orderkey (-∞, +∞)"],  │  │  │  │  │  │ +│ ReadColumns: ["o_custkey","o_orderdate","o_orderkey"])  │  │  │  │  │  │ +│  -> InnerJoin (MapJoin) (c.c_nationkey = n.n_n │ 17470 │ 3.000e+08 │ 4.500e+09 │ 1.500e+09 │ 1.574e+11 │ +│ ationkey)  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/c │  │  │ 0  │ 1.500e+09 │ 1.574e+11 │ +│ ustomer, Scan: Parallel, ReadRanges: ["c_custkey (-∞, +∞)"], │  │  │  │  │  │ +│  ReadColumns: ["c_custkey","c_nationkey"])  │  │  │  │  │  │ +│  -> InnerJoin (MapJoin) (n.n_regionkey = r.r │ 1  │ 5  │ 89  │ 25  │ 3760  │ +│ _regionkey)  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000 │ 0  │ 50  │ 0  │ 25  │ 3760  │ +│ /nation, Scan: Parallel, ReadRanges: ["n_nationkey (-∞, +∞)" │  │  │  │  │  │ +│ ], ReadColumns: ["n_name","n_nationkey","n_regionkey"])  │  │  │  │  │  │ +│  -> Filter (r_name == AFRICA)  │ 0  │ 1  │ 0  │ 5  │ 1280  │ +│  -> TableFullScan (Table: column/tpch100 │  │  │ 0  │ 5  │ 1280  │ +│ 00/region, Scan: Parallel, ReadRanges: ["r_regionkey (-∞, +∞ │  │  │  │  │  │ +│ )"], ReadColumns: ["r_name","r_regionkey"])  │  │  │  │  │  │ +│  -> Filter (p_type == ECONOMY PLATED COPPER)  │ 2849  │ 7914072  │ 0  │ 2.000e+09 │ 1.454e+11 │ +│  -> TableFullScan (Table: column/tpch10000/part, │  │  │ 0  │ 2.000e+09 │ 1.454e+11 │ +│  Scan: Parallel, ReadRanges: ["p_partkey (-∞, +∞)"], ReadCol │  │  │  │  │  │ +│ umns: ["p_partkey","p_type"])  │  │  │  │  │  │ +│  -> InnerJoin (MapJoin) (s.s_nationkey = n_1.n_natio │ 5165  │ 36983734  │ 3.000e+08 │ 1.000e+08 │ 9.498e+09 │ +│ nkey)  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/supplie │  │  │ 0  │ 1.000e+08 │ 9.498e+09 │ +│ r, Scan: Parallel, ReadRanges: ["s_suppkey (-∞, +∞)"], ReadC │  │  │  │  │  │ +│ olumns: ["s_nationkey","s_suppkey"])  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/nation, │ 0  │ 50  │ 0  │ 25  │ 3760  │ +│  Scan: Parallel, ReadRanges: ["n_nationkey (-∞, +∞)"], ReadC │  │  │  │  │  │ +│ olumns: ["n_name","n_nationkey","n_regionkey"])  │  │  │  │  │  │ +└──────────────────────────────────────────────────────────────┴───────┴───────────┴───────────┴───────────┴───────────┘ diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.ast b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.ast new file mode 100644 index 000000000000..2cdbc5cb46bd --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.ast @@ -0,0 +1,215 @@ +( +(let $1 (DataType 'Double)) +(let $2 (DataType 'Int64)) +(let $3 (StructType '('"l_discount" $1) '('"l_extendedprice" $1) '('"l_orderkey" $2) '('"l_partkey" $2) '('"l_suppkey" $2))) +(let $4 '('('"_logical_id" '17369) '('"_id" '"87b45947-1cce06dd-913df645-52d5a58b") '('"_wide_channels" $3))) +(let $5 (DqPhyStage '() (lambda '() (block '( + (let $93 (KqpTable '"/dev/test/column/tpch10000/lineitem" '"72075186224037889:110" '"" '1)) + (let $94 '('"l_discount" '"l_extendedprice" '"l_orderkey" '"l_partkey" '"l_suppkey")) + (let $95 (KqpBlockReadOlapTableRanges $93 (Void) $94 '() '() (lambda '($96) $96))) + (return (FromFlow $95)) +))) $4)) +(let $6 (DataType 'Date32)) +(let $7 (StructType '('"o_custkey" $2) '('"o_orderdate" $6) '('"o_orderkey" $2))) +(let $8 '('('"_logical_id" '13575) '('"_id" '"99d3f27b-727f59c6-ddcee435-cb3a360c") '('"_wide_channels" $7))) +(let $9 (DqPhyStage '() (lambda '() (block '( + (let $97 (KqpTable '"/dev/test/column/tpch10000/orders" '"72075186224037889:112" '"" '1)) + (let $98 '('"o_custkey" '"o_orderdate" '"o_orderkey")) + (let $99 (KqpBlockReadOlapTableRanges $97 (Void) $98 '() '() (lambda '($101) $101))) + (let $100 (lambda '($102 $103 $104 $105) (block '( + (let $106 (BlockType (DataType 'Bool))) + (let $107 (BlockFunc '"GreaterOrEqual" $106 $103 (AsScalar (Date '"9131")))) + (let $108 (BlockFunc '"LessOrEqual" $106 $103 (AsScalar (Date '"9861")))) + (return $102 $103 $104 (BlockAnd $107 $108) $105) + )))) + (return (FromFlow (BlockCompress (WideMap $99 $100) '3))) +))) $8)) +(let $10 '('0)) +(let $11 (DqPhyStage '() (lambda '() (block '( + (let $109 (KqpTable '"/dev/test/column/tpch10000/nation" '"72075186224037889:111" '"" '1)) + (let $110 '('"n_name" '"n_nationkey" '"n_regionkey")) + (let $111 (KqpBlockReadOlapTableRanges $109 (Void) $110 '() '() (lambda '($112) $112))) + (return (FromFlow (Switch (NarrowMap (WideFromBlocks $111) (lambda '($113 $114 $115) (AsStruct '('"n_name" $113) '('"n_nationkey" $114) '('"n_regionkey" $115)))) '"134217728" $10 (lambda '($116) (Map $116 (lambda '($117) (AsStruct '('"n_name" (Member $117 '"n_name")) '('"n_nationkey" (Member $117 '"n_nationkey")))))) $10 (lambda '($118) (Map $118 (lambda '($119) (AsStruct '('"n_nationkey" (Member $119 '"n_nationkey")) '('"n_regionkey" (Member $119 '"n_regionkey"))))))))) +))) '('('"_logical_id" '16371) '('"_id" '"7f15b242-9a5b2f56-c5d5d2c2-4fb3cc90")))) +(let $12 '('"r_regionkey")) +(let $13 (DataType 'Int32)) +(let $14 '('"_wide_channels" (StructType '('"r_regionkey" $13)))) +(let $15 '('('"_logical_id" '13602) '('"_id" '"ffdf0714-8b84b919-756f6e05-5cec45fe") $14)) +(let $16 (DqPhyStage '() (lambda '() (block '( + (let $120 (KqpTable '"/dev/test/column/tpch10000/region" '"72075186224037889:115" '"" '1)) + (let $121 (KqpBlockReadOlapTableRanges $120 (Void) '('"r_name" '"r_regionkey") '() '() (lambda '($122) (block '( + (let $123 '('eq '"r_name" (String '"AFRICA"))) + (return (TKqpOlapExtractMembers (KqpOlapFilter $122 $123) $12)) + ))))) + (return (FromFlow $121)) +))) $15)) +(let $17 (DqCnUnionAll (TDqOutput $16 '0))) +(let $18 '('('"_logical_id" '15688) '('"_id" '"f0e36155-e92c5e60-2149dece-5287042e") $14)) +(let $19 (DqPhyStage '($17) (lambda '($124) $124) $18)) +(let $20 (DqCnMap (TDqOutput $11 '1))) +(let $21 (DqCnBroadcast (TDqOutput $19 '0))) +(let $22 '('Many 'Hashed 'Compact)) +(let $23 '('"n.n_nationkey" $13)) +(let $24 '('"n.n_regionkey" $13)) +(let $25 '('"r.r_regionkey" $13)) +(let $26 (StructType $23 $24 $25)) +(let $27 '('"_wide_channels" $26)) +(let $28 '('('"_logical_id" '15709) '('"_id" '"6a8bdcc6-19b98d5b-ffe07a54-3248c82b") $27)) +(let $29 (DqPhyStage '($20 $21) (lambda '($125 $126) (block '( + (let $127 (NarrowSqueezeToDict (WideFromBlocks (ToFlow $126)) (lambda '($129) $129) (lambda '($130) (AsStruct '('"r_regionkey" $130))) $22)) + (let $128 (lambda '($133) (Member $133 '"n.n_nationkey") (Member $133 '"n.n_regionkey") (Member $133 '"r.r_regionkey"))) + (return (FromFlow (ExpandMap (FlatMap $127 (lambda '($131) (block '( + (let $132 '('"n_nationkey" '"n.n_nationkey" '"n_regionkey" '"n.n_regionkey")) + (return (MapJoinCore (ToFlow $125) $131 '"Inner" '('"n_regionkey") $12 $132 '('"r_regionkey" '"r.r_regionkey") '('"n.n_regionkey") '('"r.r_regionkey"))) + )))) $128))) +))) $28)) +(let $30 (DqCnUnionAll (TDqOutput $29 '0))) +(let $31 '('('"_logical_id" '15743) '('"_id" '"7b9e5438-236edefd-2f0b56de-4c761d0e") $27)) +(let $32 (DqPhyStage '($30) (lambda '($134) (FromFlow (ToFlow $134))) $31)) +(let $33 (DqCnBroadcast (TDqOutput $32 '0))) +(let $34 '('1)) +(let $35 '('"c.c_custkey" $2)) +(let $36 '('"c.c_nationkey" $13)) +(let $37 (StructType $35 $36 $23 $24 $25)) +(let $38 '('('"_logical_id" '15772) '('"_id" '"8da2f247-e4ea232b-dcfd5624-d8eb920f") '('"_wide_channels" $37))) +(let $39 (DqPhyStage '($33) (lambda '($135) (block '( + (let $136 (NarrowSqueezeToDict (ToFlow $135) (lambda '($137 $138 $139) $137) (lambda '($140 $141 $142) (AsStruct '('"n.n_nationkey" $140) '('"n.n_regionkey" $141) '('"r.r_regionkey" $142))) $22)) + (return (FromFlow (FlatMap $136 (lambda '($143) (block '( + (let $144 (KqpTable '"/dev/test/column/tpch10000/customer" '"72075186224037889:109" '"" '1)) + (let $145 (KqpBlockReadOlapTableRanges $144 (Void) '('"c_custkey" '"c_nationkey") '() '() (lambda '($149) $149))) + (let $146 '('"n.n_nationkey")) + (let $147 '('0 '0 '1 '1)) + (let $148 '('"n.n_nationkey" '2 '"n.n_regionkey" '3 '"r.r_regionkey" '4)) + (return (MapJoinCore (WideFromBlocks $145) $143 '"Inner" $34 $146 $147 $148 '('"c.c_nationkey") $146)) + )))))) +))) $38)) +(let $40 (DqCnHashShuffle (TDqOutput $9 '0) $10)) +(let $41 (DqCnHashShuffle (TDqOutput $39 '0) $10)) +(let $42 '('"o.o_custkey" $2)) +(let $43 '('"o.o_orderdate" $6)) +(let $44 '('"o.o_orderkey" $2)) +(let $45 (StructType $35 $36 $23 $24 $42 $43 $44 $25)) +(let $46 '('('"_logical_id" '15888) '('"_id" '"e6db4680-3386576b-ff4696f-28d602d") '('"_wide_channels" $45))) +(let $47 (DqPhyStage '($40 $41) (lambda '($150 $151) (block '( + (let $152 '('0 '0 '1 '1 '2 '2)) + (let $153 '('0 '3 '1 '4 '2 '5 '3 '6 '4 '7)) + (let $154 (GraceJoinCore (WideFromBlocks (ToFlow $150)) (ToFlow $151) '"Inner" $10 $10 $152 $153 '('"o.o_custkey") '('"c.c_custkey") '())) + (let $155 (lambda '($156 $157 $158 $159 $160 $161 $162 $163) $159 $160 $161 $162 $156 $157 $158 $163)) + (return (FromFlow (WideMap $154 $155))) +))) $46)) +(let $48 '('2)) +(let $49 (DqCnHashShuffle (TDqOutput $5 '0) $48)) +(let $50 '('6)) +(let $51 (DqCnHashShuffle (TDqOutput $47 '0) $50)) +(let $52 '('"l.l_discount" $1)) +(let $53 '('"l.l_extendedprice" $1)) +(let $54 '('"l.l_orderkey" $2)) +(let $55 '('"l.l_partkey" $2)) +(let $56 '('"l.l_suppkey" $2)) +(let $57 (StructType $35 $36 $52 $53 $54 $55 $56 $23 $24 $42 $43 $44 $25)) +(let $58 '('('"_logical_id" '16072) '('"_id" '"2ddf7995-750bb8e4-5fb50b99-70263541") '('"_wide_channels" $57))) +(let $59 (DqPhyStage '($49 $51) (lambda '($164 $165) (block '( + (let $166 '('0 '0 '1 '1 '2 '2 '3 '3 '4 '4)) + (let $167 '('0 '5 '1 '6 '2 '7 '3 '8 '4 '9 '5 '10 '6 '11 '7 '12)) + (let $168 (GraceJoinCore (WideFromBlocks (ToFlow $164)) (ToFlow $165) '"Inner" $48 $50 $166 $167 '('"l.l_orderkey") '('"o.o_orderkey") '())) + (let $169 (lambda '($170 $171 $172 $173 $174 $175 $176 $177 $178 $179 $180 $181 $182) $175 $176 $170 $171 $172 $173 $174 $177 $178 $179 $180 $181 $182)) + (return (FromFlow (WideMap $168 $169))) +))) $58)) +(let $60 '('('"_logical_id" '13633) '('"_id" '"77824326-708e640e-e491fb47-e4dddb7e") '('"_wide_channels" (StructType '('"p_partkey" $2))))) +(let $61 (DqPhyStage '() (lambda '() (block '( + (let $183 (KqpTable '"/dev/test/column/tpch10000/part" '"72075186224037889:113" '"" '1)) + (let $184 (KqpBlockReadOlapTableRanges $183 (Void) '('"p_partkey" '"p_type") '() '() (lambda '($185) (block '( + (let $186 '('eq '"p_type" (String '"ECONOMY PLATED COPPER"))) + (return (TKqpOlapExtractMembers (KqpOlapFilter $185 $186) '('"p_partkey"))) + ))))) + (return (FromFlow $184)) +))) $60)) +(let $62 '('5)) +(let $63 (DqCnHashShuffle (TDqOutput $59 '0) $62)) +(let $64 (DqCnHashShuffle (TDqOutput $61 '0) $10)) +(let $65 (StructType $35 $36 $52 $53 $54 $55 $56 $23 $24 $42 $43 $44 '('"p.p_partkey" $2) $25)) +(let $66 '('('"_logical_id" '16277) '('"_id" '"2ffd357c-65a486cf-6070eb9-47751b7e") '('"_wide_channels" $65))) +(let $67 (DqPhyStage '($63 $64) (lambda '($187 $188) (block '( + (let $189 '('0 '0 '1 '1 '2 '2 '3 '3 '4 '4 '5 '5 '6 '6 '7 '7 '8 '8 '9 '9 '10 '10 '11 '11 '12 '12)) + (let $190 (GraceJoinCore (ToFlow $187) (WideFromBlocks (ToFlow $188)) '"Inner" $62 $10 $189 '('0 '13) '('"l.l_partkey") '('"p.p_partkey") '())) + (let $191 (lambda '($192 $193 $194 $195 $196 $197 $198 $199 $200 $201 $202 $203 $204 $205) $192 $193 $194 $195 $196 $197 $198 $199 $200 $201 $202 $203 $205 $204)) + (return (FromFlow (WideMap $190 $191))) +))) $66)) +(let $68 (DqCnUnionAll (TDqOutput $11 '0))) +(let $69 (DataType 'Utf8)) +(let $70 '('('"_logical_id" '16428) '('"_id" '"bc921c02-f729f566-b55f06ba-b4d441e3") '('"_wide_channels" (StructType '('"n_name" $69) '('"n_nationkey" $13))))) +(let $71 (DqPhyStage '($68) (lambda '($206) (block '( + (let $207 (lambda '($208) (Member $208 '"n_name") (Member $208 '"n_nationkey"))) + (return (FromFlow (ExpandMap (ToFlow $206) $207))) +))) $70)) +(let $72 (DqCnBroadcast (TDqOutput $71 '0))) +(let $73 (StructType '('"n_1.n_name" $69) '('"n_1.n_nationkey" $13) '('"s.s_nationkey" $13) '('"s.s_suppkey" $2))) +(let $74 '('('"_logical_id" '16457) '('"_id" '"123fea06-6bd3c972-34bca427-74816a7b") '('"_wide_channels" $73))) +(let $75 (DqPhyStage '($72) (lambda '($209) (block '( + (let $210 (NarrowSqueezeToDict (ToFlow $209) (lambda '($211 $212) $212) (lambda '($213 $214) (AsStruct '('"n_name" $213) '('"n_nationkey" $214))) $22)) + (return (FromFlow (FlatMap $210 (lambda '($215) (block '( + (let $216 (KqpTable '"/dev/test/column/tpch10000/supplier" '"72075186224037889:116" '"" '1)) + (let $217 (KqpBlockReadOlapTableRanges $216 (Void) '('"s_nationkey" '"s_suppkey") '() '() (lambda '($220) $220))) + (let $218 '('0 '2 '1 '3)) + (let $219 '('"n_name" '0 '"n_nationkey" '1)) + (return (MapJoinCore (WideFromBlocks $217) $215 '"Inner" $10 '('"n_nationkey") $218 $219 '('"s.s_nationkey") '('"n_1.n_nationkey"))) + )))))) +))) $74)) +(let $76 (DqCnHashShuffle (TDqOutput $67 '0) $50)) +(let $77 (DqCnHashShuffle (TDqOutput $75 '0) '('3))) +(let $78 (DataType 'Uint16)) +(let $79 (OptionalType $78)) +(let $80 (lambda '($281 $282 $283) $282 $283 $281)) +(let $81 '('"o_year" $79)) +(let $82 (StructType '('_yql_agg_0 $1) '('_yql_agg_1 $1) $81)) +(let $83 '('('"_logical_id" '17040) '('"_id" '"8b2b0fc2-eba19c58-3182738f-14be936e") '('"_wide_channels" $82))) +(let $84 (DqPhyStage '($76 $77) (lambda '($221 $222) (block '( + (let $223 (lambda '($232 $233 $234 $235 $236 $237 $238 $239 $240 $241 $242 $243 $244 $245) $234 $235 $238 $242)) + (let $224 (lambda '($246 $247 $248 $249) $246 $249)) + (let $225 '('0 '0 '1 '1 '3 '2)) + (let $226 (GraceJoinCore (WideMap (ToFlow $221) $223) (WideMap (ToFlow $222) $224) '"Inner" $48 $34 $225 '('0 '3) '('"l.l_suppkey") '('"s.s_suppkey") '())) + (let $227 (String '"MOZAMBIQUE")) + (let $228 (Int32 '1)) + (let $229 (Double '"0.")) + (let $230 (lambda '($265 $266 $267 $268 $269) (block '( + (let $270 (* $267 (- $228 $266))) + (let $271 (If (== $269 $227) $270 $229)) + (return $271 $270) + )))) + (let $231 (lambda '($272 $273 $274 $275 $276 $277 $278) (block '( + (let $279 (* $274 (- $228 $273))) + (let $280 (If (== $276 $227) $279 $229)) + (return (AggrAdd $280 $277) (AggrAdd $279 $278)) + )))) + (return (FromFlow (WideCombiner $226 '-1073741824 (lambda '($250 $251 $252 $253) (block '( + (let $254 (DataType 'Timestamp)) + (return (IfPresent (SafeCast $252 (OptionalType $254)) (lambda '($255) (block '( + (let $256 (ResourceType '"DateTime2.TM")) + (let $257 '($256 '"" '1)) + (let $258 (CallableType '() '($78) $257)) + (let $259 '('"strict")) + (let $260 (Udf '"DateTime2.GetYear" (Void) (VoidType) '"" $258 (VoidType) '"" '($259))) + (let $261 (TupleType (TupleType $254) (StructType) (TupleType))) + (let $262 '($254 '"" '1)) + (let $263 (CallableType '() '($256) $262)) + (let $264 (Udf 'DateTime2.Split (Void) $261 '"" $263 (VoidType) '"" '('('"blocks") $259))) + (return (Just (Apply $260 (Apply $264 $255)))) + ))) (Nothing $79))) + ))) $230 $231 $80))) +))) $83)) +(let $85 (DqCnHashShuffle (TDqOutput $84 '0) $48)) +(let $86 (StructType '('"mkt_share" $1) $81)) +(let $87 '('('"_logical_id" '17186) '('"_id" '"3b0d6a4e-bdec4333-8e01070-9a79032e") '('"_wide_channels" $86))) +(let $88 (DqPhyStage '($85) (lambda '($284) (block '( + (let $285 (lambda '($292 $293 $294 $295) $293 $294)) + (let $286 (lambda '($296 $297 $298 $299 $300 $301) (AggrAdd $297 $300) (AggrAdd $298 $301))) + (let $287 (WideCombiner (ToFlow $284) '"" (lambda '($289 $290 $291) $291) $285 $286 $80)) + (let $288 (lambda '($302 $303 $304) (/ $302 $303) $304)) + (return (FromFlow (WideMap (WideSort $287 '('('2 (Bool 'true)))) $288))) +))) $87)) +(let $89 (DqCnMerge (TDqOutput $88 '0) '('('1 '"Asc")))) +(let $90 (DqPhyStage '($89) (lambda '($305) (FromFlow (NarrowMap (ToFlow $305) (lambda '($306 $307) (AsStruct '('"mkt_share" $306) '('"o_year" $307)))))) '('('"_logical_id" '17198) '('"_id" '"800262d1-540b53f5-17ab405f-5ff7cff6")))) +(let $91 '($5 $9 $11 $16 $19 $29 $32 $39 $47 $59 $61 $67 $71 $75 $84 $88 $90)) +(let $92 (DqCnResult (TDqOutput $90 '0) '('"o_year" '"mkt_share"))) +(return (KqpPhysicalQuery '((KqpPhysicalTx $91 '($92) '() '('('"type" '"generic")))) '((KqpTxResultBinding (ListType $86) '0 '0)) '('('"type" '"query")))) +) diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.json b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.json new file mode 100644 index 000000000000..a0894bb0ae9e --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.json @@ -0,0 +1,1494 @@ +{ + "Plan" : { + "Plans" : [ + { + "PlanNodeId" : 35, + "Plans" : [ + { + "PlanNodeId" : 34, + "Plans" : [ + { + "PlanNodeId" : 33, + "Plans" : [ + { + "PlanNodeId" : 32, + "Plans" : [ + { + "PlanNodeId" : 31, + "Plans" : [ + { + "PlanNodeId" : 30, + "Plans" : [ + { + "PlanNodeId" : 29, + "Plans" : [ + { + "PlanNodeId" : 28, + "Plans" : [ + { + "PlanNodeId" : 7, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/part" + ], + "PlanNodeId" : 6, + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "E-Rows" : "2000000000", + "Predicate" : "p_type == ECONOMY PLATED COPPER", + "Name" : "Filter", + "E-Size" : "1.453776614e+11", + "E-Cost" : "0" + }, + { + "Scan" : "Parallel", + "E-Size" : "1.453776614e+11", + "ReadRanges" : [ + "p_partkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "2000000000", + "Table" : "column/tpch10000/part", + "ReadColumns" : [ + "p_partkey", + "p_type" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "ECONOMY PLATED COPPER" + }, + "Column" : { + "Id" : 10 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 9 + }, + { + "Id" : 10 + } + ] + }, + "Column" : { + "Id" : 11 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 11 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 6 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "Filter-TableFullScan" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "p_partkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 27, + "Plans" : [ + { + "PlanNodeId" : 26, + "Plans" : [ + { + "PlanNodeId" : 23, + "Plans" : [ + { + "PlanNodeId" : 22, + "Plans" : [ + { + "PlanNodeId" : 21, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/orders" + ], + "PlanNodeId" : 20, + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "E-Rows" : "3750000000", + "Predicate" : "item.o_orderdate >= \"9131\" And item.o_orderdate <= \"9861\"", + "Name" : "Filter", + "E-Size" : "2.336066282e+11", + "E-Cost" : "0" + }, + { + "Scan" : "Parallel", + "E-Size" : "9.344265128e+11", + "ReadRanges" : [ + "o_orderkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "1.5e+10", + "Table" : "column/tpch10000/orders", + "ReadColumns" : [ + "o_custkey", + "o_orderdate", + "o_orderkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 5 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "Filter-TableFullScan" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "o_custkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 19, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/customer" + ], + "PlanNodeId" : 18, + "Plans" : [ + { + "PlanNodeId" : 17, + "Plans" : [ + { + "PlanNodeId" : 16, + "Plans" : [ + { + "PlanNodeId" : 15, + "Plans" : [ + { + "PlanNodeId" : 14, + "Plans" : [ + { + "PlanNodeId" : 13, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/nation" + ], + "PlanNodeId" : 12, + "Subplan Name" : "CTE TableFullScan_25", + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3760", + "ReadRanges" : [ + "n_nationkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "25", + "Table" : "column/tpch10000/nation", + "ReadColumns" : [ + "n_name", + "n_nationkey", + "n_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 2 + }, + { + "Id" : 3 + }, + { + "Id" : 4 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan", + "Parent Relationship" : "InitPlan" + } + ], + "Node Type" : "Map", + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 11, + "Plans" : [ + { + "PlanNodeId" : 10, + "Plans" : [ + { + "PlanNodeId" : 9, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/region" + ], + "PlanNodeId" : 8, + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "E-Rows" : "5", + "Predicate" : "r_name == AFRICA", + "Name" : "Filter", + "E-Size" : "1280", + "E-Cost" : "0" + }, + { + "Scan" : "Parallel", + "E-Size" : "1280", + "ReadRanges" : [ + "r_regionkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "5", + "Table" : "column/tpch10000/region", + "ReadColumns" : [ + "r_name", + "r_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "AFRICA" + }, + "Column" : { + "Id" : 4 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 2 + }, + { + "Id" : 4 + } + ] + }, + "Column" : { + "Id" : 5 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 5 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "Filter-TableFullScan" + } + ], + "Node Type" : "UnionAll", + "PlanNodeType" : "Connection" + } + ], + "Node Type" : "Stage" + } + ], + "Node Type" : "Broadcast", + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 13 + }, + { + "ExternalPlanNodeId" : 11 + } + ], + "E-Rows" : "25", + "Condition" : "n.n_regionkey = r.r_regionkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "3760", + "E-Cost" : "88.5" + } + ], + "Node Type" : "InnerJoin (MapJoin)" + } + ], + "Node Type" : "UnionAll", + "PlanNodeType" : "Connection" + } + ], + "Node Type" : "Stage" + } + ], + "Node Type" : "Broadcast", + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + }, + { + "ExternalPlanNodeId" : 17 + } + ], + "E-Rows" : "1500000000", + "Condition" : "c.c_nationkey = n.n_nationkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "1.573541826e+11", + "E-Cost" : "4500000156" + }, + { + "Scan" : "Parallel", + "E-Size" : "1.573541826e+11", + "ReadRanges" : [ + "c_custkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "1500000000", + "Table" : "column/tpch10000/customer", + "ReadColumns" : [ + "c_custkey", + "c_nationkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 4 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "InnerJoin (MapJoin)-TableFullScan" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "c.c_custkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 21 + }, + { + "ExternalPlanNodeId" : 19 + } + ], + "E-Rows" : "3750000000", + "Condition" : "o.o_custkey = c.c_custkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "2.336066282e+11", + "E-Cost" : "2.025000016e+10" + } + ], + "Node Type" : "InnerJoin (Grace)" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "o.o_orderkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 25, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/lineitem" + ], + "PlanNodeId" : 24, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3.909325428e+12", + "ReadRanges" : [ + "l_orderkey (-∞, +∞)", + "l_linenumber (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "5.999999427e+10", + "Table" : "column/tpch10000/lineitem", + "ReadColumns" : [ + "l_discount", + "l_extendedprice", + "l_orderkey", + "l_partkey", + "l_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 7 + }, + { + "Id" : 8 + }, + { + "Id" : 15 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "l_orderkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 25 + }, + { + "ExternalPlanNodeId" : 23 + } + ], + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_orderkey = o.o_orderkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.439999894e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "l.l_partkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 27 + }, + { + "ExternalPlanNodeId" : 7 + } + ], + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_partkey = p.p_partkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.949999851e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "l.l_suppkey" + ], + "PlanNodeType" : "Connection" + }, + { + "PlanNodeId" : 5, + "Plans" : [ + { + "Tables" : [ + "column/tpch10000/supplier" + ], + "PlanNodeId" : 4, + "Plans" : [ + { + "PlanNodeId" : 3, + "Plans" : [ + { + "PlanNodeId" : 2, + "Plans" : [ + { + "PlanNodeId" : 1, + "Node Type" : "UnionAll", + "PlanNodeType" : "Connection", + "CTE Name" : "TableFullScan_25" + } + ], + "Node Type" : "Stage" + } + ], + "Node Type" : "Broadcast", + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + }, + { + "ExternalPlanNodeId" : 3 + } + ], + "E-Rows" : "100000000", + "Condition" : "s.s_nationkey = n_1.n_nationkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "9497519768", + "E-Cost" : "300000067.5" + }, + { + "Scan" : "Parallel", + "E-Size" : "9497519768", + "ReadRanges" : [ + "s_suppkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "Inputs" : [ ], + "E-Rows" : "100000000", + "Table" : "column/tpch10000/supplier", + "ReadColumns" : [ + "s_nationkey", + "s_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 5 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "InnerJoin (MapJoin)-TableFullScan" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "s.s_suppkey" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "InternalOperatorId" : 1 + } + ], + "GroupBy" : "item.o_year", + "Aggregation" : "{_yql_agg_0: SUM(If,state._yql_agg_0),_yql_agg_1: SUM(item.volume,state._yql_agg_1)}", + "Name" : "Aggregate" + }, + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 29 + }, + { + "ExternalPlanNodeId" : 5 + } + ], + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_suppkey = s.s_suppkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "2.405999809e+11" + } + ], + "Node Type" : "Aggregate-InnerJoin (Grace)" + } + ], + "Node Type" : "HashShuffle", + "KeyColumns" : [ + "o_year" + ], + "PlanNodeType" : "Connection" + } + ], + "Operators" : [ + { + "Inputs" : [ + { + "ExternalPlanNodeId" : 31 + } + ], + "SortBy" : "row.o_year", + "Name" : "Sort" + } + ], + "Node Type" : "Sort" + } + ], + "Node Type" : "Merge", + "SortColumns" : [ + "o_year (Asc)" + ], + "PlanNodeType" : "Connection" + } + ], + "Node Type" : "Stage" + } + ], + "Node Type" : "ResultSet", + "PlanNodeType" : "ResultSet" + } + ], + "Node Type" : "Query", + "Stats" : { + "ResourcePoolId" : "default" + }, + "PlanNodeType" : "Query" + }, + "meta" : { + "version" : "0.2", + "type" : "query" + }, + "tables" : [ + { + "name" : "/dev/test/column/tpch10000/customer", + "reads" : [ + { + "columns" : [ + "c_custkey", + "c_nationkey" + ], + "scan_by" : [ + "c_custkey (-∞, +∞)" + ], + "type" : "FullScan" + } + ] + }, + { + "name" : "/dev/test/column/tpch10000/lineitem", + "reads" : [ + { + "columns" : [ + "l_discount", + "l_extendedprice", + "l_orderkey", + "l_partkey", + "l_suppkey" + ], + "scan_by" : [ + "l_orderkey (-∞, +∞)", + "l_linenumber (-∞, +∞)" + ], + "type" : "FullScan" + } + ] + }, + { + "name" : "/dev/test/column/tpch10000/nation", + "reads" : [ + { + "columns" : [ + "n_name", + "n_nationkey", + "n_regionkey" + ], + "scan_by" : [ + "n_nationkey (-∞, +∞)" + ], + "type" : "FullScan" + } + ] + }, + { + "name" : "/dev/test/column/tpch10000/orders", + "reads" : [ + { + "columns" : [ + "o_custkey", + "o_orderdate", + "o_orderkey" + ], + "scan_by" : [ + "o_orderkey (-∞, +∞)" + ], + "type" : "FullScan" + } + ] + }, + { + "name" : "/dev/test/column/tpch10000/part", + "reads" : [ + { + "columns" : [ + "p_partkey", + "p_type" + ], + "scan_by" : [ + "p_partkey (-∞, +∞)" + ], + "type" : "FullScan" + } + ] + }, + { + "name" : "/dev/test/column/tpch10000/region", + "reads" : [ + { + "columns" : [ + "r_name", + "r_regionkey" + ], + "scan_by" : [ + "r_regionkey (-∞, +∞)" + ], + "type" : "FullScan" + } + ] + }, + { + "name" : "/dev/test/column/tpch10000/supplier", + "reads" : [ + { + "columns" : [ + "s_nationkey", + "s_suppkey" + ], + "scan_by" : [ + "s_suppkey (-∞, +∞)" + ], + "type" : "FullScan" + } + ] + } + ], + "SimplifiedPlan" : { + "PlanNodeId" : 0, + "Plans" : [ + { + "PlanNodeId" : 1, + "Plans" : [ + { + "PlanNodeId" : 4, + "Plans" : [ + { + "PlanNodeId" : 6, + "Plans" : [ + { + "PlanNodeId" : 7, + "Plans" : [ + { + "PlanNodeId" : 9, + "Plans" : [ + { + "PlanNodeId" : 11, + "Plans" : [ + { + "PlanNodeId" : 13, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3.909325428e+12", + "ReadRanges" : [ + "l_orderkey (-∞, +∞)", + "l_linenumber (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "5.999999427e+10", + "Table" : "column/tpch10000/lineitem", + "ReadColumns" : [ + "l_discount", + "l_extendedprice", + "l_orderkey", + "l_partkey", + "l_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 7 + }, + { + "Id" : 8 + }, + { + "Id" : 15 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 15, + "Plans" : [ + { + "PlanNodeId" : 17, + "Plans" : [ + { + "PlanNodeId" : 18, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "9.344265128e+11", + "ReadRanges" : [ + "o_orderkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "1.5e+10", + "Table" : "column/tpch10000/orders", + "ReadColumns" : [ + "o_custkey", + "o_orderdate", + "o_orderkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + }, + { + "Id" : 4 + }, + { + "Id" : 5 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "3750000000", + "Predicate" : "item.o_orderdate >= \"9131\" And item.o_orderdate <= \"9861\"", + "Name" : "Filter", + "E-Size" : "2.336066282e+11", + "E-Cost" : "0" + } + ], + "Node Type" : "Filter" + }, + { + "PlanNodeId" : 20, + "Plans" : [ + { + "PlanNodeId" : 21, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "1.573541826e+11", + "ReadRanges" : [ + "c_custkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "1500000000", + "Table" : "column/tpch10000/customer", + "ReadColumns" : [ + "c_custkey", + "c_nationkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 4 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 25, + "Plans" : [ + { + "PlanNodeId" : 27, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3760", + "ReadRanges" : [ + "n_nationkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "25", + "Table" : "column/tpch10000/nation", + "ReadColumns" : [ + "n_name", + "n_nationkey", + "n_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 2 + }, + { + "Id" : 3 + }, + { + "Id" : 4 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 31, + "Plans" : [ + { + "PlanNodeId" : 32, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "1280", + "ReadRanges" : [ + "r_regionkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "5", + "Table" : "column/tpch10000/region", + "ReadColumns" : [ + "r_name", + "r_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "AFRICA" + }, + "Column" : { + "Id" : 4 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 2 + }, + { + "Id" : 4 + } + ] + }, + "Column" : { + "Id" : 5 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 5 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 3 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "5", + "Predicate" : "r_name == AFRICA", + "Name" : "Filter", + "E-Size" : "1280", + "E-Cost" : "0" + } + ], + "Node Type" : "Filter" + } + ], + "Operators" : [ + { + "E-Rows" : "25", + "Condition" : "n.n_regionkey = r.r_regionkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "3760", + "E-Cost" : "88.5" + } + ], + "Node Type" : "InnerJoin (MapJoin)" + } + ], + "Operators" : [ + { + "E-Rows" : "1500000000", + "Condition" : "c.c_nationkey = n.n_nationkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "1.573541826e+11", + "E-Cost" : "4500000156" + } + ], + "Node Type" : "InnerJoin (MapJoin)" + } + ], + "Operators" : [ + { + "E-Rows" : "3750000000", + "Condition" : "o.o_custkey = c.c_custkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "2.336066282e+11", + "E-Cost" : "2.025000016e+10" + } + ], + "Node Type" : "InnerJoin (Grace)" + } + ], + "Operators" : [ + { + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_orderkey = o.o_orderkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.439999894e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + }, + { + "PlanNodeId" : 34, + "Plans" : [ + { + "PlanNodeId" : 35, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "1.453776614e+11", + "ReadRanges" : [ + "p_partkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "2000000000", + "Table" : "column/tpch10000/part", + "ReadColumns" : [ + "p_partkey", + "p_type" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Assign" : { + "Constant" : { + "Bytes" : "ECONOMY PLATED COPPER" + }, + "Column" : { + "Id" : 10 + } + } + }, + { + "Assign" : { + "Function" : { + "YqlOperationId" : 11, + "KernelIdx" : 0, + "FunctionType" : 2, + "Arguments" : [ + { + "Id" : 9 + }, + { + "Id" : 10 + } + ] + }, + "Column" : { + "Id" : 11 + } + } + }, + { + "Filter" : { + "Predicate" : { + "Id" : 11 + } + } + }, + { + "Projection" : { + "Columns" : [ + { + "Id" : 6 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "2000000000", + "Predicate" : "p_type == ECONOMY PLATED COPPER", + "Name" : "Filter", + "E-Size" : "1.453776614e+11", + "E-Cost" : "0" + } + ], + "Node Type" : "Filter" + } + ], + "Operators" : [ + { + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_partkey = p.p_partkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "1.949999851e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + }, + { + "PlanNodeId" : 37, + "Plans" : [ + { + "PlanNodeId" : 38, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "9497519768", + "ReadRanges" : [ + "s_suppkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "100000000", + "Table" : "column/tpch10000/supplier", + "ReadColumns" : [ + "s_nationkey", + "s_suppkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 5 + }, + { + "Id" : 7 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + }, + { + "PlanNodeId" : 41, + "Operators" : [ + { + "Scan" : "Parallel", + "E-Size" : "3760", + "ReadRanges" : [ + "n_nationkey (-∞, +∞)" + ], + "Name" : "TableFullScan", + "E-Rows" : "25", + "Table" : "column/tpch10000/nation", + "ReadColumns" : [ + "n_name", + "n_nationkey", + "n_regionkey" + ], + "SsaProgram" : { + "Version" : 5, + "Command" : [ + { + "Projection" : { + "Columns" : [ + { + "Id" : 2 + }, + { + "Id" : 3 + }, + { + "Id" : 4 + } + ] + } + } + ] + }, + "E-Cost" : "0" + } + ], + "Node Type" : "TableFullScan" + } + ], + "Operators" : [ + { + "E-Rows" : "100000000", + "Condition" : "s.s_nationkey = n_1.n_nationkey", + "Name" : "InnerJoin (MapJoin)", + "E-Size" : "9497519768", + "E-Cost" : "300000067.5" + } + ], + "Node Type" : "InnerJoin (MapJoin)" + } + ], + "Operators" : [ + { + "E-Rows" : "1.499999857e+10", + "Condition" : "l.l_suppkey = s.s_suppkey", + "Name" : "InnerJoin (Grace)", + "E-Size" : "9.773313569e+11", + "E-Cost" : "2.405999809e+11" + } + ], + "Node Type" : "InnerJoin (Grace)" + } + ], + "Operators" : [ + { + "GroupBy" : "item.o_year", + "Aggregation" : "{_yql_agg_0: SUM(If,state._yql_agg_0),_yql_agg_1: SUM(item.volume,state._yql_agg_1)}", + "Name" : "Aggregate" + } + ], + "Node Type" : "Aggregate" + } + ], + "Operators" : [ + { + "SortBy" : "row.o_year", + "Name" : "Sort" + } + ], + "Node Type" : "Sort" + } + ], + "Node Type" : "ResultSet", + "PlanNodeType" : "ResultSet" + } + ], + "Node Type" : "Query", + "OptimizerStats" : { + "EquiJoinsCount" : 1, + "JoinsCount" : 8 + }, + "PlanNodeType" : "Query" + } +} diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.svg b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.svg new file mode 100644 index 000000000000..20dd77d07eef --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.svg @@ -0,0 +1,229 @@ + + + + + + +0 + + + + +0 + + + + + +0 + + + + + +0 + + + + +0 + + + + + +0 + + + + + +0 + + + + +0 + + + + +0 + + + + +0 + + + + + +0 + + + + +0 + + + + +0 + + + + +0 + + + + +0 + + + + +0 + + + + +0 + + + + +0 + + +0:00 +ResultSet +0 +Ingress 0B, Rows 0, Avg 0B/s + + 0B + +CPU Usage 0.00s, Avg 0.00 CPU/s + + 0.00s + +Memory 0B + + 0B + +Duration: 1.00, Total 1.00 + + 1.00 + +Stage +Connection: Merge + + Me + +Sort +Connection: HashShuffle KeyColumns: o_year + + H + +Aggregate +InnerJoin (Grace) on l.l_suppkey = s.s_suppkey +Est: 240.59G Rows: 14.99G Size: 910.20GB +Connection: HashShuffle KeyColumns: l.l_suppkey + + H + +Connection: HashShuffle KeyColumns: s.s_suppkey + + H + +InnerJoin (Grace) on l.l_partkey = p.p_partkey +Est: 194.99G Rows: 14.99G Size: 910.20GB +Connection: HashShuffle KeyColumns: p_partkey + + H + +Connection: HashShuffle KeyColumns: l.l_partkey + + H + +Filter: p_type == ECONOMY PLATED COPPER +Est: 0 Rows: 2.00G Size: 135.39GB +TableFullScan +Est: 0 Rows: 2.00G Size: 135.39GB +InnerJoin (Grace) on l.l_orderkey = o.o_orderkey +Est: 143.99G Rows: 14.99G Size: 910.20GB +Connection: HashShuffle KeyColumns: o.o_orderkey + + H + +Connection: HashShuffle KeyColumns: l_orderkey + + H + +InnerJoin (Grace) on o.o_custkey = c.c_custkey +Est: 20.25G Rows: 3.75G Size: 217.56GB +Connection: HashShuffle KeyColumns: o_custkey + + H + +Connection: HashShuffle KeyColumns: c.c_custkey + + H + +Filter: o_orderdate >= "9131" And o_orderdate <= "9861" +Est: 0 Rows: 3.75G Size: 217.56GB +TableFullScan +Est: 0 Rows: 15.00G Size: 870.25GB +InnerJoin (MapJoin) on c.c_nationkey = n.n_nationkey +Est: 4.50G Rows: 1.50G Size: 146.54GB +TableFullScan +Est: 0 Rows: 1.50G Size: 146.54GB +Connection: Broadcast + + B + +Stage +Connection: UnionAll + + U + +InnerJoin (MapJoin) on n.n_regionkey = r.r_regionkey +Est: 88 Rows: 25 Size: 3.67KB +Connection: Map + + Ma + +Connection: Broadcast + + B + +TableFullScan +Est: 0 Rows: 25 Size: 3.67KB +Stage +Connection: UnionAll + + U + +Filter: r_name == AFRICA +Est: 0 Rows: 5 Size: 1.25KB +TableFullScan +Est: 0 Rows: 5 Size: 1.25KB +TableFullScan +Est: 0 Rows: 59.99G Size: 3.55TB +InnerJoin (MapJoin) on s.s_nationkey = n_1.n_nationkey +Est: 300.00M Rows: 100.00M Size: 8.84GB +TableFullScan +Est: 0 Rows: 100.00M Size: 8.84GB +Connection: Broadcast + + B + +Stage +TableFullScan +Connection: UnionAll + + U + + + diff --git a/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.table b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.table new file mode 100644 index 000000000000..ed250c075f03 --- /dev/null +++ b/ydb/tools/ydbd_slice/bin/plan.txt.8.explain.table @@ -0,0 +1,47 @@ +┌─────────────────────────────────────────────────────────────────┬───────┬────────┬───────────┬───────────┬───────────┐ +│ Operation  │ A-Cpu │ A-Rows │ E-Cost  │ E-Rows  │ E-Size  │ +├─────────────────────────────────────────────────────────────────┼───────┼────────┼───────────┼───────────┼───────────┤ +│  -> ResultSet  │  │  │  │  │  │ +│  -> Sort (row.o_year)  │  │  │  │  │  │ +│  -> Aggregate (GroupBy: o_year, Aggregation: {_yql_agg_0: S │  │  │  │  │  │ +│ UM(If,_yql_agg_0),_yql_agg_1: SUM(volume,_yql_agg_1)})  │  │  │  │  │  │ +│  -> InnerJoin (Grace) (l.l_suppkey = s.s_suppkey)  │  │  │ 2.406e+11 │ 1.500e+10 │ 9.773e+11 │ +│  -> InnerJoin (Grace) (l.l_partkey = p.p_partkey)  │  │  │ 1.950e+11 │ 1.500e+10 │ 9.773e+11 │ +│  -> InnerJoin (Grace) (l.l_orderkey = o.o_orderkey)  │  │  │ 1.440e+11 │ 1.500e+10 │ 9.773e+11 │ +│  -> TableFullScan (Table: column/tpch10000/lineitem │  │  │ 0  │ 6.000e+10 │ 3.909e+12 │ +│ , Scan: Parallel, ReadRanges: ["l_orderkey (-∞, +∞)","l_linenum │  │  │  │  │  │ +│ ber (-∞, +∞)"], ReadColumns: ["l_discount","l_extendedprice","l │  │  │  │  │  │ +│ _orderkey","l_partkey","l_suppkey"])  │  │  │  │  │  │ +│  -> InnerJoin (Grace) (o.o_custkey = c.c_custkey)  │  │  │ 2.025e+10 │ 3.750e+09 │ 2.336e+11 │ +│  -> Filter (o_orderdate >= "9131" And o_orderdate │  │  │ 0  │ 3.750e+09 │ 2.336e+11 │ +│  <= "9861")  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/orde │  │  │ 0  │ 1.500e+10 │ 9.344e+11 │ +│ rs, Scan: Parallel, ReadRanges: ["o_orderkey (-∞, +∞)"], ReadCo │  │  │  │  │  │ +│ lumns: ["o_custkey","o_orderdate","o_orderkey"])  │  │  │  │  │  │ +│  -> InnerJoin (MapJoin) (c.c_nationkey = n.n_nati │  │  │ 4.500e+09 │ 1.500e+09 │ 1.574e+11 │ +│ onkey)  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/cust │  │  │ 0  │ 1.500e+09 │ 1.574e+11 │ +│ omer, Scan: Parallel, ReadRanges: ["c_custkey (-∞, +∞)"], ReadC │  │  │  │  │  │ +│ olumns: ["c_custkey","c_nationkey"])  │  │  │  │  │  │ +│  -> InnerJoin (MapJoin) (n.n_regionkey = r.r_re │  │  │ 89  │ 25  │ 3760  │ +│ gionkey)  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/na │  │  │ 0  │ 25  │ 3760  │ +│ tion, Scan: Parallel, ReadRanges: ["n_nationkey (-∞, +∞)"], Rea │  │  │  │  │  │ +│ dColumns: ["n_name","n_nationkey","n_regionkey"])  │  │  │  │  │  │ +│  -> Filter (r_name == AFRICA)  │  │  │ 0  │ 5  │ 1280  │ +│  -> TableFullScan (Table: column/tpch10000/ │  │  │ 0  │ 5  │ 1280  │ +│ region, Scan: Parallel, ReadRanges: ["r_regionkey (-∞, +∞)"], R │  │  │  │  │  │ +│ eadColumns: ["r_name","r_regionkey"])  │  │  │  │  │  │ +│  -> Filter (p_type == ECONOMY PLATED COPPER)  │  │  │ 0  │ 2.000e+09 │ 1.454e+11 │ +│  -> TableFullScan (Table: column/tpch10000/part, Sc │  │  │ 0  │ 2.000e+09 │ 1.454e+11 │ +│ an: Parallel, ReadRanges: ["p_partkey (-∞, +∞)"], ReadColumns:  │  │  │  │  │  │ +│ ["p_partkey","p_type"])  │  │  │  │  │  │ +│  -> InnerJoin (MapJoin) (s.s_nationkey = n_1.n_nationke │  │  │ 3.000e+08 │ 1.000e+08 │ 9.498e+09 │ +│ y)  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/supplier,  │  │  │ 0  │ 1.000e+08 │ 9.498e+09 │ +│ Scan: Parallel, ReadRanges: ["s_suppkey (-∞, +∞)"], ReadColumns │  │  │  │  │  │ +│ : ["s_nationkey","s_suppkey"])  │  │  │  │  │  │ +│  -> TableFullScan (Table: column/tpch10000/nation, Sc │  │  │ 0  │ 25  │ 3760  │ +│ an: Parallel, ReadRanges: ["n_nationkey (-∞, +∞)"], ReadColumns │  │  │  │  │  │ +│ : ["n_name","n_nationkey","n_regionkey"])  │  │  │  │  │  │ +└─────────────────────────────────────────────────────────────────┴───────┴────────┴───────────┴───────────┴───────────┘ diff --git a/ydb/tools/ydbd_slice/bin/results.out b/ydb/tools/ydbd_slice/bin/results.out new file mode 100644 index 000000000000..e69de29bb2d1