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

Packages that use Put
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.regionserver   
org.apache.hadoop.hbase.regionserver.tableindexed   
org.apache.hadoop.hbase.regionserver.transactional   
org.apache.hadoop.hbase.rest Provides an HBase REST service. 
 

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

Methods in org.apache.hadoop.hbase.client that return Put
 Put Put.add(byte[] family, byte[] qualifier, byte[] value)
          Add the specified column and value to this Put operation.
 Put Put.add(byte[] family, byte[] qualifier, long ts, byte[] value)
          Add the specified column and value, with the specified timestamp as its version to this Put operation.
 Put Put.add(byte[] column, long ts, byte[] value)
          Add the specified column and value, with the specified timestamp as its version to this Put operation.
 Put Put.add(KeyValue kv)
          Add the specified KeyValue to this Put operation.
 Put Put.setTimeStamp(long timestamp)
          Method for setting the timestamp
 

Methods in org.apache.hadoop.hbase.client with parameters of type Put
 boolean HTable.checkAndPut(byte[] row, byte[] family, byte[] qualifier, byte[] value, Put put)
          Atomically checks if a row/family/qualifier value match the expectedValue.
 void HTable.put(Put put)
          Commit a Put to the table.
 

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

Constructors in org.apache.hadoop.hbase.client with parameters of type Put
Put(Put putToCopy)
          Copy constructor.
 

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

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

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

Methods in org.apache.hadoop.hbase.ipc with parameters of type Put
 boolean HRegionInterface.checkAndPut(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, byte[] value, Put put)
          Atomically checks if a row/family/qualifier value match the expectedValue.
 void HRegionInterface.put(byte[] regionName, Put put)
          Put data into the specified region
 int HRegionInterface.put(byte[] regionName, Put[] puts)
          Put an array of puts into the specified region
 void TransactionalRegionInterface.put(long transactionId, byte[] regionName, Put put)
          Transactional put data into the specified region
 int TransactionalRegionInterface.put(long transactionId, byte[] regionName, Put[] puts)
          Put an array of puts into the specified region
 

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Put
 boolean HRegionServer.checkAndPut(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, byte[] value, Put put)
           
 boolean HRegion.checkAndPut(byte[] row, byte[] family, byte[] qualifier, byte[] expectedValue, Put put, Integer lockId, boolean writeToWAL)
           
 void HRegionServer.put(byte[] regionName, Put put)
           
 int HRegionServer.put(byte[] regionName, Put[] puts)
           
 void HRegion.put(Put put)
           
 void HRegion.put(Put put, boolean writeToWAL)
           
 void HRegion.put(Put put, Integer lockid)
           
 void HRegion.put(Put put, Integer lockid, boolean writeToWAL)
           
 

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

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

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

Methods in org.apache.hadoop.hbase.regionserver.transactional with parameters of type Put
 void TransactionalRegionServer.put(long transactionId, byte[] regionName, Put put)
           
 int TransactionalRegionServer.put(long transactionId, byte[] regionName, Put[] puts)
           
 void TransactionalRegion.put(long transactionId, Put put)
          Add a write to the transaction.
 void TransactionalRegion.put(long transactionId, Put[] puts)
          Add multiple writes to the transaction.
 

Uses of Put in org.apache.hadoop.hbase.rest
 

Methods in org.apache.hadoop.hbase.rest with parameters of type Put
 void RowModel.post(byte[] tableName, Put put)
           
 

Method parameters in org.apache.hadoop.hbase.rest with type arguments of type Put
 void RowModel.post(byte[] tableName, List<Put> puts)
           
 



Copyright © 2009 The Apache Software Foundation