Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.rest |
HBase REST
|
org.apache.hadoop.hbase.rest.client | |
org.apache.hadoop.hbase.thrift |
Provides an HBase Thrift
service.
|
org.apache.hadoop.hbase.thrift2 |
Provides an HBase Thrift
service.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractClientScanner
Helper class for custom client scanners.
|
class |
ClientScanner
Implements the scanner interface for the HBase client.
|
class |
ClientSideRegionScanner
A client scanner for a region opened for read-only on the client side.
|
class |
ClientSimpleScanner
ClientSimpleScanner implements a sync scanner behaviour.
|
class |
ReversedClientScanner
A reversed client scanner which support backward scanning
|
class |
TableSnapshotScanner
A Scanner which performs a scan over snapshot files.
|
Modifier and Type | Method and Description |
---|---|
ResultScanner |
HTableWrapper.getScanner(byte[] family) |
ResultScanner |
Table.getScanner(byte[] family)
Gets a scanner on the current table for the given family.
|
ResultScanner |
HTable.getScanner(byte[] family)
The underlying
HTable must not be closed. |
ResultScanner |
HTableWrapper.getScanner(byte[] family,
byte[] qualifier) |
ResultScanner |
Table.getScanner(byte[] family,
byte[] qualifier)
Gets a scanner on the current table for the given family and qualifier.
|
ResultScanner |
HTable.getScanner(byte[] family,
byte[] qualifier)
The underlying
HTable must not be closed. |
ResultScanner |
HTableWrapper.getScanner(Scan scan) |
ResultScanner |
Table.getScanner(Scan scan)
Returns a scanner on the current table as specified by the
Scan
object. |
ResultScanner |
HTable.getScanner(Scan scan)
The underlying
HTable must not be closed. |
Constructor and Description |
---|
ProtobufStreamingUtil(ResultScanner scanner,
String type,
int limit,
int fetchSize) |
TableScanResource(ResultScanner scanner,
int userRequestedLimit) |
Modifier and Type | Method and Description |
---|---|
ResultScanner |
RemoteHTable.getScanner(byte[] family) |
ResultScanner |
RemoteHTable.getScanner(byte[] family,
byte[] qualifier) |
ResultScanner |
RemoteHTable.getScanner(Scan scan) |
Modifier and Type | Method and Description |
---|---|
ResultScanner |
ThriftServerRunner.ResultScannerWrapper.getScanner() |
Modifier and Type | Method and Description |
---|---|
protected int |
ThriftServerRunner.HBaseHandler.addScanner(ResultScanner scanner,
boolean sortColumns)
Assigns a unique ID to the scanner and adds the mapping to an internal
hash-map.
|
Constructor and Description |
---|
ThriftServerRunner.ResultScannerWrapper(ResultScanner resultScanner,
boolean sortResultColumns) |
Modifier and Type | Method and Description |
---|---|
protected ResultScanner |
ThriftHBaseServiceHandler.removeScanner(int id)
Removes the scanner associated with the specified ID from the internal HashMap.
|
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.