Class BulkMutation
java.lang.Object
com.google.cloud.bigtable.data.v2.models.BulkMutation
- All Implemented Interfaces:
Serializable
,Cloneable
Represents a list of mutations for multiple rows. Each mutation contains multiple changes that
will be atomically applied to each row. However, ordering between rows is not guaranteed.
This class is meant for manual batching.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionadd
(RowMutationEntry entry) Add mutation for a particular row.Add mutation for a particular row.Add mutation for a particular row.clone()
Creates a copy ofBulkMutation
.static BulkMutation
static BulkMutation
fromProto
(com.google.bigtable.v2.MutateRowsRequest request) Wraps the protobufMutateRowsRequest
.int
com.google.bigtable.v2.MutateRowsRequest
toProto
(com.google.cloud.bigtable.data.v2.internal.RequestContext requestContext)
-
Method Details
-
create
-
add
Add mutation for a particular row. The changes in the mutation will be applied atomically. However there is no guarantees about the relative ordering between mutations affecting different rows. -
add
Add mutation for a particular row. The changes in the mutation will be applied atomic. However there is no guarantees about the relative ordering between mutations affecting different rows. -
add
Add mutation for a particular row. The changes in the mutation will be applied atomic. However there is no guarantees about the relative ordering between mutations affecting different rows. -
getEntryCount
public int getEntryCount() -
toProto
@InternalApi public com.google.bigtable.v2.MutateRowsRequest toProto(com.google.cloud.bigtable.data.v2.internal.RequestContext requestContext) -
fromProto
@BetaApi public static BulkMutation fromProto(@Nonnull com.google.bigtable.v2.MutateRowsRequest request) Wraps the protobufMutateRowsRequest
.This is meant for advanced usage only. Please ensure that the MutateRowsRequest does not use server side timestamps. The BigtableDataClient assumes that mutation present in BulkMutation are idempotent and is configured to enable retries by default. If serverside timestamps are enabled then that can lead to duplicate mutations.
WARNING: when applied, the resulting mutation object will ignore the project id and instance id in the table_name and instead apply the configuration in the client.
-
clone
Creates a copy ofBulkMutation
.
-