Closed ankurdave closed 10 years ago
Merged build triggered.
Merged build started.
Merged build finished.
One or more automated tests failed Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/GraphXPullRequestBuilder/2620/
This is good! Do we also have a way to repartition? Perhaps in general the graph should not shuffle edges unless it is requested. This allows users to do their own problem specific partitioning.
Actually you might load your data into GraphX then map triplets to get some information about both vertices (eg where they live) and then attach an edge attribute (eg common zip code) and finally rebuild the graph by first externally shuffling the edges on the zip code.
— Sent from iPhone
On Sat, Dec 7, 2013 at 6:25 AM, UCB AMPLab notifications@github.com wrote:
One or more automated tests failed
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/GraphXPullRequestBuilder/2620/
Reply to this email directly or view it on GitHub: https://github.com/amplab/graphx/pull/94#issuecomment-30055888
I like the idea of never shuffling edges unless requested. Maybe we could expose a method Graph.partitionBy(PartitionStrategy)
and let the user call it?
Build triggered.
Build started.
Build finished.
One or more automated tests failed Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/GraphXPullRequestBuilder/2708/
Merged build triggered.
Merged build started.
This is ready to merge.
Merged build triggered.
Merged build finished.
All automated tests passed. Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/GraphXPullRequestBuilder/4088/
Merged build started.
Merged build finished.
All automated tests passed. Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/GraphXPullRequestBuilder/4090/
Rebased onto the new master.
Merged build triggered.
Merged build started.
Merged build finished.
All automated tests passed. Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/GraphXPullRequestBuilder/4586/
Looks good to me.
Fixes indentation. Diff ignoring whitespace: https://github.com/amplab/graphx/pull/94/files?w=1
In GraphLoader.edgeListFile, load edges directly into EdgePartitions, avoiding repartitioning. Instead, allow repartitioning by calling
Graph.partitionBy(partitionStrategy)
.