🥝 We have now transitioned consul-client from rickfast to kiwiproject. It is released to Maven Central. See the releases for more information. 🥝
Simple client for the Consul HTTP API. For more information about the Consul HTTP API, go here.
This library was imported from rickfast/consul-client, which is no longer being maintained per a note from the original maintainer.
Since we are still using this library in services which use Dropwizard and Consul, we decided to import the original
repository and continue maintaining it for our own use, and anyone else who might want to use it. We make no guarantees
whatsoever about how long we will maintain it, and also plan to make our own changes such as changing the base package
name to org.kiwiproject
to be consistent with our other libraries.
All other kiwiproject projects are MIT-licensed. However, because the original
consul-client
uses the Apache 2.0 license, we are keeping the Apache 2.0 license (otherwise to switch to MIT we
would have to gain consent of all contributors, which we do not want to do).
Another thing to note is that we imported this repository from the original, so that it is a "disconnected fork". We did not want a reference to the original repository since it is no longer maintained and no changes here will ever be pushed back upstream. Thus, while we maintain the history that this is a fork, it is completely disconnected and is now a standalone (normal) repository.
For the initial version 0.5.0, most likely the only thing you need to change in your POM is the group ID and the version number. However, you should instead go directly to 0.6.0, since there was an issue in the initial release in which the compile time dependencies were not included in the POM released to Maven Central. Other than the POM dependencies and a few minor documentation and minor changes in tests, 0.5.0 and 0.6.0 are basically the same.
If you are using PolicyResponse
and/or PolicyListResponse
, then you will need to change your code,
since datacenters
changed from Optional<String>
to Optional<List<String>>
,
so code using either of those will no longer compile.
This change was not avoidable, since the original type was incorrect.
Starting with version 0.7.0, the base package
changes from com.orbitz
to org.kiwiproject
. The class
names are the same, so existing code only needs to change the base package and recompile.
0.8.0 removes all deprecated methods
from AgentClient
and KeyValueClient
.
The methods in AgentClient
would have always failed anyway, since Consul no longer has the
HTTP endpoints they were calling. Last, there is a direct replacement for the method removed from KeyValueClient
.
Use the following to include consul-client
as a dependency in your project.
dependencies {
implementation 'org.kiwiproject:consul-client:[version]'
}
dependencies {
implementation("org.kiwiproject:consul-client:[version]")
}
<dependencies>
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>consul-client</artifactId>
<version>[version]</version>
</dependency>
</dependencies>
A shaded JAR is also provided using the Maven Shade Plugin to create an "uber-jar" that includes dependencies. To use the shaded JAR, add a classifier, e.g. in Maven:
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>consul-client</artifactId>
<version>[version]</version>
<classifier>shaded</classifier>
</dependency>
Consul client = Consul.builder().build(); // connect on localhost to default port 8500
AgentClient agentClient = client.agentClient();
String serviceId = "1";
Registration service = ImmutableRegistration.builder()
.id(serviceId)
.name("myService")
.port(8080)
.check(Registration.RegCheck.ttl(3L)) // registers with a TTL of 3 seconds
.tags(List.of("tag1"))
.meta(Map.of("version", "1.0"))
.build();
agentClient.register(service);
// Check in with Consul (serviceId required only).
// Client will prepend "service:" for service level checks.
// Note that you need to continually check in before the TTL expires; otherwise your service's state will be marked as "critical".
agentClient.pass(serviceId);
HealthClient healthClient = client.healthClient();
// Discover only "passing" nodes
List<ServiceHealth> nodes = healthClient.getHealthyServiceInstances("DataService").getResponse();
KeyValueClient kvClient = client.keyValueClient();
kvClient.putValue("foo","bar");
String value=kvClient.getValueAsString("foo").orElseThrow(); // bar
You can use the ConsulCache implementations to easily subscribe to Key-Value changes.
final KeyValueClient kvClient = client.keyValueClient();
kvClient.putValue("foo", "bar");
KVCache cache = KVCache.newCache(kvClient, "foo");
cache.addListener(newValues -> {
// Cache notifies all paths with "foo" the root path
// If you want to watch only "foo" value, you must filter other paths
Optional<Value> newValue = newValues.values().stream()
.filter(value -> value.getKey().equals("foo"))
.findAny();
newValue.ifPresent(value -> {
// Values are encoded in key/value store, decode it if needed
Optional<String> decodedValue=newValue.get().getValueAsString();
decodedValue.ifPresent(v->System.out.printf("Value is: %s%n",v)); //prints "bar"
});
});
cache.start();
// ...
cache.stop();
You can also use the ConsulCache implementations to easily subscribe to healthy service changes.
HealthClient healthClient = client.healthClient();
String serviceName = "my-service";
ServiceHealthCache svHealth = ServiceHealthCache.newCache(healthClient, serviceName);
svHealth.addListener((Map<ServiceHealthKey, ServiceHealth> newValues) -> {
// do something with updated server map
});
svHealth.start();
// ...
svHealth.stop();
StatusClient statusClient = client.statusClient();
statusClient.getPeers().forEach(System.out::println);
StatusClient statusClient = client.statusClient();
System.out.println(statusClient.getLeader()); // 127.0.0.1:8300
consul-client
makes use of Immutables to generate code for many of the value classes.
This provides a lot of functionality and benefit for little code, but it does require some additional development setup.
Official instructions are here, although you may want to change the target directories to the more gradle-like "generated/source/apt/main" and "generated/source/apt/test" targets.
Runs consul with Testcontainers