HBASE-21372) Set hbase.assignment.maximum.attempts to Long.MAX
Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Allan Yang <allan163@apache.org>
This commit is contained in:
parent
040ec2227e
commit
2e9381a839
|
@ -137,7 +137,7 @@ public class AssignmentManager implements ServerListener {
|
||||||
|
|
||||||
public static final String ASSIGN_MAX_ATTEMPTS =
|
public static final String ASSIGN_MAX_ATTEMPTS =
|
||||||
"hbase.assignment.maximum.attempts";
|
"hbase.assignment.maximum.attempts";
|
||||||
private static final int DEFAULT_ASSIGN_MAX_ATTEMPTS = 10;
|
private static final int DEFAULT_ASSIGN_MAX_ATTEMPTS = Integer.MAX_VALUE;
|
||||||
|
|
||||||
/** Region in Transition metrics threshold time */
|
/** Region in Transition metrics threshold time */
|
||||||
public static final String METRICS_RIT_STUCK_WARNING_THRESHOLD =
|
public static final String METRICS_RIT_STUCK_WARNING_THRESHOLD =
|
||||||
|
|
Loading…
Reference in New Issue