Skip to content

Commit ee02567

Browse files
authored
In YT settings, make lookup join settings limits more generous (#6557)
1 parent a456848 commit ee02567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/library/yql/providers/yt/common/yql_yt_settings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ TYtConfiguration::TYtConfiguration()
314314
REGISTER_SETTING(*this, MapJoinUseFlow);
315315
REGISTER_SETTING(*this, EvaluationTableSizeLimit).Upper(10_MB); // Max 10Mb
316316
REGISTER_SETTING(*this, LookupJoinLimit).Upper(10_MB); // Same as EvaluationTableSizeLimit
317-
REGISTER_SETTING(*this, LookupJoinMaxRows).Upper(1000);
317+
REGISTER_SETTING(*this, LookupJoinMaxRows).Upper(10000);
318318
REGISTER_SETTING(*this, DisableOptimizers);
319319
REGISTER_SETTING(*this, MaxInputTables).Lower(2).Upper(3000); // 3000 - default max limit on YT clusters
320320
REGISTER_SETTING(*this, MaxOutputTables).Lower(1).Upper(100); // https://ml.yandex-team.ru/thread/yt/166633186212752141/
@@ -448,7 +448,7 @@ TYtConfiguration::TYtConfiguration()
448448
REGISTER_SETTING(*this, DqPruneKeyFilterLambda);
449449
REGISTER_SETTING(*this, MergeAdjacentPointRanges);
450450
REGISTER_SETTING(*this, KeyFilterForStartsWith);
451-
REGISTER_SETTING(*this, MaxKeyRangeCount).Upper(1000);
451+
REGISTER_SETTING(*this, MaxKeyRangeCount).Upper(10000);
452452
REGISTER_SETTING(*this, MaxChunksForDqRead).Lower(1);
453453
REGISTER_SETTING(*this, NetworkProject);
454454
REGISTER_SETTING(*this, FileCacheTtl);

0 commit comments

Comments
 (0)