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 |
---|---|
Put |
Put.add(byte[] family,
byte[] qualifier,
byte[] value)
Add the specified column and value to this Put operation.
|
Put |
Put.add(byte[] family,
byte[] qualifier,
long ts,
byte[] value)
Add the specified column and value, with the specified timestamp as
its version to this Put operation.
|
Put |
Put.add(byte[] family,
ByteBuffer qualifier,
long ts,
ByteBuffer value)
Add the specified column and value, with the specified timestamp as
its version to this Put operation.
|
Put |
Put.add(Cell kv)
Add the specified KeyValue to this Put operation.
|
Put |
Put.addImmutable(byte[] family,
byte[] qualifier,
byte[] value)
|
Put |
Put.addImmutable(byte[] family,
byte[] qualifier,
long ts,
byte[] value)
|
Put |
Put.addImmutable(byte[] family,
ByteBuffer qualifier,
long ts,
ByteBuffer value)
|
Modifier and Type | Method and Description |
---|---|
List<Put> |
HTableMultiplexer.put(byte[] tableName,
List<Put> puts) |
List<Put> |
HTableMultiplexer.put(TableName tableName,
List<Put> puts)
The puts request will be buffered by their corresponding buffer queue.
|
Modifier and Type | Method and Description |
---|---|
void |
RowMutations.add(Put p)
Add a
Put operation to the list of mutations |
boolean |
HTableInterface.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
Atomically checks if a row/family/qualifier value matches the expected
value.
|
boolean |
HTable.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
Atomically checks if a row/family/qualifier value matches the expected
value.
|
boolean |
HTableMultiplexer.put(byte[] tableName,
Put put) |
boolean |
HTableMultiplexer.put(byte[] tableName,
Put put,
int retry) |
void |
HTableInterface.put(Put put)
Puts some data in the table.
|
void |
HTable.put(Put put)
Puts some data in the table.
|
boolean |
HTableMultiplexer.put(TableName tableName,
Put put)
The put request will be buffered by its corresponding buffer queue.
|
boolean |
HTableMultiplexer.put(TableName tableName,
Put put,
int retry)
The put request will be buffered by its corresponding buffer queue.
|
void |
HTable.validatePut(Put put) |
Modifier and Type | Method and Description |
---|---|
static void |
HTableUtil.bucketRsPut(HTable htable,
List<Put> puts)
Processes a List of Puts and writes them to an HTable instance in RegionServer buckets via the htable.put method.
|
List<Put> |
HTableMultiplexer.put(byte[] tableName,
List<Put> puts) |
void |
HTableInterface.put(List<Put> puts)
Puts some data in the table, in batch.
|
void |
HTable.put(List<Put> puts)
Puts some data in the table, in batch.
|
List<Put> |
HTableMultiplexer.put(TableName tableName,
List<Put> puts)
The puts request will be buffered by their corresponding buffer queue.
|
Constructor and Description |
---|
Put(Put putToCopy)
Copy constructor.
|
Modifier and Type | Method and Description |
---|---|
static Put |
ProtobufUtil.toPut(ClientProtos.MutationProto proto)
Convert a protocol buffer Mutate to a Put.
|
static Put |
ProtobufUtil.toPut(ClientProtos.MutationProto proto,
CellScanner cellScanner)
Convert a protocol buffer Mutate to a Put.
|
Modifier and Type | Method and Description |
---|---|
static ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
byte[] row,
byte[] family,
byte[] qualifier,
ByteArrayComparable comparator,
HBaseProtos.CompareType compareType,
Put put)
Create a protocol buffer MutateRequest for a conditioned put
|
static ClientProtos.MutateRequest |
RequestConverter.buildMutateRequest(byte[] regionName,
Put put)
Create a protocol buffer MutateRequest for a put
|
Copyright © 2013 The Apache Software Foundation. All Rights Reserved.