HBASE-13647 Default value for hbase.client.operation.timeout is too high

This commit is contained in:
Andrey Stepachev 2015-06-02 10:58:59 +01:00
parent 93148719ba
commit 27697498b6
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ public final class HConstants {
"hbase.client.meta.operation.timeout";
/** Default HBase client operation timeout, which is tantamount to a blocking call */
public static final int DEFAULT_HBASE_CLIENT_OPERATION_TIMEOUT = Integer.MAX_VALUE;
public static final int DEFAULT_HBASE_CLIENT_OPERATION_TIMEOUT = 1200000;
/** Used to construct the name of the log directory for a region server */
public static final String HREGION_LOGDIR_NAME = "WALs";