curator icon indicating copy to clipboard operation
curator copied to clipboard

ZooKeeper client wrapper and rich ZooKeeper framework

Results 13 curator issues
Sort by recently updated
recently updated
newest added

We're trying to set up a lock for our Zookeeper operations, but when we attempt to call the release function, the entire application simply hangs on the call to release...

hello zookeeper version :3.4.13 curator:4.2.0 our project the such similar code ```java lock = new InterProcessMutex(client, LOCK_PATH_PREFIX + userid); acquire(lock); try{ }catch(){}finally{ lock.release() } ``` but we found the parent...

`KeeperErrorCode = NoNode for /zk1/SendMessageTask/guarantee/completed` `client.create().creatingParentContainersIfNeeded().withMode(CreateMode.PERSISTENT).forPath(key, value.getBytes(Charsets.UTF_8)); ` I did not find any other exceptions in the logs of the Zookeeper server and client. This exception occurs once a month....