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. |
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) |
Increment |
Increment.setFamilyMap(NavigableMap<byte[],List<KeyValue>> map)
Deprecated.
|
Increment |
Increment.setId(String id) |
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.setTTL(long ttl) |
Increment |
Increment.setWriteToWAL(boolean write)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Result |
Table.increment(Increment increment)
Increments one or more columns within a single row.
|
Result |
HTable.increment(Increment increment)
Increments one or more columns within a single row.
|
Constructor and Description |
---|
Increment(Increment i)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
static Increment |
ProtobufUtil.toIncrement(org.apache.hadoop.hbase.protobuf.generated.ClientProtos.MutationProto proto,
CellScanner cellScanner)
Convert a protocol buffer Mutate to an Increment
|
Modifier and Type | Method and Description |
---|---|
static org.apache.hadoop.hbase.protobuf.generated.ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
Increment increment,
long nonceGroup,
long nonce)
Create a protocol buffer MutateRequest for a client increment
|
static org.apache.hadoop.hbase.protobuf.generated.ClientProtos.MutationProto |
ProtobufUtil.toMutation(Increment increment,
org.apache.hadoop.hbase.protobuf.generated.ClientProtos.MutationProto.Builder builder,
long nonce)
Convert a client Increment to a protobuf Mutate.
|
Copyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.