enixon commented on a change in pull request #684: ZOOKEEPER-3180: Add response
cache to improve the throughput of read …
URL: https://github.com/apache/zookeeper/pull/684#discussion_r247275731
##########
File path:
zookeeper-server/src/main/java/org/apache/zookeeper/server/ServerMetrics.java
##########
@@ -67,7 +67,10 @@
SNAP_COUNT(new SimpleCounter("snap_count")),
COMMIT_COUNT(new SimpleCounter("commit_count")),
CONNECTION_REQUEST_COUNT(new SimpleCounter("connection_request_count")),
- BYTES_RECEIVED_COUNT(new SimpleCounter("bytes_received_count"));
+ BYTES_RECEIVED_COUNT(new SimpleCounter("bytes_received_count")),
+
+ RESPONSE_PACKET_CACHE_HITS(new
SimpleCounter("response_packet_cache_hits")),
+ RESPONSE_PACKET_CACHE_MISSING(new
SimpleCounter("response_packet_cache_misses"));
Review comment:
I don't have numbers to share at the moment. :(
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services