We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 995b753 commit 146b12dCopy full SHA for 146b12d
ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
@@ -439,6 +439,14 @@ class TDqComputeActorBase : public NActors::TActorBootstrapped<TDerived>
439
return;
440
}
441
442
+ if (status != ERunStatus::Finished) {
443
+ for (auto& [id, inputTransform] : InputTransformsMap) {
444
+ if (!inputTransform.Buffer->Empty()) {
445
+ ContinueExecute(EResumeSource::CAPendingInput);
446
+ }
447
448
449
+
450
if (status != ERunStatus::Finished) {
451
// If the incoming channel's buffer was full at the moment when last ChannelDataAck event had been sent,
452
// there will be no attempts to send a new piece of data from the other side of this channel.
0 commit comments