Uses of Class
org.apache.hadoop.hbase.client.Scan

Packages that use Scan
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.mapreduce Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.transactional   
org.apache.hadoop.hbase.stargate.client   
org.apache.hadoop.hbase.stargate.model   
 

Uses of Scan in org.apache.hadoop.hbase.client
 

Methods in org.apache.hadoop.hbase.client that return Scan
 Scan Scan.addColumn(byte[] familyAndQualifier)
          Parses a combined family and qualifier and adds either both or just the family in case there is not qualifier.
 Scan Scan.addColumn(byte[] family, byte[] qualifier)
          Get the column from the specified family with the specified qualifier.
 Scan Scan.addColumns(byte[][] columns)
          Adds an array of columns specified using old format, family:qualifier.
 Scan Scan.addColumns(String columns)
          Convenience method to help parse old style (or rather user entry on the command line) column definitions, e.g.
 Scan Scan.addFamily(byte[] family)
          Get all columns from the specified family.
protected  Scan ScannerCallable.getScan()
           
protected  Scan HTable.ClientScanner.getScan()
           
 Scan Scan.setFamilyMap(Map<byte[],NavigableSet<byte[]>> familyMap)
          Setting the familyMap
 Scan Scan.setFilter(Filter filter)
          Apply the specified server-side filter when performing the Scan.
 Scan Scan.setMaxVersions()
          Get all available versions.
 Scan Scan.setMaxVersions(int maxVersions)
          Get up to the specified number of versions of each column.
 Scan Scan.setOldFilter(RowFilterInterface filter)
          Deprecated.  
 Scan Scan.setStartRow(byte[] startRow)
          Set the start row.
 Scan Scan.setStopRow(byte[] stopRow)
          Set the stop row.
 Scan Scan.setTimeRange(long minStamp, long maxStamp)
          Get versions of columns only within the specified timestamp range, [minStamp, maxStamp).
 Scan Scan.setTimeStamp(long timestamp)
          Get versions of columns with the specified timestamp.
 

Methods in org.apache.hadoop.hbase.client with parameters of type Scan
 ResultScanner HTable.getScanner(Scan scan)
          Returns a scanner on the current table as specified by the Scan object.
 

Constructors in org.apache.hadoop.hbase.client with parameters of type Scan
HTable.ClientScanner(Scan scan)
           
Scan(Scan scan)
          Creates a new instance of this class while copying all values.
ScannerCallable(HConnection connection, byte[] tableName, Scan scan)
           
 

Uses of Scan in org.apache.hadoop.hbase.client.transactional
 

Methods in org.apache.hadoop.hbase.client.transactional with parameters of type Scan
 ResultScanner TransactionalTable.getScanner(TransactionState transactionState, Scan scan)
           
 

Constructors in org.apache.hadoop.hbase.client.transactional with parameters of type Scan
TransactionalTable.TransactionalClientScanner(TransactionState transactionState, Scan scan)
           
 

Uses of Scan in org.apache.hadoop.hbase.ipc
 

Methods in org.apache.hadoop.hbase.ipc with parameters of type Scan
 long HRegionInterface.openScanner(byte[] regionName, Scan scan)
          Opens a remote scanner with a RowFilter.
 long TransactionalRegionInterface.openScanner(long transactionId, byte[] regionName, Scan scan)
          Opens a remote transactional scanner with a RowFilter.
 

Uses of Scan in org.apache.hadoop.hbase.mapreduce
 

Methods in org.apache.hadoop.hbase.mapreduce that return Scan
 Scan TableInputFormatBase.getScan()
          Gets the scan defining the actual details like columns etc.
 

Methods in org.apache.hadoop.hbase.mapreduce with parameters of type Scan
static void IdentityTableMapper.initJob(String table, Scan scan, Class<? extends TableMapper> mapper, org.apache.hadoop.mapreduce.Job job)
          Use this before submitting a TableMap job.
static void GroupingTableMapper.initJob(String table, Scan scan, String groupColumns, Class<? extends TableMapper> mapper, org.apache.hadoop.mapreduce.Job job)
          Use this before submitting a TableMap job.
static void TableMapReduceUtil.initTableMapperJob(String table, Scan scan, Class<? extends TableMapper> mapper, Class<? extends org.apache.hadoop.io.WritableComparable> outputKeyClass, Class<? extends org.apache.hadoop.io.Writable> outputValueClass, org.apache.hadoop.mapreduce.Job job)
          Use this before submitting a TableMap job.
 void TableInputFormatBase.setScan(Scan scan)
          Sets the scan defining the actual details like columns etc.
 void TableInputFormatBase.TableRecordReader.setScan(Scan scan)
          Sets the scan defining the actual details like columns etc.
 

Uses of Scan in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Scan
 InternalScanner HRegion.getScanner(Scan scan)
          Return an iterator that scans over the HRegion, returning the indicated columns and rows specified by the Scan.
protected  InternalScanner HRegion.getScanner(Scan scan, List<KeyValueScanner> additionalScanners)
           
protected  KeyValueScanner Store.getScanner(Scan scan, NavigableSet<byte[]> targetCols)
          Return a scanner for both the memstore and the HStore files
protected  InternalScanner HRegion.instantiateInternalScanner(Scan scan, List<KeyValueScanner> additionalScanners)
           
 long HRegionServer.openScanner(byte[] regionName, Scan scan)
           
 

Constructors in org.apache.hadoop.hbase.regionserver with parameters of type Scan
ScanQueryMatcher(Scan scan, byte[] family, NavigableSet<byte[]> columns, long ttl, KeyValue.KeyComparator rowComparator, int maxVersions)
          Constructs a QueryMatcher for a Scan.
 

Uses of Scan in org.apache.hadoop.hbase.regionserver.transactional
 

Methods in org.apache.hadoop.hbase.regionserver.transactional with parameters of type Scan
 InternalScanner TransactionalRegion.getScanner(long transactionId, Scan scan)
          Get a transactional scanner.
 long TransactionalRegionServer.openScanner(long transactionId, byte[] regionName, Scan scan)
           
 

Uses of Scan in org.apache.hadoop.hbase.stargate.client
 

Methods in org.apache.hadoop.hbase.stargate.client with parameters of type Scan
 ResultScanner RemoteHTable.getScanner(Scan scan)
           
 

Uses of Scan in org.apache.hadoop.hbase.stargate.model
 

Methods in org.apache.hadoop.hbase.stargate.model with parameters of type Scan
static ScannerModel ScannerModel.fromScan(Scan scan)
           
 



Copyright © 2010 The Apache Software Foundation