| 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 |
|---|---|
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 void |
Table.mutateRow(RowMutations rm)
Performs multiple mutations atomically on a single row.
|
void |
HTable.mutateRow(RowMutations rm) |
CompletableFuture<Void> |
AsyncTable.mutateRow(RowMutations mutation)
Performs multiple mutations atomically on a single row.
|
boolean |
Table.CheckAndMutateBuilder.thenMutate(RowMutations mutation) |
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateBuilder.thenMutate(RowMutations mutation) |
| 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,
org.apache.hadoop.hbase.filter.ByteArrayComparable comparator,
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.CompareType compareType,
org.apache.hadoop.hbase.io.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.buildNoDataRegionAction(byte[] regionName,
RowMutations rowMutations,
List<org.apache.hadoop.hbase.CellScannable> cells,
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.RegionAction.Builder regionActionBuilder,
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.Action.Builder actionBuilder,
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutationProto.Builder mutationBuilder)
Create a protocol buffer MultiRequest for row mutations that does not hold data.
|
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.