aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/status/HostInfosCache.java
blob: 8c51607dd84c42e7d9b0e1535ee8b71c7f70ea16 (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
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.status;

import com.yahoo.path.Path;
import com.yahoo.vespa.applicationmodel.ApplicationInstanceReference;
import com.yahoo.vespa.applicationmodel.HostName;
import com.yahoo.vespa.curator.Curator;
import com.yahoo.vespa.curator.recipes.CuratorCounter;

import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicLong;

/**
 * @author hakonhall
 */
public class HostInfosCache implements HostInfosService {
    final static Path HOST_STATUS_CACHE_COUNTER_PATH = Path.fromString("/vespa/host-status-service-cache-counter");

    private final CuratorCounter counter;
    private final HostInfosService wrappedService;

    private final AtomicLong cacheGeneration;
    private final Map<ApplicationInstanceReference, HostInfos> suspendedHosts = new ConcurrentHashMap<>();

    HostInfosCache(Curator curator, HostInfosService wrappedService) {
        this.counter = new CuratorCounter(curator, HOST_STATUS_CACHE_COUNTER_PATH);
        this.wrappedService = wrappedService;
        this.cacheGeneration = new AtomicLong(counter.get());
    }

    public void refreshCache() {
        long newCacheGeneration = counter.get();
        if (cacheGeneration.getAndSet(newCacheGeneration) != newCacheGeneration) {
            suspendedHosts.clear();
        }
    }

    public HostInfos getCachedHostInfos(ApplicationInstanceReference reference) {
        return suspendedHosts.computeIfAbsent(reference, wrappedService::getHostInfos);
    }

    @Override
    public HostInfos getHostInfos(ApplicationInstanceReference reference) {
        refreshCache();
        return getCachedHostInfos(reference);
    }

    @Override
    public boolean setHostStatus(ApplicationInstanceReference reference, HostName hostName, HostStatus hostStatus) {
        boolean isException = true;
        boolean modified = false;
        try {
            modified = wrappedService.setHostStatus(reference, hostName, hostStatus);
            isException = false;
        } finally {
            if (modified || isException) {
                // ensure the next get, on any config server, will repopulate the cache from zk.
                counter.next();
            }
        }

        return modified;
    }

    @Override
    public void removeApplication(ApplicationInstanceReference reference) {
        wrappedService.removeApplication(reference);
        suspendedHosts.remove(reference);
    }

    @Override
    public void removeHosts(ApplicationInstanceReference reference, Set<HostName> hostnames) {
        if (hostnames.size() > 0) {
            wrappedService.removeHosts(reference, hostnames);
            counter.next();
        }
    }
}