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

Packages that use Mutation
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.mapreduce Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility 
org.apache.hadoop.hbase.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
org.apache.hadoop.hbase.regionserver   
 

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

Subclasses of Mutation in org.apache.hadoop.hbase.client
 class Append
          Performs Append operations on a single row.
 class Delete
          Used to perform Delete operations on a single row.
 class Increment
          Used to perform Increment operations on a single row.
 class Put
          Used to perform Put operations for a single row.
 

Methods in org.apache.hadoop.hbase.client that return types with arguments of type Mutation
 List<Mutation> RowMutations.getMutations()
           
 

Uses of Mutation in org.apache.hadoop.hbase.coprocessor
 

Method parameters in org.apache.hadoop.hbase.coprocessor with type arguments of type Mutation
 void RegionObserver.postBatchMutate(ObserverContext<RegionCoprocessorEnvironment> c, MiniBatchOperationInProgress<Pair<Mutation,Integer>> miniBatchOp)
          This will be called after applying a batch of Mutations on a region.
 void BaseRegionObserver.postBatchMutate(ObserverContext<RegionCoprocessorEnvironment> c, MiniBatchOperationInProgress<Pair<Mutation,Integer>> miniBatchOp)
           
 void RegionObserver.preBatchMutate(ObserverContext<RegionCoprocessorEnvironment> c, MiniBatchOperationInProgress<Pair<Mutation,Integer>> miniBatchOp)
          This will be called for every batch mutation operation happening at the server.
 void BaseRegionObserver.preBatchMutate(ObserverContext<RegionCoprocessorEnvironment> c, MiniBatchOperationInProgress<Pair<Mutation,Integer>> miniBatchOp)
           
 

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

Methods in org.apache.hadoop.hbase.mapreduce that return types with arguments of type Mutation
 org.apache.hadoop.io.serializer.Deserializer<Mutation> MutationSerialization.getDeserializer(Class<Mutation> c)
           
 org.apache.hadoop.mapreduce.RecordWriter<KEY,Mutation> TableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context)
          Creates a new record writer.
 org.apache.hadoop.mapreduce.RecordWriter<ImmutableBytesWritable,Mutation> MultiTableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context)
           
 org.apache.hadoop.io.serializer.Serializer<Mutation> MutationSerialization.getSerializer(Class<Mutation> c)
           
 

Methods in org.apache.hadoop.hbase.mapreduce with parameters of type Mutation
 void MultiTableOutputFormat.MultiTableRecordWriter.write(ImmutableBytesWritable tableName, Mutation action)
          Writes an action (Put or Delete) to the specified table.
 void TableOutputFormat.TableRecordWriter.write(KEY key, Mutation value)
          Writes a key/value pair into the table.
 

Method parameters in org.apache.hadoop.hbase.mapreduce with type arguments of type Mutation
 org.apache.hadoop.io.serializer.Deserializer<Mutation> MutationSerialization.getDeserializer(Class<Mutation> c)
           
 org.apache.hadoop.io.serializer.Serializer<Mutation> MutationSerialization.getSerializer(Class<Mutation> c)
           
 void IdentityTableReducer.reduce(org.apache.hadoop.io.Writable key, Iterable<Mutation> values, org.apache.hadoop.mapreduce.Reducer.Context context)
          Writes each given record, consisting of the row key and the given values, to the configured OutputFormat.
 

Uses of Mutation in org.apache.hadoop.hbase.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf that return Mutation
static Mutation ProtobufUtil.toMutation(ClientProtos.MutationProto proto)
          Convert a MutateRequest to Mutation
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type Mutation
static ClientProtos.MutationProto ProtobufUtil.toMutation(ClientProtos.MutationProto.MutationType type, Mutation mutation)
          Create a protocol buffer Mutate based on a client Mutation
static ClientProtos.MutationProto ProtobufUtil.toMutationNoData(ClientProtos.MutationProto.MutationType type, Mutation mutation)
          Create a protocol buffer MutationProto based on a client Mutation.
 

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Mutation
 boolean HRegion.checkAndMutate(byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Mutation w, boolean writeToWAL)
           
 

Method parameters in org.apache.hadoop.hbase.regionserver with type arguments of type Mutation
 void HRegion.mutateRowsWithLocks(Collection<Mutation> mutations, Collection<byte[]> rowsToLock)
          Perform atomic mutations within the region.
 void RegionCoprocessorHost.postBatchMutate(MiniBatchOperationInProgress<Pair<Mutation,Integer>> miniBatchOp)
           
 boolean RegionCoprocessorHost.preBatchMutate(MiniBatchOperationInProgress<Pair<Mutation,Integer>> miniBatchOp)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.