aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2010-03-29 16:17:55 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2010-03-29 16:17:55 -0700
commitdf29d0ea4c8b7137fdd1844219c7d489e3b0d9c9 (patch)
tree3f925c0d109b789ce845762a9e09d24329749eb8 /README
downloadspark-df29d0ea4c8b7137fdd1844219c7d489e3b0d9c9.tar.gz
spark-df29d0ea4c8b7137fdd1844219c7d489e3b0d9c9.tar.bz2
spark-df29d0ea4c8b7137fdd1844219c7d489e3b0d9c9.zip
Initial commit
Diffstat (limited to 'README')
-rw-r--r--README16
1 files changed, 16 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000000..3982d4bb61
--- /dev/null
+++ b/README
@@ -0,0 +1,16 @@
+Spark requires Scala 2.7.7. It will currently not work with 2.8, or with
+earlier versions of the 2.7 branch.
+
+To build and run Spark, you will need to have Scala's bin in your $PATH,
+or you will need to set the SCALA_HOME environment variable to point
+to where you've installed Scala. Scala must be accessible through one
+of these methods on Nexus slave nodes as well as on the master.
+
+To build Spark and the example programs, run make.
+
+To run one of the examples, use ./run <class> <params>. For example,
+./run SparkLR will run the Logistic Regression example. Each of the
+example programs prints usage help if no params are given.
+
+Tip: If you are building Spark and examples repeatedly, export USE_FSC=1
+to have the Makefile use the fsc compiler daemon instead of scalac.