etcd4j
etcd4j copied to clipboard
Java / Netty client for etcd, the highly-available key value store for shared configuration and service discovery.
the second example should be `etcd.post("queue","Job2").ttl(20).send();` at the post examples, right?
It seems that the function getDir(String) returns the same result as get(String). There's no difference between them. It sounds like the getDir should return "dir" nodes only, but in fact...
the doc writes: Setting up SSL (You need to set up the server with SSL) SslContext sslContext = SslContext.newClientContext(); try(EtcdClient etcd = new EtcdClient(sslContext, URI.create("https://123.45.67.89:8001"), URI.create("https://123.45.67.90:8001"))){ // Logs etcd version...
Firstly I use etcd4j version 2.11.0, everything is okay but`EtcdKeysResponse resp = etcdManagerClient.get(key).recursive().send().get();` throws exception:Invalid field, cause: invalid value for "recursive", at index: 0 Then I update etcd4j to 2.13.0,...
Hi, I'd like to share my results on API changes analysis of the library: https://abi-laboratory.pro/java/tracker/timeline/etcd4j/ The report is generated by the https://github.com/lvc/japi-compliance-checker tool for jars found at http://central.maven.org/maven2/org/mousio/etcd4j/ according to...
Hi All i have scenario like when i set the data to key from etcd client ,at the same time i will add listener for that key and key may...
Hey, I have a sample app working on Tomcat, but it is failing on Glassfish. In particular, it's hanging. I can't find anything that seems to be related in the...
Hi, I'm attempting to use the etcd4j lib to access an etcd service within BlueMix. The issue I have is how to handle the certificate (ca_certificate_base64) contained in the credentials...
Hy! Is there any way to get notified if the connection to the etcd server dies during a waitForChange? Sample code: ```java try { EtcdClient etcdClient = new EtcdClient(URI.create(System.getenv("etcd1.local"))) EtcdResponsePromise...