StormSubmitter.submitTopology(_name+"_"+topoNum, conf, builder.createTopology());
}
metrics(client, _messageSize, _pollFreqSec, _testRunTimeSec);
} finally {
//Kill it right now!!!
KillOptions killOpts = new KillOptions();
killOpts.set_wait_secs(0);
for (int topoNum = 0; topoNum < _numTopologies; topoNum++) {
LOG.info("KILLING "+_name+"_"+topoNum);
try {
client.killTopologyWithOpts(_name+"_"+topoNum, killOpts);