tableInfo.put("cluster", cluster);
tableInfo.put("name", table);
tableInfo.put("enabled", descriptor.isEnabled());
if (descriptor.isEnabled()) {
TableStats stats = client.tableStats(table);
tableInfo.put("rows", stats.getRowCount());
tableInfo.put("records", stats.getRecordCount());
Schema schema = client.schema(table);
tableInfo.put("families", new ArrayList<String>(schema.getFamilies().keySet()));