PakhomovAlexander commented on code in PR #5209: URL: https://github.com/apache/ignite-3/pull/5209#discussion_r1983100809
########## modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/ReadOnlyTransactionImpl.java: ########## @@ -113,22 +113,31 @@ public TablePartitionId commitPartition() { @Override public CompletableFuture<Void> commitAsync() { return TransactionsExceptionMapperUtil.convertToPublicFuture( - finish(true, readTimestamp, false), + finish(true, readTimestamp, false, false), TX_COMMIT_ERR ); } @Override public CompletableFuture<Void> rollbackAsync() { return TransactionsExceptionMapperUtil.convertToPublicFuture( - finish(false, readTimestamp, false), + finish(false, readTimestamp, false, false), TX_ROLLBACK_ERR ); } @Override - public CompletableFuture<Void> finish(boolean commit, HybridTimestamp executionTimestamp, boolean full) { + public CompletableFuture<Void> rollbackTimeoutExceededAsync() { + return TransactionsExceptionMapperUtil.convertToPublicFuture( + finish(false, readTimestamp, false, true), + TX_ROLLBACK_ERR + ).thenAccept(unused -> this.timeoutExceeded = true); Review Comment: This is a part of the internal API and we use this flag as a "cached" value. So, I believe this must be set to `true` after the actual rollback happened. Speaking about race here, I can't say there are any problem with it here. If you have some ideas/tests scenarios I would appreciate if you share them. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org