return scatterGather(getCluster(table), new BlurCommand<TableStats>() {
@Override
public TableStats call(Client client) throws BlurException, TException {
return client.tableStats(table);
}
}, new MergerTableStats(_defaultParallelCallTimeout));
} catch (Exception e) {
LOG.error("Unknown error while trying to get table stats [{0}]", e, table);
throw new BException("Unknown error while trying to get table stats [{0}]", e, table);
}
}