if (hstore_conf.client.output_table_stats_periodically != null && hstore_conf.client.output_table_stats_periodically.isEmpty() == false) {
if (hstore_conf.client.output_table_stats_periodically.equalsIgnoreCase("true")) {
LOG.warn("The HStoreConf parameter 'hstore_conf.client.output_table_stats_periodically' should be a file path, not a boolean value");
}
File f = new File(hstore_conf.client.output_table_stats_periodically);
this.registerInterest(new TableStatsPrinter(this.getClientConnection(), f));
}
// Kill Benchmark on Zero Results
if (m_config.killOnZeroResults) {
if (debug.val) LOG.debug("Will kill benchmark if results are zero for two poll intervals");