Examples of shardClusterList()


Examples of org.apache.blur.thrift.generated.Blur.Iface.shardClusterList()

  public static Map<String, List> getTableSummaries() throws IOException, TException {
    Iface client = BlurClient.getClient(Config.getConnectionString());

    List<Map<String, Object>> summaries = new ArrayList<Map<String, Object>>();

    List<String> clusters = client.shardClusterList();

    for (String cluster : clusters) {
      List<String> tables = client.tableListByCluster(cluster);
      for (String table : tables) {
        Map<String, Object> tableInfo = new HashMap<String, Object>();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.