@Override
public void prepare(Map stormConf, TopologyContext context, OutputCollector collector) {
this.collector = collector;
try {
this.connector = new HTableConnector(conf);
} catch (IOException e) {
throw new RuntimeException(e);
}
LOG.info("Preparing HBaseBolt for table: " + this.conf.getTableName());