Java REST client for Consul.io
Welcome! Hopefully this helps someone get started using Consul from java applications. This code has been production tested for a number of years at this point. Feel free to submit issues, or pull requests to contribute.
Latest Version Available 1.2
<dependency>
<groupId>com.github.dcshock</groupId>
<artifactId>consul-rest-client</artifactId>
<version>1.2</version>
</dependency>
"com.github.dcshock" % "consul-rest-client" % "1.2"
Starting point of using the client is to create a new Consul object which provides an interface with a Consul agent.
// Create a new consul client for a given host/port combo.
Consul consul = new Consul("http://localhost", 8500);
A Consul client provides all of the necessary methods to interact with the basic Consul REST end points.
// Access the consul catalog endpoints
consul.catalog();
// Access the consul agent endpoints
consul.agent();
// Create the consul client
final Consul consul = new Consul("http://localhost", 8500);
// Register a provider of a service with consul.
String[] tags;
consul.agent().register(new ServiceProvider("id", "name", 8302, tags));
consul.agent().deregister("id");
consul.agent().checkRegister(new AgentCheck("id", "checkid", "These are some notes", "/usr/local/bin/check_mem.py", "10s", "15s"));
Consul consul = new Consul("http://localhost", 8500);
// Create a session - defaults to release bahavior, 15 second lock delay, and a indefinite ttl.
String sessionId = consul.session().create("name");
// Create a session with a specific setup.
// 30 second lock delay
// DELETE behavior - Keys locked by this session will be deleted after the session is destroyed.
// RELEASE behavior - Keys locked by this session will be retained after the session is destroyed, but the session lock will be removed.
// 10 second ttl (minimum, timeout may occur much later)
String sessionId = consul.session().create("name", 30, Behavior.DELETE, 10);
// Destroy a session
boolean destroyed = consul.session().info(sessionId).destroy();
// Renew a session
consul.session().info(sessionId).renew();
Consul consul = new Consul("http://localhost", 8500);
KeyValue kv = consul.keyStore();
// Set a value
kv.set("key", "value");
// Get a value
kv.get("key");
// Acquire a lock with a session.
boolean acquired = kv.acquire("key", "value", "sessionId");
// Release a lock.
boolean released = kv.release("key", "value", "sessionId");
Since the consul-rest-client relies on Unirest to provide REST calls you need to shutdown the Unirest thread pool when stopping a process.
consul.shutdown();
In instances where a framework may shutdown loaded beans during hot deploys it is necessary to restart the Unirest thread pool.
// This happens when the consul bean is first instantiated, but sometimes the Unirest rug can get pulled, and require a manual jump start.
consul.startup();
Allow checking specific data center. Added data center data to HealthServiceCheck.
Allow setting a K/V value to a blank (empty) value
Added support for data centers
Session handling and key/value locks.
Fix invalid JSON array generation for tags.
Updated build dependencies for SBT users. The project didn't require Scala, and it was causing issues with prior versions if it was included.
Initial release of the client.