summaryrefslogtreecommitdiffstats
path: root/rulemgt/src/main/java/org/onap/holmes/rulemgt/RuleAllocator.java
blob: bf26b71388445478cef86ffbadc7b7e978fc0add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/**
 * Copyright 2017-2021 ZTE Corporation.
 * <p>
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * <p>
 * http://www.apache.org/licenses/LICENSE-2.0
 * <p>
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.holmes.rulemgt;

import lombok.extern.slf4j.Slf4j;
import org.jvnet.hk2.annotations.Service;
import org.onap.holmes.common.api.entity.CorrelationRule;
import org.onap.holmes.common.exception.CorrelationException;
import org.onap.holmes.common.utils.DbDaoUtil;
import org.onap.holmes.rulemgt.bolt.enginebolt.EngineWrapper;
import org.onap.holmes.rulemgt.db.CorrelationRuleDao;
import org.onap.holmes.rulemgt.tools.EngineTools;
import org.onap.holmes.rulemgt.wrapper.RuleMgtWrapper;
import org.onap.holmes.rulemgt.wrapper.RuleQueryWrapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.annotation.PostConstruct;
import javax.inject.Inject;
import java.util.*;
import java.util.concurrent.TimeUnit;

import static java.util.concurrent.TimeUnit.SECONDS;

@Slf4j
@Service
public class RuleAllocator {
    private static final Logger LOGGER = LoggerFactory.getLogger(RuleAllocator.class);

    public final static int ENABLE = 1;
    public final static int RETRY_TIMES = 5;
    public final static long RETRY_INTERVAL_SEC = 15;
    private RuleMgtWrapper ruleMgtWrapper;
    private RuleQueryWrapper ruleQueryWrapper;
    private EngineWrapper engineWrapper;
    private EngineTools engineTools;
    private CorrelationRuleDao correlationRuleDao;

    @Inject
    public RuleAllocator(RuleMgtWrapper ruleMgtWrapper, RuleQueryWrapper ruleQueryWrapper,
                         EngineWrapper engineWrapper, EngineTools engineTools, DbDaoUtil daoUtil) {
        this.ruleMgtWrapper = ruleMgtWrapper;
        this.ruleQueryWrapper = ruleQueryWrapper;
        this.engineWrapper = engineWrapper;
        this.engineTools = engineTools;
        correlationRuleDao = daoUtil.getJdbiDaoByOnDemand(CorrelationRuleDao.class);
    }

    @PostConstruct
    private void initialize() {
        new Timer("RuleAllocatorTimer").schedule(new TimerTask() {

            public void run() {
                try {
                    allocateRules();
                } catch (Exception e) {
                    LOGGER.error("Failed to reallocate rules.", e);
                }
            }

        }, SECONDS.toMillis(10), SECONDS.toMillis(30));
    }

    public synchronized void allocateRules() throws Exception {
        List<String> engines = engineTools.getInstanceList();

        if (engines == null) {
            return;
        }

        int numOfEngines = engines.size();
        LOGGER.info(String.format("There are %d engine instance(s) running currently.", numOfEngines));

        List<String> legacyEngineInstances = engineTools.getLegacyEngineInstances();
        if (legacyEngineInstances == null) {
            return;
        }

        if (legacyEngineInstances.size() < numOfEngines) { // extend
            List<CorrelationRule> rules2Allocate = calculateRule(legacyEngineInstances, numOfEngines);
            List<CorrelationRule> rules2Delete = copyList(rules2Allocate);
            List<String> newInstanceIds = sortOutNewEngineInstances(engines, legacyEngineInstances);
            distributeRules(newInstanceIds, rules2Allocate);
            cleanUpRulesFromEngines(rules2Delete, legacyEngineInstances);
        } else { // destroy
            // If new engine instances share the same IP addresses with the old ones, the
            // rule management module will simply leave the them to cope with the legacy rules.
            // Here, it only takes care of the rules that need to be moved from one IP address to another.
            List<String> destroyed = getDestroyedEngines(engines, legacyEngineInstances);
            distributeRules(getRemainingEngines(engines, destroyed), getRules(destroyed));
        }
    }

    private List<CorrelationRule> copyList(List<CorrelationRule> rules) {
        List<CorrelationRule> ret = new ArrayList<>(rules.size());
        for (CorrelationRule r : rules) {
            ret.add((CorrelationRule) r.clone());
        }
        return ret;
    }

    // When the engine is expanding, the rules that need to be allocated are calculated.
    private List<CorrelationRule> calculateRule(List<String> existingEngineIps,
                                                int latestEngineInsNum) throws CorrelationException {
        List<CorrelationRule> enabledRules = ruleQueryWrapper.queryRuleByEnable(ENABLE);
        int ruleCount = 0;
        if (enabledRules != null) {
            ruleCount = enabledRules.size();
        }
        // Average number of rule that's to be allocate into each instance
        int count = ruleCount / latestEngineInsNum;
        // The number of remaining rules (to be allocated) after each instance has been allocated with the average number of rules.
        int remainder = ruleCount % latestEngineInsNum;

        List<CorrelationRule> ret = new ArrayList<>();
        for (String ip : existingEngineIps) {
            List<CorrelationRule> rules = ruleQueryWrapper.queryRuleByEngineInstance(ip);
            List<CorrelationRule> tmp = rules.subList(count + (remainder-- / existingEngineIps.size()), rules.size());
            ret.addAll(tmp);
        }
        return ret;
    }

    // Rules that need to be allocated after the engine is destroyed
    private List<CorrelationRule> getRules(List<String> destroyIpList) throws CorrelationException {
        List<CorrelationRule> rules = new ArrayList<>();
        try {
            if (destroyIpList != null) {
                for (String ip : destroyIpList) {
                    rules.addAll(ruleQueryWrapper.queryRuleByEngineInstance(ip));
                }
            }
        } catch (CorrelationException e) {
            LOGGER.error("method getRules get data from DB failed !", e);
        }
        return rules;
    }

    // Extended IP
    private List<String> sortOutNewEngineInstances(List<String> newIps, List<String> oldIps) {
        List<String> ret = new ArrayList<>();

        for (String ip : newIps) {
            if (!oldIps.contains(ip)) {
                ret.add(ip);
            }
        }
        return ret;
    }

    // Destroyed IP
    private List<String> getDestroyedEngines(List<String> latest, List<String> existing) {
        List<String> ret = new ArrayList<>();
        for (String ip : existing) {
            if (!latest.contains(ip)) {
                ret.add(ip);
            }
        }
        return ret;
    }

    // Residual IP after destruction
    private List<String> getRemainingEngines(List<String> all, List<String> destroyed) {
        List<String> ret = new ArrayList<>();
        for (String ip : all) {
            if (!destroyed.contains(ip)) {
                ret.add(ip);
            }
        }
        return ret;
    }

    private void distributeRules(List<String> instanceIps, List<CorrelationRule> rules) throws CorrelationException {
        List<String> sortedIps = sortIpByRuleNumDesc(instanceIps);

        for (int i = 0, j = 0; j < rules.size(); i++, j++) {
            int index = i % sortedIps.size();
            String ip = sortedIps.get(index);
            CorrelationRule rule = rules.get(j);
            rule.setEngineInstance(ip);
            allocateRule(rule, ip);
        }
    }

    // Sorted by the number of rules each engine contains, in a descending order.
    private List<String> sortIpByRuleNumDesc(List<String> ips) {
        List<CorrelationRule> rules;
        Map<String, Integer> ruleNumOfEngines = new HashMap();

        try {
            for (String ip : ips) {
                rules = ruleQueryWrapper.queryRuleByEngineInstance(ip);
                if (rules != null) {
                    ruleNumOfEngines.put(ip, rules.size());
                }
            }
        } catch (Exception e) {
            LOGGER.error("getEngineWithLeastRules failed !", e);
        }

        List<Map.Entry<String, Integer>> sortedEntries = new ArrayList<>(ruleNumOfEngines.entrySet());
        Collections.sort(sortedEntries, (o1, o2) -> o2.getValue() - o1.getValue());

        List<String> ret = new ArrayList<>();
        for (Map.Entry<String, Integer> entry : sortedEntries) {
            ret.add(entry.getKey());
        }
        return ret;
    }

    private void allocateRule(CorrelationRule rule, String ip) throws CorrelationException {
        // Retry for a couple of times in case of deployment failure
        // due to unfinished initialization procedures of engine instances.
        for (int i = 0; i <= RETRY_TIMES; ++i) {
            try {
                ruleMgtWrapper.deployRule2Engine(rule, ip);
                correlationRuleDao.updateRule(rule);
                // If the codes reach here, it means everything's okay. There's no need to run the loop more.
                break;
            } catch (CorrelationException e) {
                LOGGER.warn(String.format("Failed to allocate rule <%s> to <%s>. Retry: %d.",
                        rule.getName(), ip, i), e);
                if (i == RETRY_TIMES) {
                    throw new CorrelationException(String.format("Failed to allocate rule <%s> to <%s>",
                            rule.getName(), ip), e);
                }
                try {
                    SECONDS.sleep(RETRY_INTERVAL_SEC * (i + 1));
                } catch (InterruptedException interruptedException) {
                    LOGGER.info(interruptedException.getMessage(), interruptedException);
                }
            }
        }
    }

    private void cleanUpRulesFromEngines(List<CorrelationRule> rules, List<String> ipList) {
        try {
            for (String ip : ipList) {
                for (CorrelationRule rule : rules) {
                    if (ip.equals(rule.getEngineInstance())) {
                        engineWrapper.deleteRuleFromEngine(rule.getPackageName(), ip);
                    }
                }
            }
        } catch (CorrelationException e) {
            LOGGER.error("When the engine is extended, deleting rule failed", e);
        }
    }
}