aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Show full stack trace and time taken in unit tests.Reynold Xin2013-12-231-1/+4
|
* Merge pull request #244 from leftnoteasy/masterReynold Xin2013-12-237-5/+257
|\ | | | | | | | | | | Added SPARK-968 implementation for review Added SPARK-968 implementation for review
| * SPARK-968, added executor address showing in aggregated metrics by executors ↵wangda.tan2013-12-231-0/+13
| | | | | | | | table
| * added changes according to comments from rxinwangda.tan2013-12-227-44/+24
| |
| * spark-968, changes for avoid a NPEwangda.tan2013-12-172-25/+29
| |
| * spark-898, changes according to review commentswangda.tan2013-12-177-76/+90
| |
| * Merge branch 'master' of git://github.com/apache/incubator-sparkwangda.tan2013-12-16208-2913/+3601
| |\
| * | SPARK-968, added sc finalize code to avoid akka rebinding to the same portwangda.tan2013-12-091-0/+7
| | |
| * | Merge branch 'master' of https://github.com/leftnoteasy/incubator-spark-1wangda.tan2013-12-0956-615/+4457
| |\ \
| * | | SPARK-968, In stage UI, add an overview section that shows task stats ↵wangda.tan2013-12-095-0/+234
| | | | | | | | | | | | | | | | grouped by executor id
* | | | Merge pull request #280 from aarondav/minorPatrick Wendell2013-12-203-17/+8
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Minor cleanup for standalone scheduler See commit messages
| * | | | Fix compiler warning in SparkZooKeeperSessionAaron Davidson2013-12-191-0/+1
| | | | |
| * | | | Remove firstApp from the standalone scheduler MasterAaron Davidson2013-12-191-10/+0
| | | | | | | | | | | | | | | | | | | | As a lonely child with no one to care for it... we had to put it down.
| * | | | Extraordinarily minor code/comment cleanupAaron Davidson2013-12-192-7/+7
| | | | |
* | | | | Merge pull request #272 from tmyklebu/masterPatrick Wendell2013-12-195-16/+36
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Track and report task result serialisation time. - DirectTaskResult now has a ByteBuffer valueBytes instead of a T value. - DirectTaskResult now has a member function T value() that deserialises valueBytes. - Executor serialises value into a ByteBuffer and passes it to DTR's ctor. - Executor tracks the time taken to do so and puts it in a new field in TaskMetrics. - StagePage now reports serialisation time from TaskMetrics along with the other things it reported.
| * | | | | Add a serialisation time column to the StagePage.Tor Myklebust2013-12-181-1/+5
| | | | | |
| * | | | | objectSer -> valueSer in a test.Tor Myklebust2013-12-171-2/+2
| | | | | |
| * | | | | Missed a spot; had an objectSer here too.Tor Myklebust2013-12-171-2/+2
| | | | | |
| * | | | | Merge branch 'master' of git://github.com/apache/incubator-sparkTor Myklebust2013-12-164-7/+7
| |\ \ \ \ \
| * | | | | | Incorporate pwendell's code review suggestions.Tor Myklebust2013-12-164-9/+8
| | | | | | |
| * | | | | | UI to display serialisation time of a stage.Tor Myklebust2013-12-161-0/+6
| | | | | | |
| * | | | | | Track task value serialisation time in TaskMetrics.Tor Myklebust2013-12-164-15/+26
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #276 from shivaram/collectPartitionReynold Xin2013-12-195-8/+50
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add collectPartition to JavaRDD interface. This interface is useful for implementing `take` from other language frontends where the data is serialized. Also remove `takePartition` from PythonRDD and use `collectPartition` in rdd.py. Thanks @concretevitamin for the original change and tests.
| * | | | | Add comment explaining collectPartitions's useShivaram Venkataraman2013-12-191-0/+2
| | | | | |
| * | | | | Make collectPartitions take an array of partitionsShivaram Venkataraman2013-12-193-12/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change the implementation to use runJob instead of PartitionPruningRDD. Also update the unit tests and the python take implementation to use the new interface.
| * | | | | Add collectPartition to JavaRDD interface.Shivaram Venkataraman2013-12-185-9/+39
| | | | | | | | | | | | | | | | | | | | | | | | Also remove takePartition from PythonRDD and use collectPartition in rdd.py.
* | | | | | Merge pull request #278 from MLnick/java-python-tostringMatei Zaharia2013-12-192-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add toString to Java RDD, and __repr__ to Python RDD Addresses [SPARK-992](https://spark-project.atlassian.net/browse/SPARK-992)
| * | | | | | Add toString to Java RDD, and __repr__ to Python RDDNick Pentreath2013-12-192-0/+5
|/ / / / / /
* | | | | | Merge pull request #183 from aarondav/spark-959Reynold Xin2013-12-191-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [SPARK-959] Explicitly depend on org.eclipse.jetty.orbit jar Without this, in some cases, Ivy attempts to download the wrong file and fails, stopping the whole build. See [bug](https://spark-project.atlassian.net/browse/SPARK-959) for more details. Note that this may not be the best solution, as I do not understand the root cause of why this only happens for some people. However, it is reported to work.
| * | | | | | [SPARK-959] Explicitly depend on org.eclipse.jetty.orbit jarAaron Davidson2013-12-181-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this, in some cases, Ivy attempts to download the wrong file and fails, stopping the whole build. See bug for more details. (This is probably also the beginning of the slow death of our recently prettified dependencies. Form follow function.)
* | | | | | | Merge pull request #247 from aarondav/minorReynold Xin2013-12-1813-71/+48
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Increase spark.akka.askTimeout default to 30 seconds In experimental clusters we've observed that a 10 second timeout was insufficient, despite having a low number of nodes and relatively small workload (16 nodes, <1.5 TB data). This would cause an entire job to fail at the beginning of the reduce phase. There is no particular reason for this value to be small as a timeout should only occur in an exceptional situation. Also centralized the reading of spark.akka.askTimeout to AkkaUtils (surely this can later be cleaned up to use Typesafe). Finally, deleted some lurking implicits. If anyone can think of a reason they should still be there, please let me know.
| * | | | | | In experimental clusters we've observed that a 10 second timeout was ↵Aaron Davidson2013-12-1813-71/+48
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | insufficient, despite having a low number of nodes and relatively small workload (16 nodes, <1.5 TB data). This would cause an entire job to fail at the beginning of the reduce phase. There is no particular reason for this value to be small as a timeout should only occur in an exceptional situation. Also centralized the reading of spark.akka.askTimeout to AkkaUtils (surely this can later be cleaned up to use Typesafe). Finally, deleted some lurking implicits. If anyone can think of a reason they should still be there, please let me know.
* | | | | | Merge pull request #267 from JoshRosen/cygwinReynold Xin2013-12-184-5/+55
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Cygwin support in several scripts. 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).
| * | | | | | Fix Cygwin support in several scripts.Josh Rosen2013-12-154-5/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* | | | | | | Merge pull request #274 from azuryy/masterReynold Xin2013-12-181-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed the example link in the Scala programing guid. The old link cannot access, I changed to the new one.
| * | | | | | | changed the example links in the scala-programming-guidfengdong2013-12-181-1/+1
| | | | | | | |
| * | | | | | | Fixed the example link.fengdong2013-12-181-1/+1
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #273 from rxin/topReynold Xin2013-12-171-0/+2
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed a performance problem in RDD.top and BoundedPriorityQueue BoundedPriority was actually traversing the entire queue to calculate the size, resulting in bad performance in insertion. This should also cherry pick cleanly into branch-0.8.
| * | | | | | Fixed a performance problem in RDD.top and BoundedPriorityQueue (size in ↵Reynold Xin2013-12-171-0/+2
|/ / / / / / | | | | | | | | | | | | | | | | | | BoundedPriority was actually traversing the entire queue to calculate the size, resulting in bad performance in insertion).
* | | | | | Merge pull request #268 from pwendell/shaded-protobufPatrick Wendell2013-12-167-82/+64
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for 2.2. to master (via shaded jars) This patch does a few related things. NOTE: This may not compile correctly for ~24 hours until artifacts fully propagate to Maven Central. 1. Uses shaded versions of akka/protobuf. For more information on how these versions were prepared, see [1]. 2. Brings the `new-yarn` project up-to-date with the changes for Akka 2.2.3. 3. Some clean-up of the build now that we don't have to switch akka groups for different YARN versions. [1] https://github.com/pwendell/spark-utils/tree/933a309ef85c22643e8e4b5e365652101c4e95de/shaded-protobuf
| * | | | | One other fixPatrick Wendell2013-12-161-1/+1
| | | | | |
| * | | | | Clean-upPatrick Wendell2013-12-162-1/+2
| | | | | |
| * | | | | CleanupPatrick Wendell2013-12-162-7/+0
| | | | | |
| * | | | | Removing extra code in new yarnPatrick Wendell2013-12-161-1/+0
| | | | | |
| * | | | | Remove trailing slashes from repository specifications.Patrick Wendell2013-12-161-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The correct format is to not have a trailing slash. For me this caused non-deterministic failures due to issues fetching certain artifacts. The issue was that some of the maven caches would fail to fetch the artifact (due to the way that the artifact path was concatenated with the repository) and this short-circuited the download process in a silent way. Here is what the log output looked like: Downloading: http://repo.maven.apache.org/maven2/org/spark-project/akka/akka-remote_2.10/2.2.3-shaded-protobuf/akka-remote_2.10-2.2.3-shaded-protobuf.pom [WARNING] The POM for org.spark-project.akka:akka-remote_2.10:jar:2.2.3-shaded-protobuf is missing, no dependency information available This was pretty brutal to debug since there was no error message anywhere and the path *looks* correct as reported by the Maven log.
| * | | | | Attempt with extra repositoriesPatrick Wendell2013-12-167-76/+65
|/ / / / /
* | | | | Merge pull request #270 from ewencp/really-force-ssh-pseudo-tty-masterPatrick Wendell2013-12-161-2/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Force pseudo-tty allocation in spark-ec2 script. ssh commands need the -t argument repeated twice if there is no local tty, e.g. if the process running spark-ec2 uses nohup and the parent process exits. Without this change, if you run the script this way (e.g. using nohup from a cron job), it will fail setting up the nodes because some of the ssh commands complain about missing ttys and then fail. (This version is for the master branch. I've filed a separate request for the 0.8 since changes to the script caused the patches to be different.)
| * | | | | Force pseudo-tty allocation in spark-ec2 script.Ewen Cheslack-Postava2013-12-161-2/+2
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | ssh commands need the -t argument repeated twice if there is no local tty, e.g. if the process running spark-ec2 uses nohup and the parent process exits.
* | | | | Merge pull request #245 from gregakespret/task-maxfailures-fixReynold Xin2013-12-163-5/+5
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix for spark.task.maxFailures not enforced correctly. Docs at http://spark.incubator.apache.org/docs/latest/configuration.html say: ``` spark.task.maxFailures Number of individual task failures before giving up on the job. Should be greater than or equal to 1. Number of allowed retries = this value - 1. ``` Previous implementation worked incorrectly. When for example `spark.task.maxFailures` was set to 1, the job was aborted only after the second task failure, not after the first one.
| * | | | Fix tests.Grega Kespret2013-12-102-2/+2
| | | | |