Package org.apache.accumulo.server.master.state

Examples of org.apache.accumulo.server.master.state.TableCounts


  }
 
  private int assignedOrHosted(Text tableId) {
    int result = 0;
    for (TabletGroupWatcher watcher : watchers) {
      TableCounts count = watcher.getStats(tableId);
      result += count.hosted() + count.assigned();
    }
    return result;
  }
View Full Code Here


      // Count offline tablets for online tables
      for (TabletGroupWatcher watcher : watchers) {
        TableManager manager = TableManager.getInstance();
        for (Entry<Text,TableCounts> entry : watcher.getStats().entrySet()) {
          Text tableId = entry.getKey();
          TableCounts counts = entry.getValue();
          TableState tableState = manager.getTableState(tableId.toString());
          if (tableState != null && tableState.equals(TableState.ONLINE)) {
            result += counts.unassigned() + counts.assignedToDeadServers() + counts.assigned();
          }
        }
      }
    } else if (getMasterState().equals(MasterState.SAFE_MODE)) {
      // Count offline tablets for the METADATA table
View Full Code Here

TOP

Related Classes of org.apache.accumulo.server.master.state.TableCounts

Copyright © 2018 www.massapicom. 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.