aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fixed navbar style problemDenny2012-09-132-2/+2
| | |
| * | Added standalone and YARN docs. Merged standalone cluster into standalone docDenny2012-09-134-41/+124
|/ /
| * Making the link to api scaladocs work and migrating other code snippetsAndy Konwinski2012-09-125-123/+175
| | | | | | | | to use pygments syntax highlighting.
| * Adds ec2-scripts.md back (it was mistakenly removed earlier due toAndy Konwinski2012-09-121-0/+146
|/ | | | git weirdness).
* Remove title from content in BagelMatei Zaharia2012-09-121-1/+0
|
* Small tweaks to generated doc pagesMatei Zaharia2012-09-126-151/+16
|
* Merge branch 'dev' of github.com:mesos/spark into devMatei Zaharia2012-09-1214-223/+200
|\
| * Merge pull request #198 from andyk/docMatei Zaharia2012-09-1214-223/+199
| |\ | | | | | | Fix links and make things a bit prettier.
| | * Merge remote-tracking branch 'public-spark/dev' into docAndy Konwinski2012-09-122-1/+2
| | |\ | | |/ | |/|
| * | Added a link to AMPCamp website in Spark docs.Reynold Xin2012-09-121-0/+1
| | |
| * | Changed block storage level for shuffle to DISK_ONLY.Reynold Xin2012-09-121-1/+1
| | |
| | * Adds syntax highlighting (via pygments), and some style tweaks to make thingsAndy Konwinski2012-09-126-31/+161
| | | | | | | | | | | | easier to read.
| | * Merge remote-tracking branch 'public-spark/dev' into docAndy Konwinski2012-09-1221-67/+176
| | |\ | | |/ | |/|
| | * Fixing a hanging sentence in docs/ec2-scripts.mdAndy Konwinski2012-09-121-1/+1
| | |
| | * Removed the upper-case version of docs/EC2-Scripts.md.Andy Konwinski2012-09-121-146/+0
| | |
| | * Fixing lots of broken links.Andy Konwinski2012-09-128-46/+38
| | |
* | | Store shuffle map outputs as DISK_ONLYMatei Zaharia2012-09-121-1/+1
|/ /
* | Ported performance and FT improvements from latest streaming workMatei Zaharia2012-09-1218-61/+153
| |
* | Fix bugs with Connection's shutdown callback failing to get its addressMatei Zaharia2012-09-122-6/+19
| |
* | Wait for Akka to really shut down in SparkEnv.stop()Matei Zaharia2012-09-121-0/+4
| |
* | Merge pull request #197 from andyk/docMatei Zaharia2012-09-1229-2/+10027
|\| | | | | Adds a "docs" directory containing existing Spark documentation and doc build instructions
| * Updated base README to point to documentation site instead of wiki, updatedAndy Konwinski2012-09-124-3/+162
| | | | | | | | | | docs/README.md to describe use of Jekyll, and renmaed things to make them more consistent with the lower-case-with-hyphens convention.
| * Adding docs directory containing documentation currently on the wikiAndy Konwinski2012-09-1226-0/+9866
|/ | | | | | which can be compiled via jekyll, using the command `jekyll`. To compile and run a local webserver to serve the doc as a website, run `jekyll --server`.
* Merge pull request #195 from dennybritz/feature/fileserverMatei Zaharia2012-09-1112-116/+414
|\ | | | | Spark HTTP FileServer
| * Merge branch 'dev' into feature/fileserverDenny2012-09-114-3/+61
| |\ | |/ |/| | | | | Conflicts: core/src/main/scala/spark/SparkContext.scala
* | Merge branch 'dev' of github.com:mesos/spark into devMatei Zaharia2012-09-111-1/+1
|\ \
| * \ Merge pull request #196 from rxin/devMatei Zaharia2012-09-111-1/+1
| |\ \ | | | | | | | | Log entire exception (including stack trace) in BlockManagerWorker.
| | * | Updated the logError call from the previous commit to conform toReynold Xin2012-09-111-1/+1
| | | | | | | | | | | | | | | | logError API.
| | * | Log entire exception (including stack trace) in BlockManagerWorker.Reynold Xin2012-09-111-1/+1
| |/ /
* / / Manually merge pull request #175 by Imran RashidMatei Zaharia2012-09-113-2/+60
|/ /
| * FormattingDenny2012-09-111-1/+2
| |
| * Subclass URLClassLoader instead of using reflectionDenny2012-09-111-10/+11
| |
| * Use stageId as index for fileSet caches.Denny2012-09-111-5/+7
| |
| * Fix serialization bugs and added local cluster testsDenny2012-09-103-4/+33
| |
| * Merge branch 'dev' of git://github.com/mesos/spark into feature/fileserverDenny2012-09-100-0/+0
| |\ | |/ |/|
* | Added a unit test for local-cluster mode and simplified some of the code ↵Matei Zaharia2012-09-078-48/+120
| | | | | | | | involved in that
* | Merge pull request #189 from dennybritz/feature/localclusterMatei Zaharia2012-09-074-1/+104
|\ \ | | | | | | Simulating a Spark standalone cluster locally
| * | Add shutdown hook to Executor Runner and execute code to shutdown local ↵Denny2012-09-074-14/+29
| | | | | | | | | | | | cluster in Scheduler Backend
| * | Set SPARK_LAUNCH_WITH_SCALA=0 in Executor RunnerDenny2012-09-072-3/+20
| | |
| * | Renamed spark-cluster to spark-local.Denny2012-09-052-2/+2
| | |
| * | Fix wrong countingDenny2012-09-041-1/+1
| | |
| * | Delete old DeployUtils.Denny2012-09-041-53/+0
| | |
| * | Renamed class.Denny2012-09-042-2/+63
| | |
| * | Start a standalone cluster locally.Denny2012-09-042-1/+64
| | |
| | * Dynamically adding jar files and caching fileSets.Denny2012-09-1010-114/+246
| | |
| | * General FileServerDenny2012-09-1010-71/+204
| | | | | | | | | | | | A general fileserver for both JARs and regular files.
| | * Added a unit test for local-cluster mode and simplified some of the code ↵Matei Zaharia2012-09-108-48/+120
| | | | | | | | | | | | involved in that
| | * Add shutdown hook to Executor Runner and execute code to shutdown local ↵Denny2012-09-104-14/+29
| | | | | | | | | | | | cluster in Scheduler Backend
| | * Set SPARK_LAUNCH_WITH_SCALA=0 in Executor RunnerDenny2012-09-102-3/+20
| | |
| | * Renamed spark-cluster to spark-local.Denny2012-09-102-2/+2
| | |