aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #505 from stephenh/volatileMatei Zaharia2013-03-233-56/+60
|\ | | | | Make Executor fields volatile since they're read from the thread pool.
| * Merge branch 'master' into volatileStephen Haberman2013-03-20136-1199/+2401
| |\
| * | Don't create the Executor until we have everything it needs.Stephen Haberman2013-02-283-53/+57
| | |
| * | Make Executor fields volatile since they're read from the thread pool.Stephen Haberman2013-02-281-6/+6
| | |
* | | Merge pull request #510 from markhamstra/WithThingMatei Zaharia2013-03-232-1/+125
|\ \ \ | | | | | | | | mapWith, flatMapWith and filterWith
| * | | constructorOfA -> constructA in doc commentsMark Hamstra2013-03-161-4/+4
| | | |
| * | | fix wayward comma in doc commentMark Hamstra2013-03-161-1/+1
| | | |
| * | | _With[Matei]Mark Hamstra2013-03-162-20/+20
| | | |
| * | | Merge branch 'master' of https://github.com/mesos/spark into WithThingMark Hamstra2013-03-1625-146/+376
| |\ \ \
| * \ \ \ Merge branch 'master' of https://github.com/mesos/spark into WithThingMark Hamstra2013-03-132-6/+6
| |\ \ \ \
| * \ \ \ \ Merge branch 'master' of https://github.com/mesos/spark into WithThingMark Hamstra2013-03-112-8/+107
| |\ \ \ \ \
| * | | | | | deleted excess curly bracesMark Hamstra2013-03-101-2/+2
| | | | | | |
| * | | | | | refactored _With API and added foreachPartitionMark Hamstra2013-03-102-56/+57
| | | | | | |
| * | | | | | Merge branch 'master' of https://github.com/mesos/spark into WithThingMark Hamstra2013-03-1016-558/+314
| |\ \ \ \ \ \
| * | | | | | | refactor mapWith, flatMapWith and filterWith to each use two parameter listsMark Hamstra2013-03-052-12/+12
| | | | | | | |
| * | | | | | | whitespace formattingMark Hamstra2013-03-052-16/+16
| | | | | | | |
| * | | | | | | mapWith, flatMapWith and filterWithMark Hamstra2013-03-042-1/+124
| | | | | | | |
* | | | | | | | Merge pull request #532 from andyk/masterMatei Zaharia2013-03-204-0/+72
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | SPARK-715: Adds instructions for building with Maven to documentation
| * | | | | | | | Fixing typos pointed out by MateiAndy Konwinski2013-03-201-2/+2
| | | | | | | | |
| * | | | | | | | Adds page to docs about building using Maven.Andy Konwinski2013-03-174-0/+72
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds links to new instructions in: * The main Spark project README.md * The docs nav menu called "More" * The docs Overview page under the "Building" and "Where to Go from Here" sections
* | | | | | | | Merge pull request #538 from rxin/cogroupMatei Zaharia2013-03-202-9/+66
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | Added mapSideCombine flag to CoGroupedRDD. Added unit test for CoGroupedRDD.
| * | | | | | | Merge branch 'master' of github.com:mesos/spark into cogroupReynold Xin2013-03-204-13/+20
| |\ \ \ \ \ \ \
| * | | | | | | | Added mapSideCombine flag to CoGroupedRDD. Added unit test forReynold Xin2013-03-202-9/+66
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | CoGroupedRDD.
* | | | | | | | Merge pull request #528 from MLnick/java-examplesMatei Zaharia2013-03-205-0/+278
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [SPARK-707] Adding Java versions of Pi, LogQuery and K-Means examples
| * \ \ \ \ \ \ \ Merge branch 'java-examples' of https://github.com/MLnick/spark into ↵Nick Pentreath2013-03-200-0/+0
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | java-examples
| | * | | | | | | | Java indentation 2 --> 4 spacesNick Pentreath2013-03-203-200/+200
| | | | | | | | | |
| * | | | | | | | | Java indentation 4 --> 2 spacesNick Pentreath2013-03-203-200/+200
| |/ / / / / / / /
| * | | | | | | | A few cosmetic changes for JavaKMeansNick Pentreath2013-03-191-1/+4
| | | | | | | | |
| * | | | | | | | Adding Java K-Means exampleNick Pentreath2013-03-192-0/+112
| | | | | | | | |
| * | | | | | | | Changes to more closely match line length limit styleNick Pentreath2013-03-171-3/+5
| | | | | | | | |
| * | | | | | | | Adding Java versions of Pi and LogQueryNick Pentreath2013-03-153-0/+161
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Merge pull request #526 from markhamstra/foldByKeyMatei Zaharia2013-03-203-0/+73
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | Add foldByKey
| * | | | | | | whitespaceMark Hamstra2013-03-161-1/+0
| | | | | | | |
| * | | | | | | refactor foldByKey to use combineByKeyMark Hamstra2013-03-162-7/+19
| | | | | | | |
| * | | | | | | Merge branch 'master' of https://github.com/mesos/spark into foldByKeyMark Hamstra2013-03-164-40/+91
| |\ \ \ \ \ \ \ | | | |/ / / / / | | |/| | | | |
| * | | | | | | Merge branch 'master' of https://github.com/mesos/spark into foldByKeyMark Hamstra2013-03-1515-19/+122
| |\ \ \ \ \ \ \
| * | | | | | | | whitespace cleanupMark Hamstra2013-03-151-22/+22
| | | | | | | | |
| * | | | | | | | Fuller implementation of foldByKeyMark Hamstra2013-03-152-2/+29
| | | | | | | | |
| * | | | | | | | restrict V type of foldByKey in order to retain ClassManifest; added ↵Mark Hamstra2013-03-143-3/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | foldByKey to Java API and test
| * | | | | | | | added foldByKeyMark Hamstra2013-03-141-0/+7
| | | | | | | | |
* | | | | | | | | Merge pull request #536 from sasurfer/masterMatei Zaharia2013-03-191-2/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | CoalescedRDD for many partitions
| * | | | | | | | | CoalescedRDD changed to work with a big number of partitions both in the ↵Giovanni Delussu2013-03-191-2/+2
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | original and the new coalesced RDD. The limitation was in the range that Scala.Int can represent.
* | | | | | | | | Merge pull request #534 from stephenh/removetrycatchMatei Zaharia2013-03-191-10/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Remove try/catch block that can't be hit.
| * | | | | | | | | Remove try/catch block that can't be hit.Stephen Haberman2013-03-181-10/+4
| | |_|_|/ / / / / | |/| | | | | | |
* | | | | | | | | Merge pull request #537 from wishbear/configurableInputFormatMatei Zaharia2013-03-192-1/+14
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | call setConf from input format if it is Configurable
| * | | | | | | | call setConf from input format if it is ConfigurableAndrey Kouznetsov2013-03-192-1/+14
|/ / / / / / / /
* | | | | | | | Merge pull request #525 from stephenh/subtractByKeyMatei Zaharia2013-03-164-40/+91
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | Add PairRDDFunctions.subtractByKey.
| * | | | | | | Fix tabs that snuck in.Stephen Haberman2013-03-141-8/+8
| | | | | | | |
| * | | | | | | Allow subtractByKey's other argument to have a different value type.Stephen Haberman2013-03-143-8/+8
| | | | | | | |
| * | | | | | | Finished subtractByKeys.Stephen Haberman2013-03-144-23/+62
| | | | | | | |