Building spark is easy
I was amazed how easy it is to build Spark on Windows. Just have to
1. Download and install Scala 2.9.2. Ensure your SCALA_HOME is accurately setup.
2. Also make sure you have javac available in your environment path.
3. Download spark (0.7.0). Spark uses sbt (simple build tool and it is shipped together with the code.
After you extracted spark source code, goto the root folder and run
And you're done! Awesome.
1. Download and install Scala 2.9.2. Ensure your SCALA_HOME is accurately setup.
2. Also make sure you have javac available in your environment path.
3. Download spark (0.7.0). Spark uses sbt (simple build tool and it is shipped together with the code.
After you extracted spark source code, goto the root folder and run
sbt/sbt package
And you're done! Awesome.
Comments