Package org.apache.hadoop.hbase.protobuf.generated.MasterProtos

Examples of org.apache.hadoop.hbase.protobuf.generated.MasterProtos.GetTableStateResponse


    @Override
    public TableState getTableState(TableName tableName) throws IOException {
      MasterKeepAliveConnection master = getKeepAliveMasterService();
      try {
        GetTableStateResponse resp = master.getTableState(null,
                RequestConverter.buildGetTableStateRequest(tableName));
        return TableState.convert(resp.getTableState());
      } catch (ServiceException se) {
        throw ProtobufUtil.getRemoteException(se);
      } finally {
        master.close();
      }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.protobuf.generated.MasterProtos.GetTableStateResponse

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.