HBASE-18023 Update row threshold warning from 1k to 5k (addendum)
This commit is contained in:
parent
8ad76bbc88
commit
50d9301136
|
@ -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>
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue