Uses of Class
org.apache.accumulo.core.data.Mutation
-
-
Uses of Mutation in org.apache.accumulo.core.client
Methods in org.apache.accumulo.core.client with parameters of type Mutation Modifier and Type Method Description voidBatchWriter. addMutation(Mutation m)Queues one mutation to write.Method parameters in org.apache.accumulo.core.client with type arguments of type Mutation Modifier and Type Method Description voidBatchWriter. addMutations(Iterable<Mutation> iterable)Queues several mutations to write. -
Uses of Mutation in org.apache.accumulo.core.client.mapred
Methods in org.apache.accumulo.core.client.mapred that return types with arguments of type Mutation Modifier and Type Method Description org.apache.hadoop.mapred.RecordWriter<org.apache.hadoop.io.Text,Mutation>AccumuloOutputFormat. getRecordWriter(org.apache.hadoop.fs.FileSystem ignored, org.apache.hadoop.mapred.JobConf job, String name, org.apache.hadoop.util.Progressable progress)Deprecated.Methods in org.apache.accumulo.core.client.mapred with parameters of type Mutation Modifier and Type Method Description voidAccumuloOutputFormat.AccumuloRecordWriter. write(org.apache.hadoop.io.Text table, Mutation mutation)Push a mutation into a table. -
Uses of Mutation in org.apache.accumulo.core.client.mapreduce
Methods in org.apache.accumulo.core.client.mapreduce that return types with arguments of type Mutation Modifier and Type Method Description org.apache.hadoop.mapreduce.RecordWriter<org.apache.hadoop.io.Text,Mutation>AccumuloOutputFormat. getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext attempt)Deprecated.Methods in org.apache.accumulo.core.client.mapreduce with parameters of type Mutation Modifier and Type Method Description voidAccumuloOutputFormat.AccumuloRecordWriter. write(org.apache.hadoop.io.Text table, Mutation mutation)Push a mutation into a table. -
Uses of Mutation in org.apache.accumulo.core.clientImpl
Classes in org.apache.accumulo.core.clientImpl with type parameters of type Mutation Modifier and Type Class Description static classTabletLocator.TabletServerMutations<T extends Mutation>Methods in org.apache.accumulo.core.clientImpl with type parameters of type Mutation Modifier and Type Method Description <T extends Mutation>
voidRootTabletLocator. binMutations(ClientContext context, List<T> mutations, Map<String,TabletLocator.TabletServerMutations<T>> binnedMutations, List<T> failures)<T extends Mutation>
voidSyncingTabletLocator. binMutations(ClientContext context, List<T> mutations, Map<String,TabletLocator.TabletServerMutations<T>> binnedMutations, List<T> failures)abstract <T extends Mutation>
voidTabletLocator. binMutations(ClientContext context, List<T> mutations, Map<String,TabletLocator.TabletServerMutations<T>> binnedMutations, List<T> failures)<T extends Mutation>
voidTabletLocatorImpl. binMutations(ClientContext context, List<T> mutations, Map<String,TabletLocator.TabletServerMutations<T>> binnedMutations, List<T> failures)<T extends Mutation>
voidTimeoutTabletLocator. binMutations(ClientContext context, List<T> mutations, Map<String,TabletLocator.TabletServerMutations<T>> binnedMutations, List<T> failures)Methods in org.apache.accumulo.core.clientImpl with parameters of type Mutation Modifier and Type Method Description voidBatchWriterImpl. addMutation(Mutation m)voidTabletServerBatchWriter. addMutation(TableId table, Mutation m)voidWriter. update(Mutation m)Method parameters in org.apache.accumulo.core.clientImpl with type arguments of type Mutation Modifier and Type Method Description voidTabletServerBatchWriter. addMutation(TableId table, Iterator<Mutation> iterator)voidBatchWriterImpl. addMutations(Iterable<Mutation> iterable)voidTabletServerBatchWriter. updateBinningStats(int count, long time, Map<String,TabletLocator.TabletServerMutations<Mutation>> binnedMutations) -
Uses of Mutation in org.apache.accumulo.core.constraints
Methods in org.apache.accumulo.core.constraints with parameters of type Mutation Modifier and Type Method Description List<Short>Constraint. check(Constraint.Environment env, Mutation mutation)Checks a mutation for constraint violations.List<Short>DefaultKeySizeConstraint. check(Constraint.Environment env, Mutation mutation)List<Short>NoDeleteConstraint. check(Constraint.Environment env, Mutation mutation)List<Short>VisibilityConstraint. check(Constraint.Environment env, Mutation mutation) -
Uses of Mutation in org.apache.accumulo.core.data
Subclasses of Mutation in org.apache.accumulo.core.data Modifier and Type Class Description classConditionalMutationA Mutation that contains a list of conditions that must all be met before the mutation is applied.Methods in org.apache.accumulo.core.data that return Mutation Modifier and Type Method Description MutationMutation.MutationOptions. delete()MutationMutation.MutationOptions. put(byte[] val)MutationMutation.MutationOptions. put(CharSequence val)MutationMutation.MutationOptions. put(ByteBuffer val)MutationMutation.MutationOptions. put(Value val)MutationMutation.MutationOptions. put(org.apache.hadoop.io.Text val)Methods in org.apache.accumulo.core.data with parameters of type Mutation Modifier and Type Method Description booleanMutation. equals(Mutation m)Checks if this mutation equals another.Constructors in org.apache.accumulo.core.data with parameters of type Mutation Constructor Description Mutation(Mutation m)Creates a new mutation by copying another. -
Uses of Mutation in org.apache.accumulo.core.dataImpl
Methods in org.apache.accumulo.core.dataImpl that return Mutation Modifier and Type Method Description MutationKeyExtent. getPrevRowUpdateMutation()Returns a String representing the previous extent's entry in the Metadata tablestatic MutationKeyExtent. getPrevRowUpdateMutation(KeyExtent ke) -
Uses of Mutation in org.apache.accumulo.core.metadata.schema
Methods in org.apache.accumulo.core.metadata.schema with parameters of type Mutation Modifier and Type Method Description voidRootTabletMetadata. update(Mutation m)Apply a metadata table mutation to update internal json. -
Uses of Mutation in org.apache.accumulo.core.replication
Methods in org.apache.accumulo.core.replication that return Mutation Modifier and Type Method Description static MutationReplicationSchema.OrderSection. add(Mutation m, TableId tableId, Value v)Add a column update to the given mutation with the provided tableId and valuestatic MutationReplicationSchema.StatusSection. add(Mutation m, TableId tableId, Value v)static MutationReplicationSchema.WorkSection. add(Mutation m, org.apache.hadoop.io.Text serializedTarget, Value v)static MutationReplicationSchema.OrderSection. createMutation(String file, long timeInMillis)Creates the Mutation for the Order section for the given file and timeMethods in org.apache.accumulo.core.replication with parameters of type Mutation Modifier and Type Method Description static MutationReplicationSchema.OrderSection. add(Mutation m, TableId tableId, Value v)Add a column update to the given mutation with the provided tableId and valuestatic MutationReplicationSchema.StatusSection. add(Mutation m, TableId tableId, Value v)static MutationReplicationSchema.WorkSection. add(Mutation m, org.apache.hadoop.io.Text serializedTarget, Value v) -
Uses of Mutation in org.apache.accumulo.core.util
Subclasses of Mutation in org.apache.accumulo.core.util Modifier and Type Class Description static classLocalityGroupUtil.PartitionedMutationMethods in org.apache.accumulo.core.util with parameters of type Mutation Modifier and Type Method Description booleanLocalityGroupUtil.PartitionedMutation. equals(Mutation m)voidColumnFQ. put(Mutation m, Value v)voidColumnFQ. putDelete(Mutation m)Method parameters in org.apache.accumulo.core.util with type arguments of type Mutation Modifier and Type Method Description voidLocalityGroupUtil.Partitioner. partition(List<Mutation> mutations, PreAllocatedArray<List<Mutation>> partitionedMutations)voidLocalityGroupUtil.Partitioner. partition(List<Mutation> mutations, PreAllocatedArray<List<Mutation>> partitionedMutations)
-