HBASE-18023 Update row threshold warning from 1k to 5k (addendum)

This commit is contained in:
Josh Elser 2017-07-25 11:56:03 -04:00
parent d7febd54da
commit 5cd7f630c2
2 changed files with 2 additions and 2 deletions

View File

@ -1770,7 +1770,7 @@ possible configurations would overwhelm and obscure the important.
</property> </property>
<property> <property>
<name>hbase.rpc.rows.warning.threshold</name> <name>hbase.rpc.rows.warning.threshold</name>
<value>1000</value> <value>5000</value>
<description> <description>
Number of rows in a batch operation above which a warning will be logged. Number of rows in a batch operation above which a warning will be logged.
</description> </description>

View File

@ -258,7 +258,7 @@ public class RSRpcServices implements HBaseRPCErrorHandler,
/** /**
* Default value of {@link RSRpcServices#BATCH_ROWS_THRESHOLD_NAME} * Default value of {@link RSRpcServices#BATCH_ROWS_THRESHOLD_NAME}
*/ */
static final int BATCH_ROWS_THRESHOLD_DEFAULT = 1000; static final int BATCH_ROWS_THRESHOLD_DEFAULT = 5000;
// Request counter. (Includes requests that are not serviced by regions.) // Request counter. (Includes requests that are not serviced by regions.)
final LongAdder requestCount = new LongAdder(); final LongAdder requestCount = new LongAdder();