aboutsummaryrefslogtreecommitdiff
path: root/core/src/main
Commit message (Collapse)AuthorAgeFilesLines
* Rename "jobs" to "applications" in the standalone clusterMatei Zaharia2013-02-1731-286/+290
|
* Renamed "splits" to "partitions"Matei Zaharia2013-02-1739-295/+305
|
* Merge pull request #471 from stephenh/parallelrddMatei Zaharia2013-02-162-14/+9
|\ | | | | Move ParallelCollection into spark.rdd package.
| * Move ParallelCollection into spark.rdd package.Stephen Haberman2013-02-162-14/+9
| |
* | Merge pull request #470 from stephenh/morekMatei Zaharia2013-02-162-6/+6
|\ \ | | | | | | Make CoGroupedRDDs explicitly have the same key type.
| * | Make CoGroupedRDDs explicitly have the same key type.Stephen Haberman2013-02-162-6/+6
| |/
* | Add assertion about dependencies.Stephen Haberman2013-02-161-1/+1
| |
* | Avoid a shuffle if combineByKey is passed the same partitioner.Stephen Haberman2013-02-161-1/+3
|/
* use appid instead of frameworkid; simplify stupid conditionImran Rashid2013-02-131-2/+2
|
* include jobid in Executor commandline argsImran Rashid2013-02-132-3/+4
|
* Merge pull request #465 from pwendell/java-sort-fixMatei Zaharia2013-02-111-1/+1
|\ | | | | SPARK-696: sortByKey should use 'ascending' parameter
| * SPARK-696: sortByKey should use 'ascending' parameterPatrick Wendell2013-02-111-1/+1
| |
* | Fixed an exponential recursion that could happen with doCheckpoint dueMatei Zaharia2013-02-111-4/+10
| | | | | | | | to lack of memoization
* | Some bug and formatting fixes to FTMatei Zaharia2013-02-105-16/+21
| | | | | | | | | | | | Conflicts: core/src/main/scala/spark/scheduler/cluster/SparkDeploySchedulerBackend.scala core/src/main/scala/spark/scheduler/cluster/StandaloneSchedulerBackend.scala
* | Detect hard crashes of workers using a heartbeat mechanism.root2013-02-108-7/+62
| | | | | | | | | | | | | | | | | | | | | | Also fixes some issues in the rest of the code with detecting workers this way. Conflicts: core/src/main/scala/spark/deploy/master/Master.scala core/src/main/scala/spark/deploy/worker/Worker.scala core/src/main/scala/spark/scheduler/cluster/SparkDeploySchedulerBackend.scala core/src/main/scala/spark/scheduler/cluster/StandaloneClusterMessage.scala core/src/main/scala/spark/scheduler/cluster/StandaloneSchedulerBackend.scala
* | Tweak web UI so that people don't get confused about master URL formatMatei Zaharia2013-02-105-11/+14
|/ | | | | | Conflicts: core/src/main/twirl/spark/deploy/master/index.scala.html core/src/main/twirl/spark/deploy/worker/index.scala.html
* Merge pull request #448 from squito/fetch_maxBytesInFlightMatei Zaharia2013-02-091-1/+1
|\ | | | | add as many fetch requests as we can, subject to maxBytesInFlight
| * add as many fetch requests as we can, subject to maxBytesInFlightImran Rashid2013-02-051-1/+1
| |
* | Merge pull request #452 from stephenh/miscMatei Zaharia2013-02-0924-92/+83
|\ \ | | | | | | Add RDD.coalesce, clean up some RDDs, other misc.
| * | Move JavaRDDLike.coalesce into the right places.Stephen Haberman2013-02-094-5/+15
| | |
| * | Fix JavaRDDLike.coalesce return type.Stephen Haberman2013-02-091-1/+1
| | |
| * | Add back return types.Stephen Haberman2013-02-0919-31/+35
| | |
| * | Remove RDD.coalesce default arguments.Stephen Haberman2013-02-092-7/+1
| | |
| * | Clean up RDDs, mainly to use getSplits.Stephen Haberman2013-02-0511-59/+30
| | | | | | | | | | | | | | | | | | Also made sure clearDependencies() was calling super, to ensure the getSplits/getDependencies vars in the RDD base class get cleaned up.
| * | Remove unneeded zipWithIndex.Stephen Haberman2013-02-051-5/+7
| | | | | | | | | | | | Also rename r->rdd and remove unneeded extra type info.
| * | Add RDD.coalesce.Stephen Haberman2013-02-052-0/+17
| | |
| * | Add private, minor formatting.Stephen Haberman2013-02-051-21/+14
| | |
* | | Merge branch 'master' of https://github.com/mesos/spark into commutativeMark Hamstra2013-02-08122-1855/+3813
|\| | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/RDD.scala
| * | Merge pull request #450 from stephenh/inlinemergepairMatei Zaharia2013-02-051-6/+4
| |\ \ | | | | | | | | Inline mergePair to look more like the narrow dep branch.
| | * | Inline mergePair to look more like the narrow dep branch.Stephen Haberman2013-02-051-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | No functionality changes, I think this is just more consistent given mergePair isn't called multiple times/recursive. Also added a comment to explain the usual case of having two parent RDDs.
| * | | Merge branch 'master' into fixdeathpactexceptionStephen Haberman2013-02-0518-233/+293
| |\ \ \ | | | |/ | | |/| | | | | | | | | Conflicts: core/src/main/scala/spark/deploy/worker/Worker.scala
| | * | Merge pull request #445 from JoshRosen/pyspark_fixesMatei Zaharia2013-02-031-2/+9
| | |\ \ | | | | | | | | | | Fix exit status in PySpark unit tests; fix/optimize PySpark's RDD.take()
| | | * | Fetch fewer objects in PySpark's take() method.Josh Rosen2013-02-031-2/+9
| | | |/
| | * | Merge pull request #379 from stephenh/sparkmemMatei Zaharia2013-02-026-35/+17
| | |\ \ | | | | | | | | | | Add spark.executor.memory to differentiate executor memory from spark-shell
| | | * | Fix dangling old variable names.Stephen Haberman2013-02-021-2/+2
| | | | |
| | | * | Move executorMemory up into SchedulerBackend.Stephen Haberman2013-02-024-29/+12
| | | | |
| | | * | Merge branch 'master' into sparkmemStephen Haberman2013-02-02112-1486/+2872
| | | |\|
| | | * | Fix SPARK_MEM in ExecutorRunner.Stephen Haberman2013-01-221-1/+1
| | | | |
| | | * | Restore SPARK_MEM in executorEnvs.Stephen Haberman2013-01-221-2/+3
| | | | |
| | | * | Add spark.executor.memory to differentiate executor memory from spark-shell ↵Stephen Haberman2013-01-153-10/+8
| | | | | | | | | | | | | | | | | | | | memory.
| | * | | Merge pull request #422 from squito/blockmanager_infoMatei Zaharia2013-02-026-38/+59
| | |\ \ \ | | | | | | | | | | | | RDDInfo available from SparkContext
| | | * | | remove unneeded (and unused) filter on block infoImran Rashid2013-02-011-2/+0
| | | | | |
| | | * | | track total partitions, in addition to cached partitions; use scala string ↵Imran Rashid2013-02-013-9/+13
| | | | | | | | | | | | | | | | | | | | | | | | formatting
| | | * | | fixup merge (master -> driver renaming)Imran Rashid2013-02-011-1/+1
| | | | | |
| | | * | | Merge branch 'master' into blockmanager_infoImran Rashid2013-01-3027-222/+259
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/storage/BlockManagerMaster.scala
| | | * | | | rename Slaves --> ExecutorImran Rashid2013-01-302-5/+5
| | | | | | |
| | | * | | | Merge branch 'master' into blockmanager_infoImran Rashid2013-01-2919-179/+183
| | | |\ \ \ \
| | | * | | | | better formatting for RDDInfoImran Rashid2013-01-281-3/+9
| | | | | | | |
| | | * | | | | expose RDD & storage info directly via SparkContextImran Rashid2013-01-284-28/+41
| | | | | | | |
| | * | | | | | Merge pull request #436 from stephenh/removeextraloopMatei Zaharia2013-02-021-13/+10
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Once we find a split with no block, we don't have to look for more.