Package org.apache.blur.agent.collectors.zookeeper

Examples of org.apache.blur.agent.collectors.zookeeper.ZookeeperCollector


    if (props.containsKey("zk.instances")) {
      List<String> zooKeeperInstances = new ArrayList<String>(Arrays.asList(props.getProperty("zk.instances").split("\\|")));
      for (String zkInstance : zooKeeperInstances) {
        String zkUrl = props.getProperty("zk." + zkInstance + ".url");
        String blurConnection = props.getProperty("blur." + zkInstance + ".url");
        new Thread(new ZookeeperCollector(zkUrl, zkInstance, blurConnection, new ZookeeperDatabaseConnection(jdbc)), "Zookeeper - "
            + zkInstance).start();
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.blur.agent.collectors.zookeeper.ZookeeperCollector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.