327328329330331332333334335336337
latency /= 1000d * 1000d; System.out.printf("Simple bench did %.2f iterations / sec at %.2f ms latency per txn.\n", rate, latency); server.shutdown(); server.join(); } public void testJSON() { try { //b.testSimple();
7980818283848586
} // clean up / shutdown voltclient.close(); server.shutdown(); server.join(); } }
949596979899100101102
System.out.println("deployment path: " + config.m_pathToDeployment); config.m_port = VoltDB.DEFAULT_PORT; ServerThread server = new ServerThread(config); server.start(); server.join(); } }
178179180181182183184185186187188
if (client != null) { client.close(); } if (localServer != null) { localServer.shutdown(); localServer.join(); } } } public void testIndexRejection() throws Exception {
294295296297298299300301302303304
if (client != null) { client.close(); } if (localServer != null) { localServer.shutdown(); localServer.join(); } } } public void testBigFatBlobs() throws Exception {
355356357358359360361362363364
if (client != null) { client.close(); } if (localServer != null) { localServer.shutdown(); localServer.join(); } } } }