adminProperties.setProperty("max_connections", "20");
adminClient = new AdminClient(cluster,
new AdminClientConfig(adminProperties),
new ClientConfig());
Node node = cluster.getNodeById(0);
String bootstrapUrl = "tcp://" + node.getHost() + ":" + node.getSocketPort();
StoreClientFactory storeClientFactory = new SocketStoreClientFactory(new ClientConfig().setBootstrapUrls(bootstrapUrl));
storeClient = storeClientFactory.getStoreClient(STORE_NAME);
}