Github user anmolnar commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/415#discussion_r149945747 --- Diff: src/java/main/org/apache/zookeeper/server/ZooKeeperServerBean.java --- @@ -167,4 +167,9 @@ public String getSecureClientAddress() { public long getTxnLogElapsedSyncTime() { return zks.getTxnLogElapsedSyncTime(); } + + @Override + public int getJuteMaxBufferSize() { + return Integer.getInteger("jute.maxbuffer", 0xfffff); --- End diff -- I deal with it in the other way around. Directly access BinaryInputArchive.maxBuffer from here.
---