程序包 | 说明 |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
Table of Contents
Overview
Example API Usage
Overview
To administer HBase, create and drop tables, list and alter tables,
use
Admin . |
org.apache.hadoop.hbase.shaded.protobuf |
限定符和类型 | 方法和说明 |
---|---|
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. |
限定符和类型 | 方法和说明 |
---|---|
default boolean |
Table.checkAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
RowMutations mutation)
已过时。
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)
已过时。
|
default boolean |
Table.checkAndMutate(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
RowMutations mutation)
已过时。
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)
已过时。
|
default void |
Table.mutateRow(RowMutations rm)
Performs multiple mutations atomically on a single row.
|
CompletableFuture<Void> |
AsyncTable.mutateRow(RowMutations mutation)
Performs multiple mutations atomically on a single row.
|
void |
HTable.mutateRow(RowMutations rm) |
boolean |
Table.CheckAndMutateBuilder.thenMutate(RowMutations mutation) |
CompletableFuture<Boolean> |
AsyncTable.CheckAndMutateBuilder.thenMutate(RowMutations mutation) |
Copyright © 2007–2018 The Apache Software Foundation. All rights reserved.