Uses of Class
org.apache.hadoop.hbase.client.Query

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

    Subclasses of org.apache.hadoop.hbase.client.Query in in org.apache.hadoop.hbase.client
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.client.Get
    Used to perform Get operations on a single row.
    final class 
    org.apache.hadoop.hbase.client.ImmutableScan
    Immutable version of Scan
    class 
    org.apache.hadoop.hbase.client.Scan
    Used to perform Scan operations.
    Methods in org.apache.hadoop.hbase.client that return org.apache.hadoop.hbase.client.Query in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.client.Query
    Query.setACL(String user, org.apache.hadoop.hbase.security.access.Permission perms)
    Set the ACL for the operation.
    org.apache.hadoop.hbase.client.Query
    Query.setACL(Map<String,org.apache.hadoop.hbase.security.access.Permission> perms)
    Set the ACL for the operation.
    org.apache.hadoop.hbase.client.Query
    Query.setAuthorizations(org.apache.hadoop.hbase.security.visibility.Authorizations authorizations)
    Sets the authorizations to be used by this Query
    org.apache.hadoop.hbase.client.Query
    Query.setColumnFamilyTimeRange(byte[] cf, long minStamp, long maxStamp)
    Get versions of columns only within the specified timestamp range, [minStamp, maxStamp) on a per CF bases.
    org.apache.hadoop.hbase.client.Query
    Query.setConsistency(org.apache.hadoop.hbase.client.Consistency consistency)
    Sets the consistency level for this operation
    org.apache.hadoop.hbase.client.Query
    Query.setFilter(org.apache.hadoop.hbase.filter.Filter filter)
    Apply the specified server-side filter when performing the Query.
    org.apache.hadoop.hbase.client.Query
    Query.setIsolationLevel(org.apache.hadoop.hbase.client.IsolationLevel level)
    Set the isolation level for this query.
    org.apache.hadoop.hbase.client.Query
    Query.setLoadColumnFamiliesOnDemand(boolean value)
    Set the value indicating whether loading CFs on demand should be allowed (cluster default is false).
    org.apache.hadoop.hbase.client.Query
    Query.setReplicaId(int Id)
    Specify region replica id where Query will fetch data from.
  • Uses of org.apache.hadoop.hbase.client.Query in org.apache.hadoop.hbase.regionserver

    Subclasses of org.apache.hadoop.hbase.client.Query in in org.apache.hadoop.hbase.regionserver
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.regionserver.InternalScan
    Special scanner, currently used for increment operations to allow additional server-side arguments for Scan operations.