sanpwc commented on code in PR #4974: URL: https://github.com/apache/ignite-3/pull/4974#discussion_r1898682996
########## modules/partition-replicator/src/main/java/org/apache/ignite/internal/partition/replicator/network/replication/ReadOnlyReplicaRequest.java: ########## @@ -17,12 +17,24 @@ package org.apache.ignite.internal.partition.replicator.network.replication; +import java.util.UUID; import org.apache.ignite.internal.hlc.HybridTimestamp; import org.apache.ignite.internal.replicator.message.ReplicaRequest; +import org.jetbrains.annotations.Nullable; /** * Read only replica request. */ public interface ReadOnlyReplicaRequest extends ReplicaRequest { HybridTimestamp readTimestamp(); + + /** ID of the transaction in which this request is made. */ + // TODO: remove @Nullable after IGNITE-24120 is sorted out. + @Nullable + UUID transactionId(); + + /** Inconsistent ID of transaction to which this operation belongs. */ Review Comment: Inconsistent ID of transaction **coordinator** I guess. -- 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