Browse Source

Remove limit of 24 task per shuffle stage

hor911 1 year ago
parent
commit
cf5b6afa0a
1 changed files with 0 additions and 1 deletions
  1. 0 1
      ydb/core/kqp/executer_actor/kqp_data_executer.cpp

+ 0 - 1
ydb/core/kqp/executer_actor/kqp_data_executer.cpp

@@ -1510,7 +1510,6 @@ private:
             switch (input.GetTypeCase()) {
                 case NKqpProto::TKqpPhyConnection::kHashShuffle: {
                     partitionsCount = std::max(partitionsCount, (ui32)originStageInfo.Tasks.size());
-                    partitionsCount = std::min(partitionsCount, 24u);
                     break;
                 }