Skip to content

Commit 25d4337

Browse files
authored
streamlookup: fix zero default for MaxDelayedRows backport (#10735) (#10774)
1 parent 96ebce8 commit 25d4337

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ydb/library/yql/providers/dq/planner/execution_planner.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,7 @@ namespace NYql::NDqs {
604604
const auto narrowOutputRowType = GetSeqItemType(streamLookup.Ptr()->GetTypeAnn());
605605
Y_ABORT_UNLESS(narrowOutputRowType->GetKind() == ETypeAnnotationKind::Struct);
606606
settings.SetNarrowOutputRowType(NYql::NCommon::GetSerializedTypeAnnotation(narrowOutputRowType));
607+
settings.SetMaxDelayedRows(1'000'000); //TODO configure me
607608
settings.SetCacheLimit(1'000'000); //TODO configure me
608609
settings.SetCacheTtlSeconds(60); //TODO configure me
609610

0 commit comments

Comments
 (0)