Provides service discovery to dropwizard services. It uses Ranger for service discovery.
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
<dependency>
<groupId>io.dropwizard.discovery</groupId>
<artifactId>dropwizard-service-discovery-bundle</artifactId>
<version>1.3.12-1</version>
</dependency>
<dependency>
<groupId>io.dropwizard.discovery</groupId>
<artifactId>dropwizard-service-discovery-client</artifactId>
<version>1.3.7-4</version>
</dependency>
You need to add an instance of type ServiceDiscoveryConfiguration to your Dropwizard configuration file as follows:
public class AppConfiguration extends Configuration {
//Your normal config
@NotNull
@Valid
private ServiceDiscoveryConfiguration discovery = new ServiceDiscoveryConfiguration();
//Whatever...
public ServiceDiscoveryConfiguration getDiscovery() {
return discovery;
}
}
Next, you need to use this configuration in the Application while registering the bundle.
public class App extends Application<AppConfig> {
private ServiceDiscoveryBundle<AppConfig> bundle;
@Override
public void initialize(Bootstrap<AppConfig> bootstrap) {
bundle = new ServiceDiscoveryBundle<AppConfig>() {
@Override
protected ServiceDiscoveryConfiguration getRangerConfiguration(AppConfig appConfig) {
return appConfig.getDiscovery();
}
@Override
protected String getServiceName(AppConfig appConfig) {
//Read from some config or hardcode your service name
//This wi;l be used by clients to lookup instances for the service
return "some-service";
}
@Override
protected int getPort(AppConfig appConfig) {
return 8080; //Parse config or hardcode
}
};
bootstrap.addBundle(bundle);
}
@Override
public void run(AppConfig configuration, Environment environment) throws Exception {
....
//Register health checks
bundle.registerHealthcheck(() -> {
//Check whatever
return HealthcheckStatus.healthy;
});
...
}
}
That's it .. your service will register to zookeeper when it starts up.
Sample config section might look like:
server:
...
discovery:
namespace: mycompany
environment: production
zookeeper: "zk-server1.mycompany.net:2181,zk-server2.mycompany.net:2181"
...
...
The bundle also adds a jersey resource that lets you inspect the available instances. Use GET /instances to see all instances that have been registered to your service.
The client needs to be created and started. Once started it should never be stopped before the using service itself dies or no queries will ever be made to ZK. Creation of the client is expensive.
ServiceDiscoveryClient client = ServiceDiscoveryClient.fromConnectionString()
.connectionString("zk-server1.mycompany.net:2181, zk-server2.mycompany.net:2181")
.namespace("mycompany")
.serviceName("some-service")
.environment("production")
.objectMapper(new ObjectMapper())
.build();
Start the client
client.start();
Get a valid node from the client:
Optional<ServiceNode<ShardInfo>> node = client.getNode();
//Always check if node is present for better stability
if(node.isPresent()) {
//Use the endpoint details (host, port etc)
final String host = node.get().getHost();
final int port = node.get().getPort();
//Make service calls to the node etc etc
}
Close the client when not required:
client.stop();
Note
Apache 2
Can you improve this documentation? These fine people already did:
Santanu Sinha, lpmi-13, Rishabh & phaneeshEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close