From 0e6847fc13642fbde4058b550fa5a9d437a8cedd Mon Sep 17 00:00:00 2001 From: Andrew Audibert Date: Tue, 12 Feb 2019 16:27:14 -0800 Subject: [PATCH] Stop job and secondary_master processes before starting them (#8389) Previously we would stop most processes, but not secondary_master or job. This makes the behavior consistent across all processes --- bin/alluxio-start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/alluxio-start.sh b/bin/alluxio-start.sh index a48b073bfc49..1360240501e7 100755 --- a/bin/alluxio-start.sh +++ b/bin/alluxio-start.sh @@ -498,7 +498,7 @@ main() { if [[ "${killonstart}" != "no" ]]; then case "${ACTION}" in - all | local | master | masters | proxy | proxies | worker | workers | logserver) + all | local | master | masters | secondary_master | job_master | job_masters | proxy | proxies | worker | workers | job_worker | job_workers | logserver) stop ${ACTION} sleep 1 ;;