the documentation on snapcount in the admin guide has the wrong default -----------------------------------------------------------------------
Key: ZOOKEEPER-574 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-574 Project: Zookeeper Issue Type: Bug Reporter: Patrick Hunt Priority: Minor Fix For: 3.3.0 I believe it's 100k, not 10k ----------------------- snapCount (Java system property: zookeeper.snapCount) Clients can submit requests faster than ZooKeeper can process them, especially if there are a lot of clients. To prevent ZooKeeper from running out of memory due to queued requests, ZooKeeper will throttle clients so that there is no more than globalOutstandingLimit outstanding requests in the system. The default limit is 1,000.ZooKeeper logs transactions to a transaction log. After snapCount transactions are written to a log file a snapshot is started and a new transaction log file is started. The default snapCount is 10,000. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.