|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Scanner | |
---|---|
org.apache.hadoop.hbase.client | |
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 |
Scanner |
HTable.getScanner(org.apache.hadoop.io.Text[] columns)
Deprecated. Use String or byte [] overload instead |
Scanner |
HTable.getScanner(org.apache.hadoop.io.Text[] columns,
org.apache.hadoop.io.Text startRow)
Deprecated. Use String or byte [] overload instead |
Scanner |
HTable.getScanner(org.apache.hadoop.io.Text[] columns,
org.apache.hadoop.io.Text startRow,
long timestamp,
RowFilterInterface filter)
Deprecated. Use String or byte [] overload instead |
Scanner |
HTable.getScanner(org.apache.hadoop.io.Text[] columns,
org.apache.hadoop.io.Text startRow,
org.apache.hadoop.io.Text stopRow,
long timestamp)
Deprecated. Use String or byte [] overload instead |
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 |