aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/DeployMojo.java
blob: 7deffd37a798aeab79154ee32673c4f6419b4b9b (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
81
82
83
84
85
86
87
88
89
90
91
package ai.vespa.hosted.plugin;

import ai.vespa.hosted.api.Deployment;
import ai.vespa.hosted.api.DeploymentLog;
import ai.vespa.hosted.api.DeploymentResult;
import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.zone.ZoneId;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;

import java.nio.file.Paths;
import java.time.ZoneOffset;
import java.time.format.DateTimeFormatter;

/**
 * Deploys a Vespa application package to the hosted Vespa API.
 *
 * @author jonmv
 */
@Mojo(name = "deploy")
public class DeployMojo extends AbstractVespaDeploymentMojo {

    @Parameter(property = "applicationZip")
    private String applicationZip;

    @Parameter(property = "vespaVersion")
    private String vespaVersion;

    @Parameter(property = "follow", defaultValue = "true")
    private boolean follow;

    @Override
    protected void doExecute() throws MojoFailureException, MojoExecutionException {
        Deployment deployment = Deployment.ofPackage(Paths.get(firstNonBlank(applicationZip,
                                                                             projectPathOf("target", "application.zip"))));
        if (vespaVersion != null) deployment = deployment.atVersion(vespaVersion);

        ZoneId zone = zoneOf(environment, region);
        DeploymentResult result = controller.deploy(deployment, id, zone);
        getLog().info(result.message());

        if (follow) tailLogs(id, zone, result.run());
    }

    private void tailLogs(ApplicationId id, ZoneId zone, long run) throws MojoFailureException, MojoExecutionException {
        long last = -1;
        DeploymentLog log;
        while (true) {
            log = controller.deploymentLog(id, zone, run, last);
            for (DeploymentLog.Entry entry : log.entries())
                print(entry);
            last = log.last().orElse(last);

            if ( ! log.isActive())
                break;

            try {
                Thread.sleep(1000);
            }
            catch (InterruptedException e) {
                Thread.currentThread().interrupt();
                break;
            }
        }
        switch (log.status()) {
            case success:            return;
            case error:              throw new MojoExecutionException("Unexpected error during deployment; see log for details");
            case aborted:            throw new MojoFailureException("Deployment was aborted, probably by a newer deployment");
            case outOfCapacity:      throw new MojoFailureException("No capacity left in zone; please contact the Vespa team");
            case deploymentFailed:   throw new MojoFailureException("Deployment failed; see log for details");
            case installationFailed: throw new MojoFailureException("Installation failed; see Vespa log for details");
            case running:            throw new MojoFailureException("Deployment not completed");
            case testFailure:        throw new IllegalStateException("Unexpected status; tests are not run for manual deployments");
            default:                 throw new IllegalArgumentException("Unexpected status '" + log.status() + "'");
        }
    }

    private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss").withZone(ZoneOffset.UTC);

    private void print(DeploymentLog.Entry entry) {
        String timestamp = formatter.format(entry.at());
        switch (entry.level()) {
            case "warning" : getLog().warn(" [" + timestamp + "]  " + entry.message()); break;
            case "error" : getLog().error("[" + timestamp + "]  " + entry.message()); break;
            default: getLog().info(" [" + timestamp + "]  " + entry.message()); break;
        }
    }

}