Skip to content

Commit

Permalink
YQ-4043 fixed hanging in kqp write actor (#14017)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA authored Jan 30, 2025
1 parent 9fb934c commit 33b41a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/kqp/runtime/kqp_write_actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ class TKqpDirectWriteActor : public TActorBootstrapped<TKqpDirectWriteActor>, pu
void Process() {
if (GetFreeSpace() <= 0) {
WaitingForTableActor = true;
} else if (WaitingForTableActor && GetFreeSpace() > MessageSettings.InFlightMemoryLimitPerActorBytes / 2) {
} else if (WaitingForTableActor) {
ResumeExecution();
}

Expand Down

0 comments on commit 33b41a1

Please sign in to comment.