aboutsummaryrefslogtreecommitdiff
path: root/sbt
Commit message (Collapse)AuthorAgeFilesLines
* Merge the old sbt-launch-lib.bash with the new sbt-launcher jar downloading ↵Michael Armbrust2014-03-022-51/+280
| | | | | | | | | | | | logic. This allows developers to pass options (such as -D) to sbt. I also modified the SparkBuild to ensure spark specific properties are propagated to forked test JVMs. Author: Michael Armbrust <michael@databricks.com> Closes #14 from marmbrus/sbtScripts and squashes the following commits: c008b18 [Michael Armbrust] Merge the old sbt-launch-lib.bash with the new sbt-launcher jar downloading logic.
* Merge pull request #454 from jey/atomic-sbt-download. Closes #454.Jey Kottalam2014-02-081-2/+3
| | | | | | | | | | | | | | | | Make sbt download an atomic operation Modifies the `sbt/sbt` script to gracefully recover when a previous invocation died in the middle of downloading the SBT jar. Author: Jey Kottalam <jey@cs.berkeley.edu> == Merge branch commits == commit 6c600eb434a2f3e7d70b67831aeebde9b5c0f43b Author: Jey Kottalam <jey@cs.berkeley.edu> Date: Fri Jan 17 10:43:54 2014 -0800 Make sbt download an atomic operation
* Small typo fixPatrick Wendell2014-01-091-1/+1
|
* Don't delegate to users `sbt`.Patrick Wendell2014-01-081-31/+20
| | | | | | | | | | | | | | | | | | | | | | | | This changes our `sbt/sbt` script to not delegate to the user's `sbt` even if it is present. If users already have sbt installed and they want to use their own sbt, we'd expect them to just call sbt directly from within Spark. We no longer set any enironment variables or anything from this script, so they should just launch sbt directly on their own. There are a number of hard-to-debug issues which can come from the current appraoch. One is if the user is unaware of an existing sbt installation and now without explanation their build breaks because they haven't configured options correctly (such as permgen size) within their sbt. Another is if the user has a much older version of sbt hanging around, in which case some of the older versions don't acutally work well when newer verisons of sbt are specified in the build file (reported by @marmbrus). A third is if the user has done some other modification to their sbt script, such as setting it to delegate to sbt/sbt in Spark, and this causes that to break (also reported by @marmbrus). So to keep things simple let's just avoid this path and remove it. Any user who already has sbt and wants to build spark with it should be able to understand easily how to do it.
* Add ASF header to the new sbt script.Henry Saputra2014-01-071-0/+18
|
* Use awk to extract the versionHolden Karau2014-01-061-1/+1
|
* Put quote arround arguments passed down to system sbtHolden Karau2014-01-061-1/+1
|
* CR feedback (sbt -> sbt/sbt and correct JAR path in script) :)Holden Karau2014-01-051-1/+1
|
* Fix indentatationHolden Karau2014-01-051-16/+16
|
* Code review feedbackHolden Karau2014-01-051-9/+4
|
* reindentHolden Karau2014-01-041-31/+31
|
* And update docs to matchHolden Karau2014-01-041-1/+1
|
* Make sbt in the sbt directoryHolden Karau2014-01-041-0/+0
|
* SpellingHolden Karau2014-01-041-1/+1
|
* Pass commands down to system sbt as wellHolden Karau2014-01-041-1/+1
|
* Add a script to download sbt if not present on the systemHolden Karau2014-01-041-0/+48
|
* Removed sbt folder and changed docs accordinglyPrashant Sharma2014-01-023-68/+0
|
* Fix Cygwin support in several scripts.Josh Rosen2013-12-151-3/+18
| | | | | | | | | This allows the spark-shell, spark-class, run-example, make-distribution.sh, and ./bin/start-* scripts to work under Cygwin. Note that this doesn't support PySpark under Cygwin, since that requires many additional `cygpath` calls from within Python and will be non-trivial to implement. This PR was inspired by, and subsumes, #253 (so close #253 after this is merged).
* Run script fixes for Windows after package & assembly changeMatei Zaharia2013-09-011-1/+1
|
* Fix finding of assembly JAR, as well as some pointers to ./runMatei Zaharia2013-08-291-1/+1
|
* Pass SBT_OPTS environment through to sbt_launcherIan Buss2013-08-231-1/+1
|
* Increase ReservedCodeCacheSize to 256mJey Kottalam2013-08-211-1/+1
|
* Revert "Allow build configuration to be set in conf/spark-env.sh"Jey Kottalam2013-08-211-9/+6
| | | | This reverts commit 66e7a38a3229eeb6d980193048ebebcda1522acb.
* Allow build configuration to be set in conf/spark-env.shJey Kottalam2013-08-211-6/+9
|
* Merge pull request #714 from adatao/masterMatei Zaharia2013-07-181-1/+1
|\ | | | | [BUGFIX] Fix for sbt/sbt script SPARK_HOME setting
| * [BUGFIX] Fix for sbt/sbt script SPARK_HOME settingctn2013-07-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some environments, this command export SPARK_HOME=$(cd "$(dirname $0)/.."; pwd) echoes two paths, one by the "cd ..", and one by the "pwd". Note the resulting erroneous -jar paths below: ctn@ubuntu:~/src/spark$ sbt/sbt + EXTRA_ARGS= + '[' '' '!=' '' ']' +++ dirname sbt/sbt ++ cd sbt/.. ++ pwd + export 'SPARK_HOME=/home/ctn/src/spark /home/ctn/src/spark' + SPARK_HOME='/home/ctn/src/spark /home/ctn/src/spark' + export SPARK_TESTING=1 + SPARK_TESTING=1 + java -Xmx1200m -XX:MaxPermSize=350m -XX:ReservedCodeCacheSize=128m -jar /home/ctn/src/spark /home/ctn/src/spark/sbt/sbt-launch-0.11.3-2.jar Error: Invalid or corrupt jarfile /home/ctn/src/spark Committer: ctn <ctn@adatao.com> On branch master Changes to be committed: - Send output of the "cd .." part to /dev/null modified: sbt/sbt
* | Consistently invoke bash with /usr/bin/env bash in scripts to make code more ↵Ubuntu2013-07-181-1/+1
|/ | | | portable (JIRA Ticket SPARK-817)
* Add Apache license headers and LICENSE and NOTICE filesMatei Zaharia2013-07-162-0/+40
|
* Increase PermGen sizeMatei Zaharia2013-07-131-1/+1
|
* Increase ReservedCodeCacheSize for sbtJey Kottalam2013-04-161-1/+1
|
* Update Windows scripts to launch daemons with less RAM and fix a fewMatei Zaharia2013-02-101-1/+1
| | | | | | | other issues Conflicts: run2.cmd
* Track workers by executor ID instead of hostname to allow multipleMatei Zaharia2013-01-271-1/+1
| | | | | executors per machine and remove the need for multiple IP addresses in unit tests.
* Made run script add test-classes onto the classpath only if SPARK_TESTING is ↵root2012-10-071-0/+1
| | | | set; fixes #216
* Echo offRavi Pandya2012-09-241-1/+1
|
* Windows command scripts for sbt and runRavi Pandya2012-09-241-0/+5
|
* Merge branch 'dev' of github.com:mesos/spark into devMatei Zaharia2012-06-151-1/+1
|\
| * Added shutdown for akka to SparkContext.stop(). Helps a little, but many ↵Tathagata Das2012-06-131-1/+1
| | | | | | | | testsuites still fail.
* | Update SBT to version 0.11.3-2.Matei Zaharia2012-06-072-0/+0
|/
* Update to SBT 0.11.1Matei Zaharia2011-11-071-0/+0
|
* Upgrade to SBT 0.11.0.Ismael Juma2011-09-262-0/+0
|
* Initial work on converting build to SBT 0.10.1Ismael Juma2011-07-152-0/+0
|
* Give SBT a bit more memory so it can do a update / compile / test in one JVMMatei Zaharia2011-05-311-1/+1
|
* Various minor fixesMatei Zaharia2011-05-191-1/+6
|
* Upgraded to SBT 0.7.5Matei Zaharia2011-05-091-0/+0
|
* Increased SBT mem to 700 MB so that unit tests run more nicelyMatei Zaharia2011-02-081-1/+1
|
* Initial work to get Spark compiling with SBT 0.7.5 RC0Matei Zaharia2010-11-132-0/+2