try (CuratorFramework client = CuratorFrameworkFactory.builder().connectString("127.0.0.1:2181").
sessionTimeoutMs(1500).connectionTimeoutMs(1000).retryPolicy(new ExponentialBackoffRetry(20, 20)).
defaultData(new byte[0]).build()) {
client.start();
final String me = "node-" + Long.toHexString(new Random().nextLong());
new DistributedTreeTKB(new ZooKeeperDistributedTree(client), me).run();
}
}