|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Get | |
---|---|
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.client.transactional | This package provides support for atomic transactions. |
org.apache.hadoop.hbase.ipc | Tools to help define network clients and servers. |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.regionserver.transactional | |
org.apache.hadoop.hbase.rest | Provides an HBase REST service. |
Uses of Get in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return Get | |
---|---|
Get |
Get.addColumn(byte[] column)
|
Get |
Get.addColumn(byte[] family,
byte[] qualifier)
Get the column from the specific family with the specified qualifier. |
Get |
Get.addColumns(byte[][] columns)
Adds an array of columns specified the old format, family: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. |
Methods in org.apache.hadoop.hbase.client with parameters of type Get | |
---|---|
boolean |
HTable.exists(Get get)
Test for the existence of columns in the table, as specified in the Get. |
Result |
HTable.get(Get get)
Method for getting data from a row |
Uses of Get in org.apache.hadoop.hbase.client.transactional |
---|
Methods in org.apache.hadoop.hbase.client.transactional with parameters of type Get | |
---|---|
Result |
TransactionalTable.get(TransactionState transactionState,
Get get)
Method for getting data from a row |
Uses of Get in org.apache.hadoop.hbase.ipc |
---|
Methods in org.apache.hadoop.hbase.ipc with parameters of type Get | |
---|---|
boolean |
HRegionInterface.exists(byte[] regionName,
Get get)
Perform exists operation. |
Result |
HRegionInterface.get(byte[] regionName,
Get get)
Perform Get operation. |
Result |
TransactionalRegionInterface.get(long transactionId,
byte[] regionName,
Get get)
Perform a transactional Get operation. |
Uses of Get in org.apache.hadoop.hbase.regionserver |
---|
Methods in org.apache.hadoop.hbase.regionserver with parameters of type Get | |
---|---|
boolean |
HRegionServer.exists(byte[] regionName,
Get get)
|
Result |
HRegionServer.get(byte[] regionName,
Get get)
Perform Get operation. |
Result |
HRegion.get(Get get,
Integer lockid)
|
void |
Store.get(Get get,
NavigableSet<byte[]> columns,
List<KeyValue> result)
Retrieve results from this store given the specified Get parameters. |
Constructors in org.apache.hadoop.hbase.regionserver with parameters of type Get | |
---|---|
QueryMatcher(Get get,
byte[] family,
NavigableSet<byte[]> columns,
long ttl,
KeyValue.KeyComparator rowComparator,
int maxVersions)
Constructs a QueryMatcher for a Get. |
Uses of Get in org.apache.hadoop.hbase.regionserver.transactional |
---|
Methods in org.apache.hadoop.hbase.regionserver.transactional with parameters of type Get | |
---|---|
Result |
TransactionalRegionServer.get(long transactionId,
byte[] regionName,
Get get)
|
Result |
TransactionalRegion.get(long transactionId,
Get get)
|
Uses of Get in org.apache.hadoop.hbase.rest |
---|
Methods in org.apache.hadoop.hbase.rest with parameters of type Get | |
---|---|
Result |
TimestampModel.get(byte[] tableName,
Get get)
|
Result |
RowModel.get(byte[] tableName,
Get get)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |