curator icon indicating copy to clipboard operation
curator copied to clipboard

Apache Curator

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

I was using CuratorFramework and was unable to see some expected session expiration events. Here's a simpler demonstration of these missed events (without using CuratorFramework) Code that works: This code...

bug
imported-jira-issue

According to the documentation at https://curator.apache.org/apidocs/org/apache/curator/SessionFailRetryLoop.html the canonical usage of SessionFailRetryLoop is: SessionFailRetryLoop retryLoop = client.newSessionFailRetryLoop(mode); retryLoop.start(); try { while ( retryLoop.shouldContinue() ) { try { // do work }...

bug
imported-jira-issue

According to http://curator.apache.org/curator-recipes/distributed-queue.html#Error_Handling, the QueueConsumer implementer can receive connection state updates. However, in fact, my consumer is never notified of any state updates when the connection is down. By checking...

bug
imported-jira-issue

We noticed that if GC pause > session timeout and even if retry policy is set, Curator doesn't retry. We use CuratorFramework.getConnectionStateListenable to listen on connection state. ConnectionState.LOST is received...

bug
imported-jira-issue

TestCleanState is used in finally blocks in lots of tests to close the Curator handle and check for cleaned watchers. However, being in a finally, it always runs. If there...

imported-jira-issue

Here is the problem I’m meeting: Assuming 3 node ensemble, my application has 3 clients and each one runs on same zk node (Client 1, 2 and 3). They use...

bug
imported-jira-issue

Curator probably has some thread leaks. The tests should be enhanced to find them and fixes should be applied. --- Originally reported by randgalt, imported from: Find/fix all thread leaks...

bug
imported-jira-issue

We need store InterProcessMutex (so that it can be used for Reentrant) in a map when we acquire a lock and remove it when we release it. It good to...

bug
imported-jira-issue

Bumps org.apache.zookeeper:zookeeper from 3.5.7 to 3.8.4. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.zookeeper:zookeeper&package-manager=maven&previous-version=3.5.7&new-version=3.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
java

CURATOR-495 introduced a new runSafeService field in CuratorFrameworkImpl class, and this field is either initialized by an external ExecutorService via the builder, or it is created internally within the class....