aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhor911 <hor911@ydb.tech>2023-10-17 16:05:46 +0300
committerhor911 <hor911@ydb.tech>2023-10-17 17:02:09 +0300
commitcf5b6afa0a2fe876a363f55314e5fe13ae66fc1b (patch)
tree4529d7f7d309e430940208894da2e9294ddfafca
parent370361b9e5649ee21ee34d73fec19194657629e0 (diff)
downloadydb-cf5b6afa0a2fe876a363f55314e5fe13ae66fc1b.tar.gz
Remove limit of 24 task per shuffle stage
-rw-r--r--ydb/core/kqp/executer_actor/kqp_data_executer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/ydb/core/kqp/executer_actor/kqp_data_executer.cpp b/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
index 2a53e5310e..216879297a 100644
--- a/ydb/core/kqp/executer_actor/kqp_data_executer.cpp
+++ b/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;
}