Package | Description |
---|---|
org.apache.hadoop.hbase.client |
Provides HBase Client
|
org.apache.hadoop.hbase.coprocessor |
Table of Contents
|
org.apache.hadoop.hbase.coprocessor.example | |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.rest.client | |
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.
|
Modifier and Type | Method and Description |
---|---|
Increment |
Increment.add(Cell cell)
Add the specified KeyValue to this operation.
|
Increment |
Increment.addColumn(byte[] family,
byte[] qualifier,
long amount)
Increment the column from the specific family with the specified qualifier
by the specified amount.
|
Increment |
Increment.setACL(Map<String,Permission> perms) |
Increment |
Increment.setACL(String user,
Permission perms) |
Increment |
Increment.setAttribute(String name,
byte[] value) |
Increment |
Increment.setCellVisibility(CellVisibility expression) |
Increment |
Increment.setClusterIds(List<UUID> clusterIds) |
Increment |
Increment.setDurability(Durability d) |
Increment |
Increment.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0.
Use
Increment(byte[], long, NavigableMap) instead |
Increment |
Increment.setId(String id) |
Increment |
Increment.setPriority(int priority) |
Increment |
Increment.setReturnResults(boolean returnResults) |
Increment |
Increment.setTimeRange(long minStamp,
long maxStamp)
Sets the TimeRange to be used on the Get for this increment.
|
Increment |
Increment.setTimestamp(long timestamp) |
Increment |
Increment.setTTL(long ttl) |
Modifier and Type | Method and Description |
---|---|
Result |
HTable.increment(Increment increment) |
CompletableFuture<Result> |
AsyncTable.increment(Increment increment)
Increments one or more columns within a single row.
|
default Result |
Table.increment(Increment increment)
Increments one or more columns within a single row.
|
CompletableFuture<Result> |
RawAsyncTableImpl.increment(Increment increment) |
CompletableFuture<Result> |
AsyncTableImpl.increment(Increment increment) |
Constructor and Description |
---|
Increment(Increment incrementToCopy)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
default Result |
RegionObserver.postIncrement(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment,
Result result)
Called after increment
|
default Result |
RegionObserver.preIncrement(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment)
Called before Increment.
|
default Result |
RegionObserver.preIncrementAfterRowLock(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment)
Called before Increment but after acquiring rowlock.
|
Modifier and Type | Method and Description |
---|---|
Result |
WriteHeavyIncrementObserver.preIncrement(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment) |
Modifier and Type | Method and Description |
---|---|
Result |
Region.increment(Increment increment)
Perform one or more increment operations on a row.
|
Result |
HRegion.increment(Increment increment) |
Result |
HRegion.increment(Increment mutation,
long nonceGroup,
long nonce) |
Result |
RegionCoprocessorHost.postIncrement(Increment increment,
Result result) |
Result |
RegionCoprocessorHost.preIncrement(Increment increment)
Supports Coprocessor 'bypass'.
|
Result |
RegionCoprocessorHost.preIncrementAfterRowLock(Increment increment)
Supports Coprocessor 'bypass'.
|
Modifier and Type | Method and Description |
---|---|
Result |
RemoteHTable.increment(Increment increment) |
Modifier and Type | Method and Description |
---|---|
Result |
AccessController.preIncrement(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment) |
Result |
AccessController.preIncrementAfterRowLock(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment) |
Modifier and Type | Method and Description |
---|---|
Result |
VisibilityController.preIncrement(ObserverContext<RegionCoprocessorEnvironment> e,
Increment increment) |
Modifier and Type | Method and Description |
---|---|
static Increment |
ThriftUtilities.incrementFromThrift(org.apache.hadoop.hbase.thrift.generated.TIncrement tincrement)
From a
TIncrement create an Increment . |
Modifier and Type | Method and Description |
---|---|
static Increment |
ThriftUtilities.incrementFromThrift(org.apache.hadoop.hbase.thrift2.generated.TIncrement in) |
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.