Skip to content

Commit

Permalink
streamlookup: fix zero default for MaxDelayedRows (ydb-platform#10735)
Browse files Browse the repository at this point in the history
  • Loading branch information
yumkam authored Oct 23, 2024
1 parent 9f0b790 commit cf5cb23
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ydb/library/yql/providers/dq/planner/execution_planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,7 @@ namespace NYql::NDqs {
const auto narrowOutputRowType = GetSeqItemType(streamLookup.Ptr()->GetTypeAnn());
Y_ABORT_UNLESS(narrowOutputRowType->GetKind() == ETypeAnnotationKind::Struct);
settings.SetNarrowOutputRowType(NYql::NCommon::GetSerializedTypeAnnotation(narrowOutputRowType));
settings.SetMaxDelayedRows(1'000'000); //TODO configure me
settings.SetCacheLimit(1'000'000); //TODO configure me
settings.SetCacheTtlSeconds(60); //TODO configure me

Expand Down

0 comments on commit cf5cb23

Please sign in to comment.