private static void runTable(String[] args) throws Exception {
String tableName = args[1];
Map stormconf = Utils.readStormConfig();
ClusterState zkClusterstate = Cluster
.mk_distributed_cluster_state(stormconf);
StormClusterState zkCluster = Cluster
.mk_storm_cluster_state(zkClusterstate);
zkCluster.higo_remove(tableName);
zkCluster.disconnect();
Integer shards = StormUtils
.parseInt(stormconf.get("higo.shards.count"));
Integer replication = StormUtils.parseInt(stormconf.containsKey("higo.shards.replication")?stormconf.get("higo.shards.replication"):1);