srowen commented on a change in pull request #24230: [SPARK-27295][GraphX]
Provision to provide the initial scores for source nodes while running
Personalized Page Rank
URL: https://github.com/apache/spark/pull/24230#discussion_r269726679
##########
File path: graphx/src/main/scala/org/apache/spark/graphx/lib/PageRank.scala
##########
@@ -188,7 +188,7 @@ object PageRank extends Logging {
graph: Graph[VD, ED],
numIter: Int,
resetProb: Double = 0.15,
- sources: Array[VertexId]): Graph[Vector, Double] = {
+ sources: Array[(VertexId, Double)]): Graph[Vector, Double] = {
Review comment:
That also changes the binary signature, I believe. It's easy to avoid with a
second method. If you can add a quick test of the new method and mark as
`@Since(3.0.0)` I think this is probably OK, even though GraphX isn't really
maintained anymore.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]