Author: stack
Date: Mon Apr 25 17:49:42 2011
New Revision: 1096540
URL: http://svn.apache.org/viewvc?rev=1096540&view=rev
Log:
HBASE-3634 Fix JavaDoc for put(List<Put> puts) in HTableInterface
Modified:
hbase/branches/0.90/CHANGES.txt
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
Modified: hbase/branches/0.90/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1096540&r1=1096539&r2=1096540&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Mon Apr 25 17:49:42 2011
@@ -31,6 +31,8 @@ Release 0.90.3 - Unreleased
HBASE-3539 Improve shell help to reflect all possible options
(Harsh J Chouraria)
HBASE-2470 Add Scan.setTimeRange() support in Shell (Harsh J Chouraria)
+ HBASE-3634 Fix JavaDoc for put(List<Put> puts) in HTableInterface
+ (Harsh J Chouraria)
IMPROVEMENT
HBASE-3717 deprecate HTable isTableEnabled() methods in favor of HBaseAdmin
Modified:
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
URL:
http://svn.apache.org/viewvc/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java?rev=1096540&r1=1096539&r2=1096540&view=diff
==============================================================================
---
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
(original)
+++
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
Mon Apr 25 17:49:42 2011
@@ -181,13 +181,10 @@ public interface HTableInterface {
* <p>
* If {@link #isAutoFlush isAutoFlush} is false, the update is buffered
* until the internal buffer is full.
- * @param puts The list of mutations to apply. The list gets modified by
this
- * method (in particular it gets re-ordered, so the order in which the
elements
- * are inserted in the list gives no guarantee as to the order in which the
- * {@link Put}s are executed).
- * @throws IOException if a remote or network exception occurs. In that case
- * the {@code puts} argument will contain the {@link Put} instances that
- * have not be successfully applied.
+ * @param puts The list of mutations to apply. The batch put is done by
+ * aggregating the iteration of the Puts over the write buffer
+ * at the client-side for a single RPC call.
+ * @throws IOException if a remote or network exception occurs.
* @since 0.20.0
*/
void put(List<Put> puts) throws IOException;