GitHub user CodingCat opened a pull request: https://github.com/apache/spark/pull/105
SPARK-1160: Deprecate toArray in RDD https://spark-project.atlassian.net/browse/SPARK-1160 reported by @mateiz: "It's redundant with collect() and the name doesn't make sense in Java, where we return a List (we can't return an array due to the way Java generics work). It's also missing in Python." In this patch, I deprecate the method and changed the source files using them by replacing toArray with collect() directly You can merge this pull request into a Git repository by running: $ git pull https://github.com/CodingCat/spark SPARK-1060 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/spark/pull/105.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #105 ---- commit 2ff73198fd0bb7406f6693444a2d0945fe762e3a Author: CodingCat <zhunans...@gmail.com> Date: 2014-03-08T14:34:49Z deprecate toArray in RDD ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---