|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Scanner | |
---|---|
org.apache.hadoop.hbase.client | |
org.apache.hadoop.hbase.client.tableindexed | This package provides support for secondary indexing by maintaining a separate, "index", table for each index. |
org.apache.hadoop.hbase.client.transactional | This package provides support for atomic transactions. |
org.apache.hadoop.hbase.thrift | Provides an HBase Thrift service. |
Uses of Scanner in org.apache.hadoop.hbase.client |
---|
Classes in org.apache.hadoop.hbase.client that implement Scanner | |
---|---|
protected class |
HTable.ClientScanner
Implements the scanner interface for the HBase client. |
Methods in org.apache.hadoop.hbase.client that return Scanner | |
---|---|
Scanner |
HTable.getScanner(byte[][] columns)
Get a scanner on the current table starting at first row. |
Scanner |
HTable.getScanner(byte[][] columns,
byte[] startRow)
Get a scanner on the current table starting at the specified row. |
Scanner |
HTable.getScanner(byte[][] columns,
byte[] startRow,
byte[] stopRow)
Get a scanner on the current table starting at the specified row and ending just before stopRow |
Scanner |
HTable.getScanner(byte[][] columns,
byte[] startRow,
byte[] stopRow,
long timestamp)
Get a scanner on the current table starting at the specified row and ending just before stopRow |
Scanner |
HTable.getScanner(byte[][] columns,
byte[] startRow,
long timestamp)
Get a scanner on the current table starting at the specified row. |
Scanner |
HTable.getScanner(byte[][] columns,
byte[] startRow,
long timestamp,
RowFilterInterface filter)
Get a scanner on the current table starting at the specified row. |
Scanner |
HTable.getScanner(byte[][] columns,
byte[] startRow,
RowFilterInterface filter)
Get a scanner on the current table starting at the specified row. |
Scanner |
HTable.getScanner(String[] columns)
Get a scanner on the current table starting at first row. |
Scanner |
HTable.getScanner(String[] columns,
String startRow)
Get a scanner on the current table starting at the specified row. |
Scanner |
HTable.getScanner(String[] columns,
String startRow,
long timestamp,
RowFilterInterface filter)
Get a scanner on the current table starting at the specified row. |
Scanner |
HTable.getScanner(String[] columns,
String startRow,
String stopRow,
long timestamp)
Get a scanner on the current table starting at the specified row and ending just before stopRow |
Uses of Scanner in org.apache.hadoop.hbase.client.tableindexed |
---|
Methods in org.apache.hadoop.hbase.client.tableindexed that return Scanner | |
---|---|
Scanner |
IndexedTable.getIndexedScanner(String indexId,
byte[] indexStartRow,
byte[][] indexColumns,
RowFilterInterface indexFilter,
byte[][] baseColumns)
Open up an indexed scanner. |
Uses of Scanner in org.apache.hadoop.hbase.client.transactional |
---|
Classes in org.apache.hadoop.hbase.client.transactional that implement Scanner | |
---|---|
protected class |
TransactionalTable.TransactionalClientScanner
|
Methods in org.apache.hadoop.hbase.client.transactional that return Scanner | |
---|---|
Scanner |
TransactionalTable.getScanner(TransactionState transactionState,
byte[][] columns)
Get a scanner on the current table starting at first row. |
Scanner |
TransactionalTable.getScanner(TransactionState transactionState,
byte[][] columns,
byte[] startRow)
Get a scanner on the current table starting at the specified row. |
Scanner |
TransactionalTable.getScanner(TransactionState transactionState,
byte[][] columns,
byte[] startRow,
long timestamp)
Get a scanner on the current table starting at the specified row. |
Scanner |
TransactionalTable.getScanner(TransactionState transactionState,
byte[][] columns,
byte[] startRow,
long timestamp,
RowFilterInterface filter)
Get a scanner on the current table starting at the specified row. |
Scanner |
TransactionalTable.getScanner(TransactionState transactionState,
byte[][] columns,
byte[] startRow,
RowFilterInterface filter)
Get a scanner on the current table starting at the specified row. |
Uses of Scanner in org.apache.hadoop.hbase.thrift |
---|
Fields in org.apache.hadoop.hbase.thrift with type parameters of type Scanner | |
---|---|
protected HashMap<Integer,Scanner> |
ThriftServer.HBaseHandler.scannerMap
|
Methods in org.apache.hadoop.hbase.thrift that return Scanner | |
---|---|
protected Scanner |
ThriftServer.HBaseHandler.getScanner(int id)
Returns the scanner associated with the specified ID. |
protected Scanner |
ThriftServer.HBaseHandler.removeScanner(int id)
Removes the scanner associated with the specified ID from the internal id->scanner hash-map. |
Methods in org.apache.hadoop.hbase.thrift with parameters of type Scanner | |
---|---|
protected int |
ThriftServer.HBaseHandler.addScanner(Scanner scanner)
Assigns a unique ID to the scanner and adds the mapping to an internal hash-map. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |