curator
curator copied to clipboard
Apache Curator
Currently when PersistentTtlNode starts, it will create a CONTAINER node create a CHILD node `_touch` But there is a initialDelay between 1 and 2. If the initialDelay is long enough...
When closing the client quickly after closing a LeaderSelector, we get an annoying error log message because the client is in state STOPPED when mutex.release() is called in LeaderSelector: ```...
We have a jar application we are using the below "curator-framework-4.3.0" and "zookeeper-3.5.7" on the client servers for such application CURATOR-525 There is a race condition in Curator which might...
https://issues.apache.org/jira/browse/CURATOR-727 This gives users the ability to run all watches asynchronously, via a provided executorService.
There might be a ClassCastException happening when starting the TestingZooKeeper instance. The following test reproduces the issue: @Test public void testTestingZooKeeperServer() throws Exception { final Map customProperties = new HashMap();...
This would modify NamespaceWatcher such that the process() method would run the provided watcher instance in an ExecutorService, if the CuratorFramework was setup to use an asyncWatchService. This way long-running...
User testing code description: The test code is in testCuratorClient.java. When creating the Curator client,the user added the CuratorListener in the test code to listen for the AuthFailed event generated...
https://github.com/apache/curator/blob/master/curator-client/src/main/java/org/apache/curator/utils/InjectSessionExpiration.java#L97 Curator inject will set zookeeper state to CLOSED when session expires without close zk associated threads. If state set to CLOSED, ZooKeeper.close() function won't be able to release resources...