We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ca2708 commit 502e299Copy full SHA for 502e299
ydb/core/kqp/runtime/kqp_stream_lookup_actor.cpp
@@ -397,12 +397,16 @@ class TKqpStreamLookupActor : public NActors::TActorBootstrapped<TKqpStreamLooku
397
auto shardIt = ReadsPerShard.find(tabletId);
398
YQL_ENSURE(shardIt != ReadsPerShard.end());
399
400
+ TVector<TReadState*> toRetry;
401
for (auto* read : shardIt->second.Reads) {
402
if (read->State == EReadState::Running) {
403
Counters->IteratorDeliveryProblems->Inc();
- RetryTableRead(*read);
404
+ toRetry.push_back(read);
405
}
406
407
+ for (auto* read : toRetry) {
408
+ RetryTableRead(*read);
409
+ }
410
411
412
void Handle(TEvPrivate::TEvSchemeCacheRequestTimeout::TPtr&) {
0 commit comments