Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.client.trace | |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.thrift2 |
Provides an HBase Thrift
service.
|
org.apache.hadoop.hbase.thrift2.client |
Modifier and Type | Method and Description |
---|---|
RowMutations |
RowMutations.add(List<? extends Mutation> mutations)
Add a list of 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)
Build the CheckAndMutate object with a RowMutations to commit if the check succeeds.
|
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,
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,
CompareOperator op,
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[]) |
private CheckAndMutateResult |
HTable.doCheckAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
Filter filter,
TimeRange timeRange,
RowMutations rm) |
private static boolean |
AsyncProcess.hasIncrementOrAppend(RowMutations mutations) |
private static boolean |
AsyncBatchRpcRetryingCaller.hasIncrementOrAppend(RowMutations mutations) |
private <RES,RESP> CompletableFuture<RESP> |
RawAsyncTableImpl.mutateRow(HBaseRpcController controller,
HRegionLocation loc,
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.Interface stub,
RowMutations mutation,
RawAsyncTableImpl.Converter<org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiRequest,byte[],RowMutations> reqConvert,
Function<RES,RESP> respConverter) |
Result |
HTable.mutateRow(RowMutations rm) |
CompletableFuture<Result> |
AsyncTable.mutateRow(RowMutations mutation)
Performs multiple mutations atomically on a single row.
|
default Result |
Table.mutateRow(RowMutations rm)
Performs multiple mutations atomically on a single row.
|
CompletableFuture<Result> |
RawAsyncTableImpl.mutateRow(RowMutations mutations) |
CompletableFuture<Result> |
AsyncTableImpl.mutateRow(RowMutations mutation) |
boolean |
HTable.CheckAndMutateBuilderImpl.thenMutate(RowMutations mutation) |
boolean |
HTable.CheckAndMutateWithFilterBuilderImpl.thenMutate(RowMutations mutation) |
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateBuilder.thenMutate(RowMutations mutation)
Deprecated.
Specify a RowMutations to commit if the check succeeds.
|
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateWithFilterBuilder.thenMutate(RowMutations mutation)
Deprecated.
Specify a RowMutations to commit if the check succeeds.
|
boolean |
Table.CheckAndMutateBuilder.thenMutate(RowMutations mutation)
Deprecated.
Specify a RowMutations to commit if the check succeeds.
|
boolean |
Table.CheckAndMutateWithFilterBuilder.thenMutate(RowMutations mutation)
Deprecated.
Specify a RowMutations to commit if the check succeeds.
|
CompletableFuture<Boolean> |
RawAsyncTableImpl.CheckAndMutateBuilderImpl.thenMutate(RowMutations mutations) |
CompletableFuture<Boolean> |
RawAsyncTableImpl.CheckAndMutateWithFilterBuilderImpl.thenMutate(RowMutations mutations) |
(package private) static void |
ConnectionUtils.validatePutsInRowMutations(RowMutations rowMutations,
int maxKeyValueSize) |
Modifier and Type | Method and Description |
---|---|
private <RES,RESP> CompletableFuture<RESP> |
RawAsyncTableImpl.mutateRow(HBaseRpcController controller,
HRegionLocation loc,
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.Interface stub,
RowMutations mutation,
RawAsyncTableImpl.Converter<org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiRequest,byte[],RowMutations> reqConvert,
Function<RES,RESP> respConverter) |
Modifier and Type | Method and Description |
---|---|
TableOperationSpanBuilder |
TableOperationSpanBuilder.setContainerOperations(RowMutations mutations) |
Modifier and Type | Method and Description |
---|---|
default boolean |
Region.checkAndRowMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
ByteArrayComparable comparator,
RowMutations mutations)
Deprecated.
since 2.4.0 and will be removed in 4.0.0. Use
Region.checkAndMutate(CheckAndMutate) instead. |
boolean |
Region.checkAndRowMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
ByteArrayComparable comparator,
TimeRange timeRange,
RowMutations mutations)
Deprecated.
since 2.4.0 and will be removed in 4.0.0. Use
Region.checkAndMutate(CheckAndMutate) instead. |
boolean |
HRegion.checkAndRowMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
ByteArrayComparable comparator,
TimeRange timeRange,
RowMutations rm)
Deprecated.
|
default boolean |
Region.checkAndRowMutate(byte[] row,
Filter filter,
RowMutations mutations)
Deprecated.
since 2.4.0 and will be removed in 4.0.0. Use
Region.checkAndMutate(CheckAndMutate) instead. |
boolean |
Region.checkAndRowMutate(byte[] row,
Filter filter,
TimeRange timeRange,
RowMutations mutations)
Deprecated.
since 2.4.0 and will be removed in 4.0.0. Use
Region.checkAndMutate(CheckAndMutate) instead. |
boolean |
HRegion.checkAndRowMutate(byte[] row,
Filter filter,
TimeRange timeRange,
RowMutations rm)
Deprecated.
|
Result |
Region.mutateRow(RowMutations mutations)
Performs multiple mutations atomically on a single row.
|
Result |
HRegion.mutateRow(RowMutations rm) |
Result |
HRegion.mutateRow(RowMutations rm,
long nonceGroup,
long nonce) |
Modifier and Type | Method and Description |
---|---|
static RowMutations |
ThriftUtilities.rowMutationsFromThrift(org.apache.hadoop.hbase.thrift2.generated.TRowMutations in)
Creates a
RowMutations (HBase) from a TRowMutations (Thrift) |
Modifier and Type | Method and Description |
---|---|
static org.apache.hadoop.hbase.thrift2.generated.TRowMutations |
ThriftUtilities.rowMutationsFromHBase(RowMutations in) |
Modifier and Type | Method and Description |
---|---|
boolean |
ThriftTable.checkAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
RowMutations mutation) |
Result |
ThriftTable.mutateRow(RowMutations rm) |
boolean |
ThriftTable.CheckAndMutateBuilderImpl.thenMutate(RowMutations mutation) |
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.