GitHub user onurkaraman opened a pull request:
https://github.com/apache/kafka/pull/3860
KAFKA-5894: add the notion of max inflight requests to async
ZookeepeeperClient
ZookeeperClient is a zookeeper client that encourages pipelined requests to
zookeeper. We want to add the notion of max inflight requests to the client for
several reasons:
1. to bound memory overhead associated with async requests on the client.
2. to not overwhelm the zookeeper ensemble with a burst of requests.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/onurkaraman/kafka KAFKA-5894
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/kafka/pull/3860.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #3860
----
commit a767c27436d4dc4da452edcee8bff54edd41dabd
Author: Onur Karaman <[email protected]>
Date: 2017-09-14T17:46:22Z
KAFKA-5894: add the notion of max inflight requests to async ZookeeperClient
ZookeeperClient is a zookeeper client that encourages pipelined requests to
zookeeper. We want to add the notion of max inflight requests to the client for
several reasons:
1. to bound memory overhead associated with async requests on the client.
2. to not overwhelm the zookeeper ensemble with a burst of requests.
----
---