Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.shaded.protobuf |
Modifier and Type | Method and Description |
---|---|
RowMutations |
RowMutations.add(List<? extends Mutation> mutations) |
RowMutations |
RowMutations.add(Mutation mutation)
|
static RowMutations |
RowMutations.of(List<? extends Mutation> mutations)
Create a
RowMutations with the specified mutations. |
Modifier and Type | Method and Description |
---|---|
CheckAndMutate |
CheckAndMutate.Builder.build(RowMutations mutations) |
default boolean |
Table.checkAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
RowMutations mutation)
Deprecated.
Since 2.0.0. Will be removed in 3.0.0. Use
Table.checkAndMutate(byte[], byte[]) |
boolean |
HTable.checkAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
RowMutations rm)
Deprecated.
|
default boolean |
Table.checkAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
RowMutations mutation)
Deprecated.
Since 2.0.0. Will be removed in 3.0.0. Use
Table.checkAndMutate(byte[], byte[]) |
boolean |
HTable.checkAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
RowMutations rm)
Deprecated.
|
default Result |
Table.mutateRow(RowMutations rm)
Performs multiple mutations atomically on a single row.
|
CompletableFuture<Result> |
AsyncTable.mutateRow(RowMutations mutation)
Performs multiple mutations atomically on a single row.
|
Result |
HTable.mutateRow(RowMutations rm) |
boolean |
Table.CheckAndMutateBuilder.thenMutate(RowMutations mutation)
Deprecated.
|
boolean |
Table.CheckAndMutateWithFilterBuilder.thenMutate(RowMutations mutation)
Deprecated.
|
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateBuilder.thenMutate(RowMutations mutation)
Deprecated.
|
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateWithFilterBuilder.thenMutate(RowMutations mutation)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
Filter filter,
TimeRange timeRange,
RowMutations rowMutations)
Create a protocol buffer MutateRequest for conditioned row mutations
|
static org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.RegionAction.Builder |
RequestConverter.buildRegionAction(byte[] regionName,
RowMutations rowMutations)
Create a protocol buffer MultiRequest for row mutations.
|
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.