updateConfig.addColumn("data", "date");
TridentTopology topology = new TridentTopology();
topology.newStream("shorturls", spout).partitionPersist(
new HBaseValueFactory(updateConfig),
new Fields("shortid", "url", "user", "date"), new HBaseValueUpdater());
Config conf = new Config();
LocalCluster cluster = new LocalCluster();
cluster.submitTopology("hbase-trident-updater", conf, topology.build());