11#include " mkql_wide_combine.h"
22#include " mkql_rh_hash.h"
33
4- #include < format>
54#include < ydb/library/yql/minikql/computation/mkql_computation_node_codegen.h> // Y_IGNORE
65#include < ydb/library/yql/minikql/computation/mkql_llvm_base.h> // Y_IGNORE
76#include < ydb/library/yql/minikql/computation/mkql_computation_node.h>
@@ -367,13 +366,7 @@ class TSpillingSupportState : public TComputationValue<TSpillingSupportState> {
367366 ~TSpillingSupportState () {
368367 }
369368
370- bool WasLog = false ;
371-
372369 EFetchResult DoCalculate (TComputationContext& ctx, NUdf::TUnboxedValue*const * output) {
373- if (!WasLog) {
374- std::cerr << " [MISHA] WIDE COMBINE\n " ;
375- WasLog = true ;
376- }
377370 while (true ) {
378371 switch (GetMode ()) {
379372 case EOperatingMode::InMemory: {
@@ -521,10 +514,8 @@ class TSpillingSupportState : public TComputationValue<TSpillingSupportState> {
521514
522515 if (!HasMemoryForProcessing ()) {
523516 bool isWaitingForReduce = TryToReduceMemory ();
524- std::cerr << std::format (" [MISHA] PROCESSING. is waiting: {}\n " , isWaitingForReduce);
525517 if (isWaitingForReduce) return ;
526518 }
527- std::cerr << " [MISHA] PROCESSING\n " ;
528519
529520 if (BufferForUsedInputItems.size ()) {
530521 auto & bucket = SpilledBuckets[BufferForUsedInputItemsBucketId];
@@ -689,7 +680,6 @@ class TSpillingSupportState : public TComputationValue<TSpillingSupportState> {
689680 break ;
690681 }
691682 case EOperatingMode::Spilling: {
692- std::cerr << " [MISHA] spilling enabled\n " ;
693683 MKQL_ENSURE (EOperatingMode::InMemory == Mode, " Internal logic error" );
694684 SpilledBuckets.resize (SpilledBucketCount);
695685 auto spiller = ctx.SpillerFactory ->CreateSpiller ();
@@ -716,9 +706,9 @@ class TSpillingSupportState : public TComputationValue<TSpillingSupportState> {
716706 }
717707
718708 bool IsSwitchToSpillingModeCondition () const {
719- // return false;
709+ return false ;
720710 // TODO: YQL-18033
721- return !HasMemoryForProcessing ();
711+ // return !HasMemoryForProcessing();
722712 }
723713
724714private:
0 commit comments