curator
curator copied to clipboard
Apache Curator
Currently, it hangs on curator-test-zkxx. It should be related to some packaging issues. --- Originally reported by tison, imported from: Run TestLeaderSelectorEdges for all zk38 or later versions assignee: eolivelli...
No Description --- Originally reported by tison, imported from: Cleanup Compatibility glue for ZK versions that no longer supported assignee: eolivelli status: Open priority: Major resolution: Unresolved imported: 2025-01-21
No Description --- Originally reported by tison, imported from: Figure out what ZK versions we would keep coverage assignee: eolivelli status: Open priority: Major resolution: Unresolved imported: 2025-01-21
No Description --- Originally reported by tison, imported from: Catch up ZooKeeper new versions assignee: tison status: Open priority: Major resolution: Unresolved imported: 2025-01-21
Curator already includes an abstraction to allow the integration of observability systems, namely the driver abstraction. It would be useful to provide an Open Telemetry Tracing driver so that a...
I think this was introduced in CURATOR-166, which changed ZKPaths to strip trailing slashes from child nodes. This is fine in most cases: it made it so curatorFramework.create() .forPath("/path/to/node/", data);...
There is an inconsistency in handling paths when calling: curator.create().creatingParentsIfNeeded().withMode(CreateMode.PERSISTENT_SEQUENTIAL).forPath(). If the path passed ends with a "/", the call will succeed if the parents exist, but fail if it...
Here is a junit test write in groovy. import org.apache.curator.framework.CuratorFramework import org.apache.curator.framework.CuratorFrameworkFactory import org.apache.curator.retry.RetryOneTime import org.apache.curator.test.TestingServer import org.apache.zookeeper.CreateMode import org.junit.After import org.junit.Before import org.junit.Test public class PlayZK { private TestingServer...
Encountered the following exception 2017-01-27 17:41:49.515 ERROR [org.apache.curator.framework.imps.CuratorFrameworkImpl] {main} Ensure path threw exception org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /bids at org.apache.zookeeper.KeeperException.create(KeeperException.java:99) at org.apache.zookeeper.KeeperException.create(KeeperException.java:51) at org.apache.zookeeper.ZooKeeper.exists(ZooKeeper.java:1846) at org.apache.zookeeper.ZooKeeper.exists(ZooKeeper.java:1874) at org.apache.curator.utils.ZKPaths.mkdirs(ZKPaths.java:274) at...
Curator has this dependency: org.jboss.resteasy resteasy-jaxrs 2.3.5.Final That dependency bring CVEs: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-6346 (denial of service) https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-7839 (XML external entity (XXE) attacks) --- Originally reported by slavikca, imported from: Update dependencies:...