HBASE-4142 Advise against large batches in javadoc for HTable#put(List<Put>)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1151257 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1f9315ff09
commit
3e343dcd31
|
@ -334,6 +334,7 @@ Release 0.91.0 - Unreleased
|
||||||
(Alejandro Abdelnur)
|
(Alejandro Abdelnur)
|
||||||
HBASE-3899 enhance HBase RPC to support free-ing up server handler threads
|
HBASE-3899 enhance HBase RPC to support free-ing up server handler threads
|
||||||
even if response is not ready (Vlad Dogaru)
|
even if response is not ready (Vlad Dogaru)
|
||||||
|
HBASE-4142 Advise against large batches in javadoc for HTable#put(List<Put>)
|
||||||
|
|
||||||
TASKS
|
TASKS
|
||||||
HBASE-3559 Move report of split to master OFF the heartbeat channel
|
HBASE-3559 Move report of split to master OFF the heartbeat channel
|
||||||
|
|
|
@ -188,6 +188,10 @@ public interface HTableInterface {
|
||||||
* <p>
|
* <p>
|
||||||
* If {@link #isAutoFlush isAutoFlush} is false, the update is buffered
|
* If {@link #isAutoFlush isAutoFlush} is false, the update is buffered
|
||||||
* until the internal buffer is full.
|
* until the internal buffer is full.
|
||||||
|
* <p>
|
||||||
|
* This can be used for group commit, or for submitting user defined
|
||||||
|
* batches, but sending large lists of values is not recommended. That may
|
||||||
|
* produce performance problems.
|
||||||
* @param puts The list of mutations to apply. The batch put is done by
|
* @param puts The list of mutations to apply. The batch put is done by
|
||||||
* aggregating the iteration of the Puts over the write buffer
|
* aggregating the iteration of the Puts over the write buffer
|
||||||
* at the client-side for a single RPC call.
|
* at the client-side for a single RPC call.
|
||||||
|
|
Loading…
Reference in New Issue