aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/policy/ConcurrentSuspensionLimitForCluster.java
blob: 3ad20f1a37e7a58b88bdbc21fc255e02ba892ea9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.policy;

/**
 * How many nodes can suspend concurrently, at most.
 */
public enum ConcurrentSuspensionLimitForCluster {

    ONE_NODE(0),
    TEN_PERCENT(10),
    TWENTY_PERCENT(20),
    FIFTY_PERCENT(50),
    ALL_NODES(100);

    final int percentage;

    ConcurrentSuspensionLimitForCluster(int percentage) {
        this.percentage = percentage;
    }

    public int asPercentage() {
        return percentage;
    }
}