Uh oh!
There was an error while loading. Please reload this page.
[SPARK-25268][GraphX]run Parallel Personalized PageRank throws serialization Exception - #22271
Closed
shahidki31 wants to merge 1 commit into
Closed
[SPARK-25268][GraphX]run Parallel Personalized PageRank throws serialization Exception#22271shahidki31 wants to merge 1 commit into
shahidki31 wants to merge 1 commit into
Conversation
…tion Exception mapValues in scala is currently not serializable. To avoid the serialization issue while running pageRank, we need to use map instead of mapValues.
mengxr
commented
Aug 31, 2018
Contributor
test this please |
SparkQA
commented
Aug 31, 2018
Test build #95561 has finished for PR 22271 at commit
|
jkbradley
commented
Sep 6, 2018
Member
LGTM |
SparkQA
commented
Sep 6, 2018
Test build #4332 has finished for PR 22271 at commit
|
shahidki31
commented
Sep 6, 2018
ContributorAuthor
@SparkQA Test this please |
jkbradley
commented
Sep 6, 2018
Member
test this please |
SparkQA
commented
Sep 6, 2018
Test build #95747 has finished for PR 22271 at commit
|
asfgit pushed a commit
that referenced
this pull request
Sep 6, 2018
…lization Exception ## What changes were proposed in this pull request? mapValues in scala is currently not serializable. To avoid the serialization issue while running pageRank, we need to use map instead of mapValues. Please review http://spark.apache.org/contributing.html before opening a pull request. Closes#22271 from shahidki31/master_latest. Authored-by: Shahid <shahidki31@gmail.com> Signed-off-by: Joseph K. Bradley <joseph@databricks.com> (cherry picked from commit 3b6591b) Signed-off-by: Joseph K. Bradley <joseph@databricks.com>
shahidki31
commented
Sep 6, 2018
ContributorAuthor
Thank you @jkbradley for merging. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
mapValues in scala is currently not serializable. To avoid the serialization issue while running pageRank, we need to use map instead of mapValues.
Please review http://spark.apache.org/contributing.html before opening a pull request.