Uses of Interface
org.apache.hadoop.hbase.client.AdminProtocol

Packages that use AdminProtocol
org.apache.hadoop.hbase.catalog   
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
 

Uses of AdminProtocol in org.apache.hadoop.hbase.catalog
 

Methods in org.apache.hadoop.hbase.catalog that return AdminProtocol
 AdminProtocol CatalogTracker.waitForMetaServerConnection(long timeout)
          Deprecated. Use #getMetaServerConnection(long)
 

Uses of AdminProtocol in org.apache.hadoop.hbase.client
 

Methods in org.apache.hadoop.hbase.client that return AdminProtocol
 AdminProtocol HConnection.getAdmin(ServerName serverName)
          Establishes a connection to the region server at the specified address.
 AdminProtocol HConnection.getAdmin(ServerName serverName, boolean getMaster)
          Establishes a connection to the region server at the specified address.
 AdminProtocol HConnection.getAdmin(String hostname, int port)
          Deprecated. - use @link {#getAdmin(final ServerName serverName)} which takes into account the startCode
 AdminProtocol HConnection.getAdmin(String hostname, int port, boolean getMaster)
          Deprecated. use @link {#getAdmin(final ServerName serverName, boolean getMaster)} which takes into account the startCode.
 

Uses of AdminProtocol in org.apache.hadoop.hbase.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type AdminProtocol
static void ProtobufUtil.closeRegion(AdminProtocol admin, byte[] regionName, boolean transitionInZK)
          A helper to close a region given a region name using admin protocol.
static boolean ProtobufUtil.closeRegion(AdminProtocol admin, byte[] regionName, int versionOfClosingNode, ServerName destinationServer, boolean transitionInZK)
          A helper to close a region given a region name using admin protocol.
static List<HRegionInfo> ProtobufUtil.getOnlineRegions(AdminProtocol admin)
          A helper to get the all the online regions on a region server using admin protocol.
static HRegionInfo ProtobufUtil.getRegionInfo(AdminProtocol admin, byte[] regionName)
          A helper to retrieve region info given a region name using admin protocol.
static AdminProtos.ServerInfo ProtobufUtil.getServerInfo(AdminProtocol admin)
          A helper to get the info of a region server using admin protocol.
static List<String> ProtobufUtil.getStoreFiles(AdminProtocol admin, byte[] regionName, byte[] family)
          A helper to get the list of files of a column family on a given region using admin protocol.
static void ProtobufUtil.mergeRegions(AdminProtocol admin, HRegionInfo region_a, HRegionInfo region_b, boolean forcible)
          A helper to merge regions using admin protocol.
static void ProtobufUtil.openRegion(AdminProtocol admin, HRegionInfo region)
          A helper to open a region using admin protocol.
static void ProtobufUtil.split(AdminProtocol admin, HRegionInfo hri, byte[] splitPoint)
          A helper to split a region using admin protocol.
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.