use of io.pravega.segmentstore.storage.impl.bookkeeper.ZooKeeperServiceRunner in project pravega by pravega.
the class InProcPravegaCluster method startLocalZK.
private void startLocalZK() throws Exception {
zkService = new ZooKeeperServiceRunner(zkPort, secureZK, jksKeyFile, keyPasswordFile, jksTrustFile);
zkService.initialize();
zkService.start();
}
Aggregations