LOG.info("Clearing store table [" + table + "]");
TableDescriptor describe = client.describe(table);
LOG.info("Disabling table [" + table + "]");
client.disableTable(table);
LOG.info("Removing table [" + table + "]");
client.removeTable(table, true);
LOG.info("Creating table [" + table + "]");
client.createTable(describe);
}
}
} catch (BlurException e) {