Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.protobuf |
Holds classes generated from protobuf
src/main/protobuf definition files. |
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) |
Get |
Get.setMaxResultsPerColumnFamily(int limit)
Set the maximum number of values to return per row per Column Family
|
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.setRowOffsetPerColumnFamily(int offset)
Set offset for the row per Column Family.
|
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 |
HTable.exists(Get get)
Test for the existence of columns in the table, as specified by the Get.
|
boolean |
HTableInterface.exists(Get get)
Test for the existence of columns in the table, as specified by the Get.
|
Result |
HTable.get(Get get)
Extracts certain cells from a given row.
|
Result |
HTableInterface.get(Get get)
Extracts certain cells from a given row.
|
Modifier and Type | Method and Description |
---|---|
Boolean[] |
HTable.exists(List<Get> gets)
Test for the existence of columns in the table, as specified by the Gets.
|
Boolean[] |
HTableInterface.exists(List<Get> gets)
Test for the existence of columns in the table, as specified by the Gets.
|
Result[] |
HTable.get(List<Get> gets)
Extracts certain cells from the given rows, in batch.
|
Result[] |
HTableInterface.get(List<Get> gets)
Extracts certain cells from the given rows, in batch.
|
Constructor and Description |
---|
Get(Get get)
Copy-constructor
|
Scan(Get get)
Builds a scan object with the same specs as get.
|
Modifier and Type | Method and Description |
---|---|
static Get |
ProtobufUtil.toGet(ClientProtos.Get proto)
Convert a protocol buffer Get to a client Get
|
Modifier and Type | Method and Description |
---|---|
static ClientProtos.GetRequest |
RequestConverter.buildGetRequest(byte[] regionName,
Get get)
Create a protocol buffer GetRequest for a client Get
|
static Result |
ProtobufUtil.get(ClientProtos.ClientService.BlockingInterface client,
byte[] regionName,
Get get)
A helper to invoke a Get using client protocol.
|
static Result |
ProtobufUtil.get(ClientProtos.ClientService.BlockingInterface client,
byte[] regionName,
Get get,
PayloadCarryingRpcController controller)
A helper to invoke a Get using client protocol.
|
static ClientProtos.Get |
ProtobufUtil.toGet(Get get)
Create a protocol buffer Get based on a client Get.
|
Copyright © 2015 The Apache Software Foundation. All Rights Reserved.