Yes, but I think at the moment there is still a dependency on Hadoop even when not using it. See https://issues.apache.org/jira/browse/SPARK-2356
On Thu, Aug 28, 2014 at 2:14 PM, Guru Medasani <gdm...@outlook.com> wrote: > Can you copy the exact spark-submit command that you are running? > > You should be able to run it locally without installing hadoop. > > Here is an example on how to run the job locally. > > # Run application locally on 8 cores > ./bin/spark-submit \ > --class org.apache.spark.examples.SparkPi \ > --master local[8] \ > /path/to/examples.jar \ > 100 > > >