congbobo184 commented on code in PR #15675:
URL: https://github.com/apache/pulsar/pull/15675#discussion_r901339980


##########
pulsar-client-admin-api/src/main/java/org/apache/pulsar/common/policies/data/TransactionBufferStats.java:
##########
@@ -28,4 +30,13 @@ public class TransactionBufferStats {
 
     /** The last snapshot timestamps of this transaction buffer. */
     public long lastSnapshotTimestamps;
+
+    /**
+     * (Optional) The lowWaterMark details of the transaction buffer.
+     */
+    public ConcurrentHashMap<Long, Long> lowWaterMarks;

Review Comment:
   ony map is ok



##########
pulsar-client-admin-api/src/main/java/org/apache/pulsar/common/policies/data/TransactionPendingAckStats.java:
##########
@@ -18,8 +18,20 @@
  */
 package org.apache.pulsar.common.policies.data;
 
+import java.util.concurrent.ConcurrentHashMap;
+
 public class TransactionPendingAckStats {
 
     /** The state of this pending ack. */
     public String state;
+
+    /**
+     * (Optional) The lowWaterMark details of the transaction pending ack.
+     */
+    public ConcurrentHashMap<Long, Long> lowWaterMarks;

Review Comment:
   only map is ok



-- 
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