|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Get | |
---|---|
org.apache.hadoop.hbase.avro | Provides an HBase Avro service. |
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.ipc | Tools to help define network clients and servers. |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.rest.client |
Uses of Get in org.apache.hadoop.hbase.avro |
---|
Methods in org.apache.hadoop.hbase.avro that return Get | |
---|---|
static Get |
AvroUtil.agetToGet(AGet aget)
|
Uses of Get in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return Get | |
---|---|
Get |
Get.addColumn(byte[] column)
Deprecated. use addColumn(byte[], byte[]) instead |
Get |
Get.addColumn(byte[] family,
byte[] qualifier)
Get the column from the specific family with the specified qualifier. |
Get |
Get.addColumns(byte[][] columns)
Deprecated. issue multiple addColumn(byte[], byte[]) instead |
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. |
boolean |
HTableInterface.exists(Get get)
Test for the existence of columns in the table, as specified in the Get. |
Result |
HTable.get(Get get)
|
Result |
HTableInterface.get(Get get)
Extracts certain cells from a given row. |
Method parameters in org.apache.hadoop.hbase.client with type arguments of type Get | |
---|---|
Result[] |
HTable.get(List<Get> gets)
|
Result[] |
HTableInterface.get(List<Get> gets)
Extracts certain cells from the given rows, in batch. |
Constructors in org.apache.hadoop.hbase.client with parameters of type Get | |
---|---|
Scan(Get get)
Builds a scan object with the same specs as get. |
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. |
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)
|
Uses of Get in org.apache.hadoop.hbase.rest.client |
---|
Methods in org.apache.hadoop.hbase.rest.client with parameters of type Get | |
---|---|
boolean |
RemoteHTable.exists(Get get)
|
Result |
RemoteHTable.get(Get get)
|
Method parameters in org.apache.hadoop.hbase.rest.client with type arguments of type Get | |
---|---|
Result[] |
RemoteHTable.get(List<Get> gets)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |