Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.rest.client |
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,org.apache.hadoop.hbase.security.access.Permission> perms) |
Append |
Append.setACL(String user,
org.apache.hadoop.hbase.security.access.Permission perms) |
Append |
Append.setAttribute(String name,
byte[] value) |
Append |
Append.setCellVisibility(org.apache.hadoop.hbase.security.visibility.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) |
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 |
---|---|
CompletableFuture<Result> |
AsyncTable.append(Append append)
Appends values to one or more columns within a single row.
|
default Result |
Table.append(Append append)
Appends values to one or more columns within a single row.
|
Constructor and Description |
---|
Append(Append appendToCopy)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
Result |
RemoteHTable.append(Append append) |
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.