denis-chudov commented on code in PR #3371:
URL: https://github.com/apache/ignite-3/pull/3371#discussion_r1519539822


##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/FinishedReadOnlyTransactionTracker.java:
##########
@@ -70,25 +79,30 @@ public void broadcastClosedTransactions() {
         }
 
         Set<UUID> txToSend = finishedTransactions.stream()
+                .filter(transactionInflights::inflightsCompleted)

Review Comment:
   done



##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/InternalTableImpl.java:
##########
@@ -1573,7 +1583,9 @@ private Publisher<BinaryRow> readWriteScan(
                     return replicaSvc.invoke(recipient.node(), request);
                 },
                 // TODO: IGNITE-17666 Close cursor tx finish.
-                (intentionallyClose, fut) -> completeScan(txId, 
tablePartitionId, fut, recipient.node(), intentionallyClose));
+                (intentionallyClose, fut) -> completeScan(txId, 
tablePartitionId, fut, recipient.node(), intentionallyClose),
+                new ReadWriteInflightBatchRequestTracker()

Review Comment:
   done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to