spark-submit does not terminate driver when process terminates on Kubernetes
I am using Spark (2.4.0) on Kubernetes, if I run the following from a pod:
$SPARK_HOME/bin/spark-submit
--master k8s://https://master-node
--deploy-mode cluster
--name spark-pi
--class org.apache.spark.examples.SparkPi
--conf spark.executor.instances=1
--conf spark.executor.cores=1
--conf spark.kubernetes.container.image=container-image
local:///opt/spark/examples/jars/spark-examples_2.11-2.4.0.jar 1000000
and exit the process with ctrl+c, the application (driver/executors) keeps running. This is an issue that I have with streaming jobs, when the client pod terminates, the application keeps running.
apache-spark

add a comment |
I am using Spark (2.4.0) on Kubernetes, if I run the following from a pod:
$SPARK_HOME/bin/spark-submit
--master k8s://https://master-node
--deploy-mode cluster
--name spark-pi
--class org.apache.spark.examples.SparkPi
--conf spark.executor.instances=1
--conf spark.executor.cores=1
--conf spark.kubernetes.container.image=container-image
local:///opt/spark/examples/jars/spark-examples_2.11-2.4.0.jar 1000000
and exit the process with ctrl+c, the application (driver/executors) keeps running. This is an issue that I have with streaming jobs, when the client pod terminates, the application keeps running.
apache-spark

Consider giving the pods you are creating a label and then delete those pods w/ certain label withkubectl delete all -l foo=bar
, or use my operator where you can just delete the corresponding CustomResource or ConfigMap - github.com/radanalyticsio/spark-operator
– Jiri Kremser
Jan 9 at 12:30
add a comment |
I am using Spark (2.4.0) on Kubernetes, if I run the following from a pod:
$SPARK_HOME/bin/spark-submit
--master k8s://https://master-node
--deploy-mode cluster
--name spark-pi
--class org.apache.spark.examples.SparkPi
--conf spark.executor.instances=1
--conf spark.executor.cores=1
--conf spark.kubernetes.container.image=container-image
local:///opt/spark/examples/jars/spark-examples_2.11-2.4.0.jar 1000000
and exit the process with ctrl+c, the application (driver/executors) keeps running. This is an issue that I have with streaming jobs, when the client pod terminates, the application keeps running.
apache-spark

I am using Spark (2.4.0) on Kubernetes, if I run the following from a pod:
$SPARK_HOME/bin/spark-submit
--master k8s://https://master-node
--deploy-mode cluster
--name spark-pi
--class org.apache.spark.examples.SparkPi
--conf spark.executor.instances=1
--conf spark.executor.cores=1
--conf spark.kubernetes.container.image=container-image
local:///opt/spark/examples/jars/spark-examples_2.11-2.4.0.jar 1000000
and exit the process with ctrl+c, the application (driver/executors) keeps running. This is an issue that I have with streaming jobs, when the client pod terminates, the application keeps running.
apache-spark

apache-spark

asked Jan 1 at 16:59
jambortajamborta
2,79142139
2,79142139
Consider giving the pods you are creating a label and then delete those pods w/ certain label withkubectl delete all -l foo=bar
, or use my operator where you can just delete the corresponding CustomResource or ConfigMap - github.com/radanalyticsio/spark-operator
– Jiri Kremser
Jan 9 at 12:30
add a comment |
Consider giving the pods you are creating a label and then delete those pods w/ certain label withkubectl delete all -l foo=bar
, or use my operator where you can just delete the corresponding CustomResource or ConfigMap - github.com/radanalyticsio/spark-operator
– Jiri Kremser
Jan 9 at 12:30
Consider giving the pods you are creating a label and then delete those pods w/ certain label with
kubectl delete all -l foo=bar
, or use my operator where you can just delete the corresponding CustomResource or ConfigMap - github.com/radanalyticsio/spark-operator– Jiri Kremser
Jan 9 at 12:30
Consider giving the pods you are creating a label and then delete those pods w/ certain label with
kubectl delete all -l foo=bar
, or use my operator where you can just delete the corresponding CustomResource or ConfigMap - github.com/radanalyticsio/spark-operator– Jiri Kremser
Jan 9 at 12:30
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53997296%2fspark-submit-does-not-terminate-driver-when-process-terminates-on-kubernetes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53997296%2fspark-submit-does-not-terminate-driver-when-process-terminates-on-kubernetes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Consider giving the pods you are creating a label and then delete those pods w/ certain label with
kubectl delete all -l foo=bar
, or use my operator where you can just delete the corresponding CustomResource or ConfigMap - github.com/radanalyticsio/spark-operator– Jiri Kremser
Jan 9 at 12:30