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

Packages that use org.apache.hadoop.hbase.client.AsyncTable
Package
Description
 
Provides HBase Client
  • Uses of org.apache.hadoop.hbase.client.AsyncTable in org.apache.hadoop.hbase

    Methods in org.apache.hadoop.hbase with parameters of type org.apache.hadoop.hbase.client.AsyncTable in in
    Modifier and Type
    Method
    Description
    static CompletableFuture<Optional<org.apache.hadoop.hbase.HRegionLocation>>
    AsyncMetaTableAccessor.getRegionLocation(org.apache.hadoop.hbase.client.AsyncTable<?> metaTable, byte[] regionName)
    Returns the HRegionLocation from meta for the given region
    static CompletableFuture<Optional<org.apache.hadoop.hbase.HRegionLocation>>
    AsyncMetaTableAccessor.getRegionLocationWithEncodedName(org.apache.hadoop.hbase.client.AsyncTable<?> metaTable, byte[] encodedRegionName)
    Returns the HRegionLocation from meta for the given encoded region name
    static CompletableFuture<List<org.apache.hadoop.hbase.HRegionLocation>>
    AsyncMetaTableAccessor.getTableHRegionLocations(org.apache.hadoop.hbase.client.AsyncTable<org.apache.hadoop.hbase.client.AdvancedScanResultConsumer> metaTable, org.apache.hadoop.hbase.TableName tableName)
    Used to get all region locations for the specific table
    static CompletableFuture<Optional<org.apache.hadoop.hbase.client.TableState>>
    AsyncMetaTableAccessor.getTableState(org.apache.hadoop.hbase.client.AsyncTable<?> metaTable, org.apache.hadoop.hbase.TableName tableName)
     
    AsyncMetaTableAccessor.tableExists(org.apache.hadoop.hbase.client.AsyncTable<?> metaTable, org.apache.hadoop.hbase.TableName tableName)
     
  • Uses of org.apache.hadoop.hbase.client.AsyncTable in org.apache.hadoop.hbase.client

    Methods in org.apache.hadoop.hbase.client that return org.apache.hadoop.hbase.client.AsyncTable in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.client.AsyncTable<C>
    AsyncTableBuilder.build()
    Create the AsyncTable instance.
    default org.apache.hadoop.hbase.client.AsyncTable<org.apache.hadoop.hbase.client.AdvancedScanResultConsumer>
    AsyncConnection.getTable(org.apache.hadoop.hbase.TableName tableName)
    Retrieve an AsyncTable implementation for accessing a table.
    default org.apache.hadoop.hbase.client.AsyncTable<org.apache.hadoop.hbase.client.ScanResultConsumer>
    AsyncConnection.getTable(org.apache.hadoop.hbase.TableName tableName, ExecutorService pool)
    Retrieve an AsyncTable implementation for accessing a table.