-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathKubernetesAppDeployer.java
173 lines (148 loc) · 8 KB
/
KubernetesAppDeployer.java
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
package io.radanalytics.operator.app;
import io.fabric8.kubernetes.api.model.*;
import io.radanalytics.types.Deps;
import io.radanalytics.types.Executor;
import io.radanalytics.types.Driver;
import io.radanalytics.types.SparkApplication;
import java.util.*;
import java.util.stream.Collectors;
import static io.radanalytics.operator.Constants.getDefaultSparkAppImage;
import static io.radanalytics.operator.cluster.KubernetesSparkClusterDeployer.env;
import static io.radanalytics.operator.resource.LabelsHelper.OPERATOR_KIND_LABEL;
public class KubernetesAppDeployer {
private String entityName;
private String prefix;
KubernetesAppDeployer(String entityName, String prefix) {
this.entityName = entityName;
this.prefix = prefix;
}
public KubernetesResourceList getResourceList(SparkApplication app, String namespace) {
checkForInjectionVulnerabilities(app, namespace);
ReplicationController submitter = getSubmitterRc(app, namespace);
KubernetesList resources = new KubernetesListBuilder().withItems(submitter).build();
return resources;
}
private ReplicationController getSubmitterRc(SparkApplication app, String namespace) {
final String name = app.getName();
List<EnvVar> envVars = new ArrayList<>();
envVars.add(env("APPLICATION_NAME", name));
app.getEnv().forEach(kv -> envVars.add(env(kv.getName(), kv.getValue())));
final Driver driver = Optional.ofNullable(app.getDriver()).orElse(new Driver());
final Executor executor = Optional.ofNullable(app.getExecutor()).orElse(new Executor());
String imageRef = getDefaultSparkAppImage(); // from Constants
if (app.getImage() != null) {
imageRef = app.getImage();
}
StringBuilder command = new StringBuilder();
command.append("$SPARK_HOME/bin/spark-submit");
if (app.getMainClass() != null) {
command.append(" --class ").append(app.getMainClass());
}
command.append(" --master k8s://https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_SERVICE_PORT");
command.append(" --conf spark.kubernetes.namespace=").append(namespace);
command.append(" --deploy-mode ").append(app.getMode());
command.append(" --conf spark.app.name=").append(name);
command.append(" --conf spark.kubernetes.container.image=").append(imageRef);
command.append(" --conf spark.kubernetes.submission.waitAppCompletion=false");
command.append(" --conf spark.driver.cores=").append(driver.getCores());
command.append(" --conf spark.kubernetes.driver.limit.cores=").append(driver.getCoreLimit());
command.append(" --conf spark.kubernetes.executor.limit.cores=").append(executor.getCoreLimit());
command.append(" --conf spark.driver.memory=").append(driver.getMemory());
if (driver.getMemoryOverhead() != null) {
command.append(" --conf spark.driver.memoryOverhead=").append(driver.getMemoryOverhead());
}
command.append(" --conf spark.kubernetes.authenticate.driver.serviceAccountName=").append(driver.getServiceAccount());
command.append(" --conf spark.kubernetes.driver.label.version=2.3.0");
// common labels
final Map<String, String> labels = getLabelsForDeletion(name);
labels.put(prefix + entityName, name);
if (app.getLabels() != null) labels.putAll(app.getLabels());
labels.forEach((k, v) -> {
command.append(" --conf spark.kubernetes.driver.label.").append(k).append("=").append(v);
command.append(" --conf spark.kubernetes.executor.label.").append(k).append("=").append(v);
});
// driver labels
if (driver.getLabels() != null) {
driver.getLabels().forEach((k, v) ->
command.append(" --conf spark.kubernetes.driver.label.").append(k).append("=").append(v));
}
// executor labels
if (executor.getLabels() != null) {
executor.getLabels().forEach((k, v) ->
command.append(" --conf spark.kubernetes.executor.label.").append(k).append("=").append(v));
}
// env
envVars.forEach(e -> {
command.append(" --conf spark.kubernetes.driverEnv.").append(e.getName()).append("=").append(e.getValue());
command.append(" --conf spark.executorEnv.").append(e.getName()).append("=").append(e.getValue());
});
command.append(" --conf spark.executor.instances=").append(executor.getInstances());
command.append(" --conf spark.executor.cores=").append(executor.getCores());
command.append(" --conf spark.executor.memory=").append(executor.getMemory());
if (executor.getMemoryOverhead() != null) {
command.append(" --conf spark.executor.memoryOverhead=").append(executor.getMemoryOverhead());
}
// deps
if (app.getDeps() != null) {
Deps deps = app.getDeps();
if (deps.getPyFiles() != null && !deps.getPyFiles().isEmpty()) {
command.append(" --py-files ").append(deps.getPyFiles().stream().collect(Collectors.joining(",")));
}
if (deps.getJars() != null && !deps.getJars().isEmpty()) {
command.append(" --jars ").append(deps.getJars().stream().collect(Collectors.joining(",")));
}
if (deps.getFiles() != null && !deps.getFiles().isEmpty()) {
command.append(" --files ").append(deps.getFiles().stream().collect(Collectors.joining(",")));
}
}
command.append(" --conf spark.jars.ivy=/tmp/.ivy2");
// todo: check all the prerequisites
if (app.getMainApplicationFile() == null) {
throw new IllegalStateException("mainApplicationFile must be specified");
}
command.append(" ").append(app.getMainApplicationFile());
if (app.getArguments() != null && !app.getArguments().trim().isEmpty()) {
command.append(" ").append(app.getArguments());
}
if (app.getSleep() > 0) {
command.append(" && echo -e '\\n\\ntask/pod will be rescheduled in ").append(app.getSleep()).append(" seconds..'");
command.append(" && sleep ").append(app.getSleep());
}
final String cmd = "echo -e '\\ncmd:\\n" + command.toString().replaceAll("'", "").replaceAll("--", "\\\\n--") + "\\n\\n' && " + command.toString();
ContainerBuilder containerBuilder = new ContainerBuilder()
.withEnv(envVars)
.withImage(imageRef)
.withImagePullPolicy(app.getImagePullPolicy().value())
.withName(name + "-submitter")
.withTerminationMessagePath("/dev/termination-log")
.withTerminationMessagePolicy("File")
.withCommand("/bin/sh", "-c")
.withArgs(cmd);
ReplicationController rc = new ReplicationControllerBuilder().withNewMetadata()
.withName(name + "-submitter").withLabels(getDefaultLabels(name))
.endMetadata()
.withNewSpec().withReplicas(1)
.withSelector(getDefaultLabels(name))
.withNewTemplate().withNewMetadata().withLabels(getDefaultLabels(name)).withName(name + "-submitter")
.endMetadata()
.withNewSpec()
.withContainers(containerBuilder.build())
.withServiceAccountName(driver.getServiceAccount())
.endSpec().endTemplate().endSpec().build();
return rc;
}
public Map<String, String> getDefaultLabels(String name) {
Map<String, String> map = new HashMap<>(3);
map.put(prefix + OPERATOR_KIND_LABEL, entityName);
map.put(prefix + entityName, name);
return map;
}
public Map<String, String> getLabelsForDeletion(String name) {
Map<String, String> map = new HashMap<>(2);
map.put(prefix + entityName, name);
return map;
}
private void checkForInjectionVulnerabilities(SparkApplication app, String namespace) {
//todo: this
}
}