aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Allow python/run-tests to run from any directoryMatei Zaharia2013-07-291-0/+3
|
* Optimize Python foreach() to not return as many objectsMatei Zaharia2013-07-291-1/+5
|
* Optimize Python take() to not compute entire first partitionMatei Zaharia2013-07-292-34/+45
|
* Two fixes to IPython support:Matei Zaharia2013-07-281-3/+7
| | | | | | - Don't attempt to run worker processes with ipython (that can cause some crashes as ipython prints things to standard out) - Allow passing some IPYTHON_OPTS to launch things like the notebook
* Merge pull request #739 from markhamstra/toolsPomReynold Xin2013-07-261-0/+8
|\ | | | | Missing tools/pom.xml scalatest dependency
| * Added missing scalatest dependencyMark Hamstra2013-07-261-0/+8
| |
* | Merge pull request #738 from harsha2010/pruningReynold Xin2013-07-262-2/+31
|\ \ | |/ |/| Fix bug in Partition Pruning.
| * Code reviewharshars2013-07-262-3/+3
| |
| * Indentationharshars2013-07-261-3/+3
| |
| * Indentationharshars2013-07-262-2/+1
| |
| * Fix Bug in Partition Pruning, index of Pruned Partitions should inherit from ↵harshars2013-07-262-2/+32
| | | | | | | | parent
* | Merge pull request #734 from woggle/executor-env2Matei Zaharia2013-07-251-3/+6
|\ \ | | | | | | Get more env vars from driver rather than worker
| * | For standalone mode, get JAVA_HOME, SPARK_JAVA_OPTS, SPARK_LIBRARY_PATH from ↵Charles Reiss2013-07-251-3/+6
|/ / | | | | | | application env, not worker env
* | Fix Chill version in MavenMatei Zaharia2013-07-252-2/+2
| |
* | Update Chill reference in pom.xml tooMatei Zaharia2013-07-251-2/+8
| |
* | Merge pull request #732 from ryanlecompte/masterMatei Zaharia2013-07-254-124/+43
|\ \ | | | | | | Refactor Kryo serializer support to use chill/chill-java
| * | fix wrappingryanlecompte2013-07-241-2/+4
| | |
| * | update pom.xmlryanlecompte2013-07-241-3/+8
| | |
| * | add testryanlecompte2013-07-241-0/+1
| | |
| * | add copyright back inryanlecompte2013-07-241-0/+17
| | |
| * | refactor Kryo serializer support to use chill/chill-javaryanlecompte2013-07-243-143/+37
|/ /
* | Fix Maven build errors after previous commitsMatei Zaharia2013-07-242-22/+129
| |
* | Merge pull request #728 from jey/examples-jar-envMatei Zaharia2013-07-242-11/+13
|\ \ | | | | | | Fix setting of SPARK_EXAMPLES_JAR
| * | Fix setting of SPARK_EXAMPLES_JARJey Kottalam2013-07-242-11/+13
| | |
* | | Merge pull request #729 from karenfeng/ui-811Matei Zaharia2013-07-244-6/+45
|\ \ \ | |/ / |/| | Stage Page updates
| * | Fixed consistency of "success" status stringKaren Feng2013-07-241-1/+1
| | |
| * | Removed finished status for task info, changed name of success caseKaren Feng2013-07-241-3/+1
| | |
| * | Changed ifs with returns to if/elseKaren Feng2013-07-241-8/+9
| | |
| * | Shows task status and running tasks on Stage Page: fixes SPARK-804 and 811Karen Feng2013-07-244-6/+46
| | |
* | | Merge pull request #675 from c0s/assemblyMatei Zaharia2013-07-245-1/+206
|\ \ \ | |/ / |/| | Building spark assembly for further consumption of the Spark project with a deployed cluster
| * | Building spark assembly for further consumption of the Spark project with a ↵Konstantin Boudnik2013-07-215-1/+206
| | | | | | | | | | | | deployed cluster
* | | Merge pull request #671 from jerryshao/masterMatei Zaharia2013-07-2426-6/+784
|\ \ \ | | | | | | | | Add metrics system for Spark
| * | | Code refactor according to commentsjerryshao2013-07-2416-126/+250
| | | |
| * | | Code style changesjerryshao2013-07-244-7/+8
| | | |
| * | | Change class xxxInstrumentation to class xxxSourceAndrew xia2013-07-247-10/+10
| | | |
| * | | Add metrics config template fileAndrew xia2013-07-242-15/+14
| | | |
| * | | continue to refactor code style and functionsAndrew xia2013-07-2414-201/+189
| | | |
| * | | Fix some typosjerryshao2013-07-247-16/+11
| | | |
| * | | Add Maven metrics library dependency and code changesjerryshao2013-07-244-3/+20
| | | |
| * | | Change Executor MetricsSystem initialize code to SparkEnvjerryshao2013-07-246-31/+22
| | | |
| * | | Register and init metricsSystem in SparkContextAndrew xia2013-07-242-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/SparkContext.scala core/src/main/scala/spark/SparkEnv.scala
| * | | Refactor metricsSystem unit test, add resource files.Andrew xia2013-07-244-55/+19
| | | |
| * | | Add metrics source of DAGScheduler and blockManagerAndrew xia2013-07-245-4/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/SparkContext.scala core/src/main/scala/spark/SparkEnv.scala
| * | | Remove twice add Source bug and code cleanjerryshao2013-07-242-12/+10
| | | |
| * | | Add metrics system unit testjerryshao2013-07-242-0/+157
| | | |
| * | | Add default properties to deal with no configure file situationjerryshao2013-07-245-25/+30
| | | |
| * | | Add Executor instrumentationjerryshao2013-07-243-1/+56
| | | |
| * | | Add dependency of Codahale's metrics libraryjerryshao2013-07-241-0/+2
| | | |
| * | | Code clean and remarshaljerryshao2013-07-247-31/+15
| | | |
| * | | refactor metrics systemAndrew xia2013-07-248-134/+84
| | | | | | | | | | | | | | | | | | | | 1.change source abstract class to support MetricRegistry 2.change master/work/jvm source class