aboutsummaryrefslogtreecommitdiff
path: root/project
Commit message (Collapse)AuthorAgeFilesLines
...
* Add note about why we can't enable -deprecation switch.Ismael Juma2011-08-021-1/+1
|
* Merge branch 'scala-2.9'Matei Zaharia2011-08-012-2/+3
|\
| * Add publishTo configuration that publishes to target directory.Ismael Juma2011-07-311-0/+1
| | | | | | | | | | Until Spark is available in a Maven repository, this makes it easy to deploy to e.g. GitHub pages by copying target/maven to the repository.
| * Add type annotation to result of depJarSettings to workaround scalac bug.Ismael Juma2011-07-311-2/+2
| |
* | Merge branch 'scala-2.9'Matei Zaharia2011-08-017-126/+182
|\| | | | | | | | | Conflicts: project/build/SparkProject.scala
| * Add and configure junit_xml_listener as a replacement for XmlTestReport.Ismael Juma2011-07-212-25/+8
| |
| * Introduce DepJarPlugin based on AssemblyPlugin and use it in SparkBuild.Ismael Juma2011-07-183-36/+116
| |
| * Update sbt-idea to non-snapshot version and uncomment sbt-assembly dependency.Ismael Juma2011-07-181-5/+4
| |
| * Update test dependencies.Ismael Juma2011-07-181-2/+2
| |
| * Fix copy & paste error in version.Ismael Juma2011-07-181-1/+1
| |
| * Initial work on converting build to SBT 0.10.1Ismael Juma2011-07-155-124/+118
| |
| * Merge branch 'master' into scala-2.9Matei Zaharia2011-07-141-1/+1
| |\ | | | | | | | | | | | | | | | Conflicts: project/build.properties repl/src/main/scala/spark/repl/SparkInterpreterLoop.scala
| * \ Merge branch 'master' into scala-2.90.3-scala-2.9Matei Zaharia2011-07-141-1/+1
| |\ \ | | | | | | | | | | | | | | | | Conflicts: project/build.properties
| * \ \ Merge remote-tracking branch 'origin/master' into scala-2.9Matei Zaharia2011-06-071-1/+1
| |\ \ \
| * | | | Upgrade to scalacheck 1.9.Ismael Juma2011-05-311-1/+1
| | | | |
| * | | | Merge branch 'master' into scala-2.9Matei Zaharia2011-05-311-10/+6
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: project/build/SparkProject.scala
| * | | | | Various work to use the 2.9 interpreterMatei Zaharia2011-05-311-1/+1
| | | | | |
| * | | | | Update to Scala 2.9.0-1 and disable repl module for now.Ismael Juma2011-05-272-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | The repl module requires more complex work.
* | | | | | Various improvements to Kryo serializer:Matei Zaharia2011-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Replaced modified Kryo version with the standard one augmented with the kryo-serializers package, which includes support for classes with no-arg constructors (that was why we had a modified Kryo before) - The kryo-serializers version also fixes issue #72. - Added a bunch of tests. - Serialize maps and a few other common types properly by default.
* | | | | | Merge branch 'new-rdds-protobuf'Matei Zaharia2011-07-211-0/+1
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/Executor.scala core/src/main/scala/spark/RDD.scala
| * | | | | Various fixesMatei Zaharia2011-05-291-0/+1
| | |/ / / | |/| | |
* | | | | Update version number to 0.4-SNAPSHOTMatei Zaharia2011-07-141-1/+1
| |_|_|/ |/| | |
* | | | Change version to 0.30.3-scala-2.8Matei Zaharia2011-07-141-1/+1
| | | |
* | | | Simplified parallel shuffle fetcher to use URLConnectionMatei Zaharia2011-07-111-1/+0
| | | |
* | | | Added parallel shuffle fetcherMatei Zaharia2011-07-091-2/+1
| |_|/ |/| |
* | | Move managedStyle to SparkProject.Ismael Juma2011-06-021-1/+1
|/ / | | | | | | I had added it to DepJar by mistake.
* / Depend on jetty-server in compile scope and upgrade to 7.4.2.Ismael Juma2011-05-291-8/+6
|/ | | | | As Matei described: "We're using Jetty to run an HTTP server, not to embed Spark in a webapp"
* Use ManagedStyle.Maven.Ismael Juma2011-05-271-0/+1
|
* Publish javadoc and sources.Ismael Juma2011-05-271-1/+6
|
* Update sbt to 0.7.7.Ismael Juma2011-05-271-1/+1
|
* Move REPL classes to separate module.Ismael Juma2011-05-271-0/+6
|
* Change project.organization to org.spark-project to fit Maven convention.Ismael Juma2011-05-271-2/+2
|
* Set project.version to 0.3-SNAPSHOT.Ismael Juma2011-05-271-1/+1
|
* Remove several dependencies from git and configure them as SBT managed ↵Ismael Juma2011-05-271-3/+21
| | | | | | dependencies. Upgrade some of the dependencies while at it.
* Use explicit asInstanceOf instead of misleading unchecked pattern matching.Ismael Juma2011-05-271-14/+11
| | | | Also enable -unchecked warnings in SBT build file.
* Upgrade sbt-idea to 0.4.0.Ismael Juma2011-05-261-1/+1
|
* Merge pull request #48 from ankurdave/bagel-newMatei Zaharia2011-05-121-0/+6
|\ | | | | Bagel: Large-scale graph processing on Spark
| * Add Bagel test suiteAnkur Dave2011-05-031-1/+5
| | | | | | | | | | | | Note: This test suite currently fails for the same reason that the Spark Core test suite fails: Spark currently seems to have a bug where any test after the first one fails.
| * Add Bagel, an implementation of Pregel on SparkAnkur Dave2011-05-031-0/+2
| |
* | Upgraded to SBT 0.7.5Matei Zaharia2011-05-091-1/+1
|/
* Remove build.properties from version controlMatei Zaharia2011-02-091-3/+0
|
* Brought in some reorganization of build file from Hive branchMatei Zaharia2011-02-081-50/+54
|
* Added SBT target for building a single JAR with Spark Core and itsMatei Zaharia2011-02-023-11/+40
| | | | dependencies
* Merge branch 'master' into sbtMatei Zaharia2011-02-021-17/+3
| | | | | | | | | | Conflicts: Makefile core/src/main/java/spark/compress/lzf/LZF.java core/src/main/java/spark/compress/lzf/LZFInputStream.java core/src/main/java/spark/compress/lzf/LZFOutputStream.java core/src/main/native/spark_compress_lzf_LZF.c run
* Added support for IntelliJ IDEAMatei Zaharia2011-02-023-7/+18
|
* Made examples and core subprojectsMatei Zaharia2011-02-012-33/+39
|
* Further improvements -- build native stuff in target directory and add aMatei Zaharia2010-11-141-1/+41
| | | | test-report target for XML test reports
* Fixed some more stuff (Eclispe target and native build)Matei Zaharia2010-11-133-0/+14
|
* Initial work to get Spark compiling with SBT 0.7.5 RC0Matei Zaharia2010-11-131-0/+8