From c64c0e85c0fe1b8f0c210ff41dbaf4e6b56afa8d Mon Sep 17 00:00:00 2001 From: Josh Elser Date: Sun, 21 Aug 2016 22:40:42 -0400 Subject: [PATCH] HBASE-16376 Scan#setBatch(int) javadoc update WRT partial results Signed-off-by: Enis Soztutar --- .../main/java/org/apache/hadoop/hbase/client/Scan.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java index b13837d371b..1d9b1302a72 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java @@ -466,7 +466,13 @@ public class Scan extends Query { } /** - * Set the maximum number of values to return for each call to next() + * Set the maximum number of values to return for each call to next(). + * Callers should be aware that invoking this method with any value + * is equivalent to calling {@link #setAllowPartialResults(boolean)} + * with a value of {@code true}; partial results may be returned if + * this method is called. Use {@link #setMaxResultSize(long)}} to + * limit the size of a Scan's Results instead. + * * @param batch the maximum number of values */ public Scan setBatch(int batch) {