Description
It's about issue that zookeeper's watch count is being increased.
I wrote issue on zookeeper mailing list but I couldn't get cool answer yet.
Please share any opinion with us if you have an idea..
http://zookeeper-user.578899.n2.nabble.com/Regarding-large-number-of-watch-count-td7579811.html
Refer to this article.
I've used following code for getting and releasing lock
try {
lock.acquire(...);
} finally {
lock.release();
}
Please check if I misunderstood how to use curator properly.
Thank you.