|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Put | |
---|---|
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.mapred | Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility |
org.apache.hadoop.hbase.mapreduce | Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility |
org.apache.hadoop.hbase.rest.client |
Uses of Put in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return Put | |
---|---|
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)
See add(byte[], byte[], byte[]) . |
Put |
Put.addImmutable(byte[] family,
byte[] qualifier,
byte[] value,
org.apache.hadoop.hbase.Tag[] tag)
This expects that the underlying arrays won't change. |
Put |
Put.addImmutable(byte[] family,
byte[] qualifier,
long ts,
byte[] value)
See add(byte[], byte[], long, byte[]) . |
Put |
Put.addImmutable(byte[] family,
byte[] qualifier,
long ts,
byte[] value,
org.apache.hadoop.hbase.Tag[] tag)
This expects that the underlying arrays won't change. |
Put |
Put.addImmutable(byte[] family,
ByteBuffer qualifier,
long ts,
ByteBuffer value)
See add(byte[], ByteBuffer, long, ByteBuffer) . |
Put |
Put.addImmutable(byte[] family,
ByteBuffer qualifier,
long ts,
ByteBuffer value,
org.apache.hadoop.hbase.Tag[] tag)
This expects that the underlying arrays won't change. |
Methods in org.apache.hadoop.hbase.client that return types with arguments of type Put | |
---|---|
List<Put> |
HTableMultiplexer.put(byte[] tableName,
List<Put> puts)
Deprecated. |
List<Put> |
HTableMultiplexer.put(TableName tableName,
List<Put> puts)
The puts request will be buffered by their corresponding buffer queue. |
Methods in org.apache.hadoop.hbase.client with parameters of type Put | |
---|---|
void |
RowMutations.add(Put p)
Add a Put operation to the list of mutations |
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 |
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 |
HTableMultiplexer.put(byte[] tableName,
Put put)
Deprecated. |
boolean |
HTableMultiplexer.put(byte[] tableName,
Put put,
int retry)
Deprecated. |
void |
HTable.put(Put put)
Puts some data in the table. |
void |
HTableInterface.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)
|
static void |
HTable.validatePut(Put put,
int maxKeyValueSize)
|
Method parameters in org.apache.hadoop.hbase.client with type arguments of type Put | |
---|---|
List<Put> |
HTableMultiplexer.put(byte[] tableName,
List<Put> puts)
Deprecated. |
void |
HTable.put(List<Put> puts)
Puts some data in the table, in batch. |
void |
HTableInterface.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. |
Constructors in org.apache.hadoop.hbase.client with parameters of type Put | |
---|---|
Put(Put putToCopy)
Copy constructor. |
Uses of Put in org.apache.hadoop.hbase.mapred |
---|
Method parameters in org.apache.hadoop.hbase.mapred with type arguments of type Put | |
---|---|
void |
IdentityTableReduce.reduce(ImmutableBytesWritable key,
Iterator<Put> values,
org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,Put> output,
org.apache.hadoop.mapred.Reporter reporter)
Deprecated. No aggregation, output pairs of (key, record) |
void |
IdentityTableReduce.reduce(ImmutableBytesWritable key,
Iterator<Put> values,
org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,Put> output,
org.apache.hadoop.mapred.Reporter reporter)
Deprecated. No aggregation, output pairs of (key, record) |
Uses of Put in org.apache.hadoop.hbase.mapreduce |
---|
Methods in org.apache.hadoop.hbase.mapreduce with parameters of type Put | |
---|---|
protected void |
TsvImporterMapper.populatePut(byte[] lineBytes,
org.apache.hadoop.hbase.mapreduce.ImportTsv.TsvParser.ParsedLine parsed,
Put put,
int i)
|
Method parameters in org.apache.hadoop.hbase.mapreduce with type arguments of type Put | |
---|---|
protected void |
PutSortReducer.reduce(ImmutableBytesWritable row,
Iterable<Put> puts,
org.apache.hadoop.mapreduce.Reducer.Context context)
|
protected void |
PutCombiner.reduce(K row,
Iterable<Put> vals,
org.apache.hadoop.mapreduce.Reducer.Context context)
|
Uses of Put in org.apache.hadoop.hbase.rest.client |
---|
Methods in org.apache.hadoop.hbase.rest.client with parameters of type Put | |
---|---|
protected org.apache.hadoop.hbase.rest.model.CellSetModel |
RemoteHTable.buildModelFromPut(Put put)
|
boolean |
RemoteHTable.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
|
void |
RemoteHTable.put(Put put)
|
Method parameters in org.apache.hadoop.hbase.rest.client with type arguments of type Put | |
---|---|
void |
RemoteHTable.put(List<Put> puts)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |