jhuan31 commented on a change in pull request #849: ZOOKEEPER-3305: Add Quorum Packet metrics URL: https://github.com/apache/zookeeper/pull/849#discussion_r266088306
########## File path: zookeeper-server/src/main/java/org/apache/zookeeper/server/quorum/LearnerHandler.java ########## @@ -98,6 +110,15 @@ int getVersion() { final LinkedBlockingQueue<QuorumPacket> queuedPackets = new LinkedBlockingQueue<QuorumPacket>(); + /** + * Marker packets would be added to quorum packet queue after every + * markerPacketInterval packets. + * It is ok if packetCounter overflows. + */ + private final int markerPacketInterval = 1000; + private AtomicInteger packetCounter = new AtomicInteger(); + + Review comment: removed ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services