I'm an Upstart newbie (and a Spark newbie for that matter),
I've been able to start a spark standalone server using:
./spark-1.5.2-bin-hadoop2.4/sbin/start-master.sh
and I want this to start automatically every time the computer is turned on, I looked up Upstart and wrote this simple conf file:
description "satrt a spark master with Upstart"
author "Ezer"
exec bash -c '/spark-1.5.2-bin-hadoop2.4/sbin/start-master start'
it does not work and I get the filling I'm missing something basic, any help will be appreciated.