Package org.apache.solr.handler.admin
Enum Class ClusterStatus.Health
- All Implemented Interfaces:
Serializable,Comparable<ClusterStatus.Health>,Constable
- Enclosing class:
ClusterStatus
Shard / collection health state.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic ClusterStatus.HealthcalcShardHealth(float fractionReplicasUp, boolean hasLeader) static ClusterStatus.Healthcombine(Collection<ClusterStatus.Health> states) Combine multiple states into one.static ClusterStatus.HealthReturns the enum constant of this class with the specified name.static ClusterStatus.Health[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GREEN
All replicas up, leader exists. -
YELLOW
Some replicas down, leader exists. -
ORANGE
Most replicas down, leader exists. -
RED
No leader or all replicas down.
-
-
Field Details
-
ORANGE_LEVEL
public static final float ORANGE_LEVEL- See Also:
-
RED_LEVEL
public static final float RED_LEVEL- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
calcShardHealth
-
combine
Combine multiple states into one. Always reports as the worst state.
-