Git Product home page Git Product logo

curator-global-config's Introduction

Globally Centralized Configuration (Java)

Central configuration repository client using Zookeeper. Build on top of Zookeeper using Curator Framework https://github.com/Netflix/curator

General Overview

  • Java Application connects to set of Zookeeper servers using Curator Framework
  • Fetches recent configuration settings (property file) and maintains local copy in HashMap for quick lookups
  • Client watches znode for changes and updates local HashMap when configuration changes
  • Optionally client may add listeners on each configuration key to handle onChange events

Example

// Zookeeper CuratorFramework Connections
CuratorFramework zooClient = CuratorFrameworkFactory.builder().namespace("curatordemo")
			.connectString("localhost:2181").retryPolicy(new ExponentialBackoffRetry(1000, 3))
			.connectionTimeoutMs(30000).build();
zooClient.start();

// Configuration Manager Initialization
ConfManager confManager = ConfManager.getInstance();
confManager.setDataFormat(CONF_DATA_FORMAT.JSON); // assumes data to be in JSON
confManager.setZookeeperPath("/sample-path"); // optional to set correct global path
confManager.setClient(zooClient);

// Read Properties (String, Integers, Arrays)
String stringProp = confManager.getPropertyAsString("test.stringKey", "defValue");
Integer intProp = confManager.getPropertyAsInteger("test.intKey", 10);
ArrayList<String> arrayProp = confManager.getPropertyAsList("test.arrayKey", Arrays.asList(""));

confManager.addChangeListener("test.changeKeyTest", new ConfManager.PropertyChangeHandler<String>() {
    @Override
    public void handle(String newValue) {
        System.out.println("Received new value: " + newValue);
    }
});

curator-global-config's People

Contributors

vladaman avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.