poorbarcode commented on code in PR #18273:
URL: https://github.com/apache/pulsar/pull/18273#discussion_r1102311939
##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/transaction/buffer/metadata/v2/TransactionBufferSnapshotIndex.java:
##########
@@ -29,8 +29,8 @@
@NoArgsConstructor
public class TransactionBufferSnapshotIndex {
public long sequenceID;
- public long maxReadPositionLedgerID;
- public long maxReadPositionEntryID;
- public long persistentPositionLedgerID;
- public long persistentPositionEntryID;
+ public long abortedMarkLedgerID;
+ public long abortedMarkEntryID;
+ public long segmentLedgerID;
+ public long segmentEntryID;
Review Comment:
```suggestion
public long abortedMarkLedgerID;
public long abortedMarkEntryID;
/** location(ledger id of position) of a segment data in the system
topic __transaction_buffer_snapshot_segments **/
public long segmentLedgerID;
/** location(entry id of position) of a segment data in the system
topic __transaction_buffer_snapshot_segments **/
public long segmentEntryID;
```
--
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]