Skip to content

Commit

Permalink
add more logs
Browse files Browse the repository at this point in the history
  • Loading branch information
kardymonds committed Jan 31, 2025
1 parent b10fcf5 commit 5737c5a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions yql/essentials/minikql/comp_nodes/mkql_multihopping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ class TMultiHoppingCoreWrapper : public TStatefulSourceComputationNode<TMultiHop
TOutputSerializer out(EMkqlStateType::SIMPLE_BLOB, StateVersion, Ctx);

Cerr << "Save StatesMap size " << StatesMap.size() << Endl;
Cerr << "Save Ready size " << Ready.size() << Endl;

out.Write<ui32>(StatesMap.size());
for (const auto& [key, state] : StatesMap) {
Expand Down Expand Up @@ -146,6 +147,7 @@ class TMultiHoppingCoreWrapper : public TStatefulSourceComputationNode<TMultiHop
const auto statesMapSize = in.Read<ui32>();

Cerr << "Load StatesMap size " << statesMapSize << Endl;
Cerr << "Load Ready size " << Ready.size() << Endl;

ClearState();
StatesMap.reserve(statesMapSize);
Expand Down

0 comments on commit 5737c5a

Please sign in to comment.