Map<String, Object> obj = (Map<String, Object>) client
.query(TABLESPACE, null, query, partition + "").getResult().get(0);
rowIdsPerPartition.put(partition, Long.parseLong(obj.get("MAX(rowid)").toString()));
}
SploutBenchmark benchmark = new SploutBenchmark();
for(int i = 0; i < nIterations; i++) {
benchmark.stressTest(nThreads, nQueries, PageCountsStressThreadImpl.class, context);
benchmark.printStats(System.out);
}
}