Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does stopping Standalone Spark master fail with "no org.apache.spark.deploy.master.Master to stop"?

Stopping standalone spark master fails with the following message:

$ ./sbin/stop-master.sh 
no org.apache.spark.deploy.master.Master to stop

Why? There is one Spark Standalone master up and running.

like image 731
AravindR Avatar asked Sep 19 '25 19:09

AravindR


1 Answers

Spark master was started under different user.

/tmp/Spark-ec2-user-org.apache.spark.deploy.master.Master-1.pid

Was not accessible.Had to login under different user who actually started the stand alone cluster manager master.

like image 89
AravindR Avatar answered Sep 23 '25 06:09

AravindR