Skip to content

A simple discovery SPI for hazelcast based on flipkart-ranger service discovery library

Notifications You must be signed in to change notification settings

jhelbling/hazelcast-ranger-discovery

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hazelcast Ranger Discovery Travis build status

This is a discovery strategy extension for Hazelcast to make discovery work on ranger. This library compiles only on Java 8.

Dependencies

  • ranger 0.2.1

Usage

Hazelcast Ranger Discovery provides a easy way to enable member discovery with elastic applications on docker & DCOS like environment where using a static host list or using multicast based discovery is not possible.

Build instructions

  • Clone the source:

    git clone github.com/phaneesh/hazelcast-ranger-discovery
    
  • Build

    mvn install
    

Maven Dependency

Use the following repository:

<repository>
    <id>clojars</id>
    <name>Clojars repository</name>
    <url>https://clojars.org/repo</url>
</repository>

Use the following maven dependency:

<dependency>
    <groupId>com.ranger.hazelcast.servicediscovery</groupId>
    <artifactId>hazelcast-ranger-discovery</artifactId>
    <version>0.1.1</version>
</dependency>

Using Hazelcast Ranger Discovery

Config config = new Config();
//This is important to enable the discovery strategy
config.setProperty(GroupProperty.DISCOVERY_SPI_ENABLED, "true");
config.setProperty(GroupProperty.DISCOVERY_SPI_PUBLIC_IP_ENABLED, "true");
config.setProperty(GroupProperty.SOCKET_CLIENT_BIND_ANY, "false");
config.setProperty(GroupProperty.SOCKET_BIND_ANY, "false");
NetworkConfig networkConfig = config.getNetworkConfig();
JoinConfig joinConfig = networkConfig.getJoin();
joinConfig.getTcpIpConfig().setEnabled(false);
joinConfig.getMulticastConfig().setEnabled(false);
joinConfig.getAwsConfig().setEnabled(false);
DiscoveryConfig discoveryConfig = joinConfig.getDiscoveryConfig();
//Set the discovery strategy to RangerDiscoveryStrategy
DiscoveryStrategyConfig discoveryStrategyConfig = new DiscoveryStrategyConfig(new RangerDiscoveryStrategyFactory());
//Zookeeper connection string used by ranger
discoveryStrategyConfig.addProperty("zk-connection-string", testingCluster.getConnectString());
//Namespace that needs to be used by ranger for this service
discoveryStrategyConfig.addProperty("namespace", "hz_disco");
//Service name that needs to be used
discoveryStrategyConfig.addProperty("service-name", "hz_disco_test");
//Hazelcast port that needs to be used for registration
discoveryStrategyConfig.addProperty("port", "5701");
discoveryConfig.addDiscoveryStrategyConfig(discoveryStrategyConfig);
//Create the hazelcast instance
HazelcastInstance hazelcast = Hazelcast.newHazelcastInstance(config);

Note

If you are using hazelcast in applications deployed on DCOS; then you should set the following configuration for discovery to work

NetworkConfig networkConfig = config.getNetworkConfig();
networkConfig.setPublicAddress("<public ip address/host name>" +":" +"<public port>");

Example: (On DCOS + Marathon assuming hazelcast container port is set to 5701)

NetworkConfig networkConfig = config.getNetworkConfig();
networkConfig.setPublicAddress(System.getenv("HOST") +":" +System.getenv("PORT_5701"))

LICENSE

Copyright 2016 Phaneesh Nagaraja [email protected].

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

A simple discovery SPI for hazelcast based on flipkart-ranger service discovery library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%