Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.protobuf |
Holds classes generated from protobuf
src/main/protobuf definition files. |
org.apache.hadoop.hbase.shaded.protobuf |
Modifier and Type | Method and Description |
---|---|
Append |
Append.add(byte[] family,
byte[] qualifier,
byte[] value)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0. Use
addColumn(byte[], byte[], byte[]) instead |
Append |
Append.add(Cell cell)
Add column and value to this Append operation.
|
Append |
Append.addColumn(byte[] family,
byte[] qualifier,
byte[] value)
Add the specified column and value to this Append operation.
|
Append |
Append.setACL(Map<String,Permission> perms) |
Append |
Append.setACL(String user,
Permission perms) |
Append |
Append.setAttribute(String name,
byte[] value) |
Append |
Append.setCellVisibility(CellVisibility expression) |
Append |
Append.setClusterIds(List<UUID> clusterIds) |
Append |
Append.setDurability(Durability d) |
Append |
Append.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0. Use
Append(byte[], long, NavigableMap) instead |
Append |
Append.setId(String id) |
Append |
Append.setPriority(int priority) |
Append |
Append.setReturnResults(boolean returnResults)
True (default) if the append operation should return the results.
|
Append |
Append.setTimeRange(long minStamp,
long maxStamp)
Sets the TimeRange to be used on the Get for this append.
|
Append |
Append.setTimestamp(long timestamp) |
Append |
Append.setTTL(long ttl) |
Modifier and Type | Method and Description |
---|---|
Result |
HTable.append(Append append) |
default Result |
Table.append(Append append)
Appends values to one or more columns within a single row.
|
CompletableFuture<Result> |
AsyncTable.append(Append append)
Appends values to one or more columns within a single row.
|
CheckAndMutate |
CheckAndMutate.Builder.build(Append append)
Build the CheckAndMutate object with an Append to commit if the check succeeds.
|
Constructor and Description |
---|
Append(Append appendToCopy)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
static Append |
ProtobufUtil.toAppend(org.apache.hadoop.hbase.protobuf.generated.ClientProtos.MutationProto proto,
CellScanner cellScanner)
Convert a protocol buffer Mutate to an Append
|
Modifier and Type | Method and Description |
---|---|
static Append |
ProtobufUtil.toAppend(org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutationProto proto,
CellScanner cellScanner)
Convert a protocol buffer Mutate to an Append
|
Modifier and Type | Method and Description |
---|---|
static org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
Append append,
long nonceGroup,
long nonce)
Create a protocol buffer MutateRequest for an append
|
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.