HBASE-12976 Set default value for hbase.client.scanner.max.result.size.

This commit is contained in:
Lars Hofhansl 2015-02-05 13:29:23 -08:00
parent 96cdc7987e
commit 2583e8de57
2 changed files with 12 additions and 2 deletions

View File

@ -611,9 +611,9 @@ public final class HConstants {
* Note that when a single row is larger than this limit the row is still
* returned completely.
*
* The default value is unlimited.
* The default value is 2MB.
*/
public static final long DEFAULT_HBASE_CLIENT_SCANNER_MAX_RESULT_SIZE = Long.MAX_VALUE;
public static final long DEFAULT_HBASE_CLIENT_SCANNER_MAX_RESULT_SIZE = 2 * 1024 * 1024;
/**
* Parameter name for client pause value, used mostly as value to wait

View File

@ -1258,6 +1258,16 @@ possible configurations would overwhelm and obscure the important.
</description>
</property>
<property>
<name>hbase.client.scanner.max.result.size</name>
<value>2097152</value>
<description>Maximum number of bytes returned when calling a scanner's next method.
Note that when a single row is larger than this limit the row is still returned completely.
The default value is 2MB, which is good for 1ge networks.
With faster and/or high latency networks this value should be increased.
</description>
</property>
<property>
<name>hbase.status.published</name>
<value>false</value>