Uses of Class
org.apache.hadoop.hbase.io.BatchUpdate

Packages that use BatchUpdate
org.apache.hadoop.hbase.client   
org.apache.hadoop.hbase.client.transactional This package provides support for atomic transactions. 
org.apache.hadoop.hbase.io   
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.mapred Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.tableindexed   
org.apache.hadoop.hbase.regionserver.transactional   
 

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

Methods in org.apache.hadoop.hbase.client that return types with arguments of type BatchUpdate
 ArrayList<BatchUpdate> HTable.getWriteBuffer()
          Get the write buffer
 

Methods in org.apache.hadoop.hbase.client with parameters of type BatchUpdate
 boolean HTable.checkAndSave(BatchUpdate batchUpdate, HbaseMapWritable<byte[],byte[]> expectedValues, RowLock rl)
          Atomically checks if a row's values match the expectedValues.
 void HTable.commit(BatchUpdate batchUpdate)
          Commit a BatchUpdate to the table.
 void HTable.commit(BatchUpdate batchUpdate, RowLock rl)
          Commit a BatchUpdate to the table using existing row lock.
 

Method parameters in org.apache.hadoop.hbase.client with type arguments of type BatchUpdate
 void HTable.commit(List<BatchUpdate> batchUpdates)
          Commit a List of BatchUpdate to the table.
 void HConnection.processBatchOfRows(ArrayList<BatchUpdate> list, byte[] tableName)
          Process a batch of rows.
 

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

Methods in org.apache.hadoop.hbase.client.transactional with parameters of type BatchUpdate
 void TransactionalTable.commit(TransactionState transactionState, BatchUpdate batchUpdate)
          Commit a BatchUpdate to the table.
 

Uses of BatchUpdate in org.apache.hadoop.hbase.io
 

Methods in org.apache.hadoop.hbase.io with parameters of type BatchUpdate
 int BatchUpdate.compareTo(BatchUpdate o)
           
 

Constructors in org.apache.hadoop.hbase.io with parameters of type BatchUpdate
BatchUpdate(BatchUpdate buToCopy)
          Recopy constructor
 

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

Methods in org.apache.hadoop.hbase.ipc with parameters of type BatchUpdate
 void HRegionInterface.batchUpdate(byte[] regionName, BatchUpdate b, long lockId)
          Applies a batch of updates via one RPC
 void TransactionalRegionInterface.batchUpdate(long transactionId, byte[] regionName, BatchUpdate b)
          Applies a batch of updates via one RPC
 int HRegionInterface.batchUpdates(byte[] regionName, BatchUpdate[] b)
          Applies a batch of updates via one RPC for many rows
 boolean HRegionInterface.checkAndSave(byte[] regionName, BatchUpdate b, HbaseMapWritable<byte[],byte[]> expectedValues)
          Applies a batch of updates to one row atomically via one RPC if the columns specified in expectedValues match the given values in expectedValues
 

Uses of BatchUpdate in org.apache.hadoop.hbase.mapred
 

Methods in org.apache.hadoop.hbase.mapred with parameters of type BatchUpdate
 void TableOutputFormat.TableRecordWriter.write(ImmutableBytesWritable key, BatchUpdate value)
           
 

Method parameters in org.apache.hadoop.hbase.mapred with type arguments of type BatchUpdate
 void IdentityTableReduce.reduce(ImmutableBytesWritable key, Iterator<BatchUpdate> values, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,BatchUpdate> output, org.apache.hadoop.mapred.Reporter reporter)
          No aggregation, output pairs of (key, record)
 void IdentityTableReduce.reduce(ImmutableBytesWritable key, Iterator<BatchUpdate> values, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,BatchUpdate> output, org.apache.hadoop.mapred.Reporter reporter)
          No aggregation, output pairs of (key, record)
 

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type BatchUpdate
 void HRegion.batchUpdate(BatchUpdate b)
           
 void HRegion.batchUpdate(BatchUpdate b, boolean writeToWAL)
           
 void HRegion.batchUpdate(BatchUpdate b, Integer lockid)
           
 void HRegion.batchUpdate(BatchUpdate b, Integer lockid, boolean writeToWAL)
           
 void HRegionServer.batchUpdate(byte[] regionName, BatchUpdate b, long lockId)
           
 int HRegionServer.batchUpdates(byte[] regionName, BatchUpdate[] b)
           
 boolean HRegion.checkAndSave(BatchUpdate b, HbaseMapWritable<byte[],byte[]> expectedValues, Integer lockid, boolean writeToWAL)
          Performs an atomic check and save operation.
 boolean HRegionServer.checkAndSave(byte[] regionName, BatchUpdate b, HbaseMapWritable<byte[],byte[]> expectedValues)
           
 

Uses of BatchUpdate in org.apache.hadoop.hbase.regionserver.tableindexed
 

Methods in org.apache.hadoop.hbase.regionserver.tableindexed that return BatchUpdate
static BatchUpdate IndexMaintenanceUtils.createIndexUpdate(IndexSpecification indexSpec, byte[] row, SortedMap<byte[],byte[]> columnValues)
           
 

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

Methods in org.apache.hadoop.hbase.regionserver.transactional with parameters of type BatchUpdate
 void TransactionalRegion.batchUpdate(long transactionId, BatchUpdate b)
          Add a write to the transaction.
 void TransactionalRegionServer.batchUpdate(long transactionId, byte[] regionName, BatchUpdate b)
           
 



Copyright © 2008 The Apache Software Foundation