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 8ad76bbc88
commit 50d9301136
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -258,7 +258,7 @@ public class RSRpcServices implements HBaseRPCErrorHandler,
/**
* 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.)
final LongAdder requestCount = new LongAdder();