Package | Description |
---|---|
org.apache.hadoop.hbase.avro |
Provides an HBase Avro service.
|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.coprocessor |
Table of Contents
|
org.apache.hadoop.hbase.ipc |
Tools to help define network clients and servers.
|
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.rest.client | |
org.apache.hadoop.hbase.security.access | |
org.apache.hadoop.hbase.thrift2 |
Provides an HBase Thrift
service.
|
Modifier and Type | Method and Description |
---|---|
static Get |
AvroUtil.agetToGet(AGet aget) |
Modifier and Type | Method and Description |
---|---|
Get |
Get.addColumn(byte[] family,
byte[] qualifier)
Get the column from the specific family with the specified qualifier.
|
Get |
Get.addFamily(byte[] family)
Get all columns from the specified family.
|
Get |
Get.setFilter(Filter filter)
Apply the specified server-side filter when performing the Get.
|
Get |
Get.setMaxVersions()
Get all available versions.
|
Get |
Get.setMaxVersions(int maxVersions)
Get up to the specified number of versions of each column.
|
Get |
Get.setTimeRange(long minStamp,
long maxStamp)
Get versions of columns only within the specified timestamp range,
[minStamp, maxStamp).
|
Get |
Get.setTimeStamp(long timestamp)
Get versions of columns with the specified timestamp.
|
Modifier and Type | Method and Description |
---|---|
boolean |
HTableInterface.exists(Get get)
Test for the existence of columns in the table, as specified in the Get.
|
boolean |
HTable.exists(Get get)
Test for the existence of columns in the table, as specified in the Get.
|
Result |
HTableInterface.get(Get get)
Extracts certain cells from a given row.
|
Result |
HTable.get(Get get)
Extracts certain cells from a given row.
|
Modifier and Type | Method and Description |
---|---|
Result[] |
HTableInterface.get(List<Get> gets)
Extracts certain cells from the given rows, in batch.
|
Result[] |
HTable.get(List<Get> gets)
Extracts certain cells from the given rows, in batch.
|
Constructor and Description |
---|
Scan(Get get)
Builds a scan object with the same specs as get.
|
Modifier and Type | Method and Description |
---|---|
boolean |
BaseRegionObserver.postExists(ObserverContext<RegionCoprocessorEnvironment> e,
Get get,
boolean exists) |
boolean |
RegionObserver.postExists(ObserverContext<RegionCoprocessorEnvironment> c,
Get get,
boolean exists)
Called after the client tests for existence using a Get.
|
void |
BaseRegionObserver.postGet(ObserverContext<RegionCoprocessorEnvironment> e,
Get get,
List<KeyValue> results) |
void |
RegionObserver.postGet(ObserverContext<RegionCoprocessorEnvironment> c,
Get get,
List<KeyValue> result)
Called after the client performs a Get
|
boolean |
BaseRegionObserver.preExists(ObserverContext<RegionCoprocessorEnvironment> e,
Get get,
boolean exists) |
boolean |
RegionObserver.preExists(ObserverContext<RegionCoprocessorEnvironment> c,
Get get,
boolean exists)
Called before the client tests for existence using a Get.
|
void |
BaseRegionObserver.preGet(ObserverContext<RegionCoprocessorEnvironment> e,
Get get,
List<KeyValue> results) |
void |
RegionObserver.preGet(ObserverContext<RegionCoprocessorEnvironment> c,
Get get,
List<KeyValue> result)
Called before the client performs a Get
|
Modifier and Type | Method and Description |
---|---|
boolean |
HRegionInterface.exists(byte[] regionName,
Get get)
Perform exists operation.
|
Result |
HRegionInterface.get(byte[] regionName,
Get get)
Perform Get operation.
|
Modifier and Type | Method and Description |
---|---|
boolean |
HRegionServer.exists(byte[] regionName,
Get get) |
Result |
HRegionServer.get(byte[] regionName,
Get get)
Perform Get operation.
|
Result |
HRegion.get(Get get) |
Result |
HRegion.get(Get get,
Integer lockid)
Deprecated.
row locks (lockId) held outside the extent of the operation are deprecated.
|
boolean |
RegionCoprocessorHost.postExists(Get get,
boolean exists) |
void |
RegionCoprocessorHost.postGet(Get get,
List<KeyValue> results) |
Boolean |
RegionCoprocessorHost.preExists(Get get) |
boolean |
RegionCoprocessorHost.preGet(Get get,
List<KeyValue> results) |
Modifier and Type | Method and Description |
---|---|
boolean |
RemoteHTable.exists(Get get) |
Result |
RemoteHTable.get(Get get) |
Modifier and Type | Method and Description |
---|---|
Result[] |
RemoteHTable.get(List<Get> gets) |
Modifier and Type | Method and Description |
---|---|
boolean |
AccessController.preExists(ObserverContext<RegionCoprocessorEnvironment> c,
Get get,
boolean exists) |
void |
AccessController.preGet(ObserverContext<RegionCoprocessorEnvironment> c,
Get get,
List<KeyValue> result) |
Modifier and Type | Method and Description |
---|---|
static Get |
ThriftUtilities.getFromThrift(TGet in)
|
Modifier and Type | Method and Description |
---|---|
static List<Get> |
ThriftUtilities.getsFromThrift(List<TGet> in)
|
Copyright © 2014 The Apache Software Foundation. All Rights Reserved.