public final class RowMutation extends Object implements MutationApi<RowMutation>, Serializable
BigtableDataClient.mutateRowAsync(RowMutation)
.Modifier and Type | Method and Description |
---|---|
static RowMutation |
create(String tableId,
ByteString key)
Creates a new instance of the mutation builder.
|
static RowMutation |
create(String tableId,
ByteString key,
Mutation mutation)
Creates new instance of mutation builder by wrapping existing set of row mutations.
|
static RowMutation |
create(String tableId,
String key)
Creates a new instance of the mutation builder.
|
static RowMutation |
create(String tableId,
String key,
Mutation mutation)
Creates new instance of mutation builder by wrapping existing set of row mutations.
|
RowMutation |
deleteCells(String familyName,
ByteString qualifier)
Adds a mutation which deletes cells from the specified column.
|
RowMutation |
deleteCells(String familyName,
ByteString qualifier,
Range.TimestampRange timestampRange)
Adds a mutation which deletes cells from the specified column, restricted to a given timestamp
range.
|
RowMutation |
deleteCells(String familyName,
String qualifier)
Adds a mutation which deletes cells from the specified column.
|
RowMutation |
deleteFamily(String familyName)
Adds a mutation which deletes all cells from the specified column family.
|
RowMutation |
deleteRow()
Adds a mutation which deletes all cells from the containing row.
|
RowMutation |
setCell(String familyName,
ByteString qualifier,
ByteString value)
Adds a mutation which sets the value of the specified cell.
|
RowMutation |
setCell(String familyName,
ByteString qualifier,
long timestamp,
ByteString value)
Adds a mutation which sets the value of the specified cell.
|
RowMutation |
setCell(String familyName,
String qualifier,
long timestamp,
String value)
Adds a mutation which sets the value of the specified cell.
|
RowMutation |
setCell(String familyName,
String qualifier,
String value)
Adds a mutation which sets the value of the specified cell.
|
com.google.bigtable.v2.MutateRowsRequest |
toBulkProto(com.google.cloud.bigtable.data.v2.internal.RequestContext requestContext)
Creates a single entry bulk
MutateRowsRequest , which will be
merged by the batching logic in the callable chain. |
com.google.bigtable.v2.MutateRowRequest |
toProto(com.google.cloud.bigtable.data.v2.internal.RequestContext requestContext) |
public static RowMutation create(@Nonnull String tableId, @Nonnull String key)
public static RowMutation create(@Nonnull String tableId, @Nonnull ByteString key)
public static RowMutation create(@Nonnull String tableId, @Nonnull String key, @Nonnull Mutation mutation)
Sample code:
Mutation mutation = Mutation.create()
.setCell("[FAMILY_NAME]", "[QUALIFIER]", [TIMESTAMP], "[VALUE]");
RowMutation rowMutation = RowMutation.create("[TABLE]", "[ROW_KEY]", mutation);
public static RowMutation create(@Nonnull String tableId, @Nonnull ByteString key, @Nonnull Mutation mutation)
Sample code:
Mutation mutation = Mutation.create()
.setCell("[FAMILY_NAME]", "[QUALIFIER]", [TIMESTAMP], "[VALUE]");
RowMutation rowMutation = RowMutation.create("[TABLE]", [BYTE_STRING_ROW_KEY], mutation);
public RowMutation setCell(@Nonnull String familyName, @Nonnull String qualifier, @Nonnull String value)
MutationApi
This a convenience method that converts Strings to ByteStrings and uses microseconds since epoch as the timestamp.
setCell
in interface MutationApi<RowMutation>
public RowMutation setCell(@Nonnull String familyName, @Nonnull String qualifier, long timestamp, @Nonnull String value)
MutationApi
This is a convenience override that converts Strings to ByteStrings.
setCell
in interface MutationApi<RowMutation>
public RowMutation setCell(@Nonnull String familyName, @Nonnull ByteString qualifier, @Nonnull ByteString value)
MutationApi
Uses microseconds since epoch as the timestamp.
setCell
in interface MutationApi<RowMutation>
public RowMutation setCell(@Nonnull String familyName, @Nonnull ByteString qualifier, long timestamp, @Nonnull ByteString value)
MutationApi
setCell
in interface MutationApi<RowMutation>
public RowMutation deleteCells(@Nonnull String familyName, @Nonnull String qualifier)
MutationApi
deleteCells
in interface MutationApi<RowMutation>
public RowMutation deleteCells(@Nonnull String familyName, @Nonnull ByteString qualifier)
MutationApi
deleteCells
in interface MutationApi<RowMutation>
public RowMutation deleteCells(@Nonnull String familyName, @Nonnull ByteString qualifier, @Nonnull Range.TimestampRange timestampRange)
MutationApi
deleteCells
in interface MutationApi<RowMutation>
familyName
- The family name.qualifier
- The qualifier.timestampRange
- The timestamp range in microseconds.public RowMutation deleteFamily(@Nonnull String familyName)
MutationApi
deleteFamily
in interface MutationApi<RowMutation>
public RowMutation deleteRow()
MutationApi
deleteRow
in interface MutationApi<RowMutation>
@InternalApi public com.google.bigtable.v2.MutateRowRequest toProto(com.google.cloud.bigtable.data.v2.internal.RequestContext requestContext)
@InternalApi public com.google.bigtable.v2.MutateRowsRequest toBulkProto(com.google.cloud.bigtable.data.v2.internal.RequestContext requestContext)
MutateRowsRequest
, which will be
merged by the batching logic in the callable chain.Copyright © 2019 Google LLC. All rights reserved.