Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.coprocessor |
Table of Contents
|
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.security.access | |
org.apache.hadoop.hbase.security.visibility | |
org.apache.hadoop.hbase.thrift |
Provides an HBase Thrift
service.
|
org.apache.hadoop.hbase.thrift2 |
Provides an HBase Thrift
service.
|
org.apache.hadoop.hbase.thrift2.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,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) |
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.
|
CompletableFuture<Result> |
RawAsyncTableImpl.append(Append append) |
CompletableFuture<Result> |
AsyncTableImpl.append(Append append) |
Result |
HTable.append(Append append) |
Constructor and Description |
---|
Append(Append appendToCopy)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
default Result |
RegionObserver.postAppend(ObserverContext<RegionCoprocessorEnvironment> c,
Append append,
Result result)
Called after Append
|
default Result |
RegionObserver.preAppend(ObserverContext<RegionCoprocessorEnvironment> c,
Append append)
Called before Append.
|
default Result |
RegionObserver.preAppendAfterRowLock(ObserverContext<RegionCoprocessorEnvironment> c,
Append append)
Called before Append but after acquiring rowlock.
|
Modifier and Type | Method and Description |
---|---|
Result |
Region.append(Append append)
Perform one or more append operations on a row.
|
Result |
HRegion.append(Append append) |
Result |
HRegion.append(Append mutation,
long nonceGroup,
long nonce) |
Result |
RegionCoprocessorHost.postAppend(Append append,
Result result) |
Result |
RegionCoprocessorHost.preAppend(Append append)
Supports Coprocessor 'bypass'.
|
Result |
RegionCoprocessorHost.preAppendAfterRowLock(Append append)
Supports Coprocessor 'bypass'.
|
Modifier and Type | Method and Description |
---|---|
Result |
AccessController.preAppend(ObserverContext<RegionCoprocessorEnvironment> c,
Append append) |
Result |
AccessController.preAppendAfterRowLock(ObserverContext<RegionCoprocessorEnvironment> c,
Append append) |
Modifier and Type | Method and Description |
---|---|
Result |
VisibilityController.preAppend(ObserverContext<RegionCoprocessorEnvironment> e,
Append append) |
Modifier and Type | Method and Description |
---|---|
static Append |
ThriftUtilities.appendFromThrift(org.apache.hadoop.hbase.thrift.generated.TAppend tappend)
From a
TAppend create an Append . |
Modifier and Type | Method and Description |
---|---|
static Append |
ThriftUtilities.appendFromThrift(org.apache.hadoop.hbase.thrift2.generated.TAppend append) |
Modifier and Type | Method and Description |
---|---|
static org.apache.hadoop.hbase.thrift2.generated.TAppend |
ThriftUtilities.appendFromHBase(Append in) |
Modifier and Type | Method and Description |
---|---|
Result |
ThriftTable.append(Append append) |
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.