aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/filedistribution/FileDistributionImpl.java
blob: a9d7e4c736cb5db3943ab83a5650c577f75fa83d (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.filedistribution;

import com.yahoo.config.FileReference;
import com.yahoo.config.model.api.FileDistribution;
import com.yahoo.jrt.Request;
import com.yahoo.jrt.RequestWaiter;
import com.yahoo.jrt.Spec;
import com.yahoo.jrt.StringArray;
import com.yahoo.jrt.Supervisor;
import com.yahoo.jrt.Target;

import java.time.Duration;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * @author baldersheim
 */
public class FileDistributionImpl implements FileDistribution, RequestWaiter {

    private final static Logger log = Logger.getLogger(FileDistributionImpl.class.getName());
    private final static Duration rpcTimeout = Duration.ofSeconds(1);

    private final Supervisor supervisor;

    public FileDistributionImpl(Supervisor supervisor) {
        this.supervisor = supervisor;
    }

    /**
     * Notifies client which file references it should start downloading. It's OK if the call does not succeed,
     * as this is just a hint to the client to start downloading. Currently the only client is the config server
     *
     * @param hostName       host which should be notified about file references to download
     * @param port           port which should be used when notifying
     * @param fileReferences set of file references to start downloading
     */
    @Override
    public void startDownload(String hostName, int port, Set<FileReference> fileReferences) {
        Target target = supervisor.connect(new Spec(hostName, port));
        Request request = new Request("filedistribution.setFileReferencesToDownload");
        request.setContext(target);
        request.parameters().add(new StringArray(fileReferences.stream().map(FileReference::value).toArray(String[]::new)));
        log.log(Level.FINE, () -> "Executing " + request.methodName() + " against " + target);
        target.invokeAsync(request, rpcTimeout, this);
    }

    @Override
    public void handleRequestDone(Request req) {
        Target target = (Target) req.getContext();
        if (req.isError()) {
            log.log(Level.FINE, () -> req.methodName() + " failed for " + target + ": " + req.errorCode() + " (" + req.errorMessage() + ")");
        }
        if (target != null) target.close();
    }

}