博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GraphX实现N度关系
阅读量:5840 次
发布时间:2019-06-18

本文共 1824 字,大约阅读时间需要 6 分钟。

背景

本文给出了一个简单的计算图中每个点的N度关系点集合的算法,也就是N跳关系。

之前通过学习和理解了一下GraphX的计算接口。

N度关系

目标:

在N轮里,找到某一个点的N度关系的点集合。

实现思路:

1. 准备好边数据集,即”1 3”, “4, 1” 这样的点关系。使用GraphLoader 的接口load成Graph
2. 初始化每个Vertice的属性为空Map
3. 使用aggregateMessagesVerticeIDtotalRounds传播出度点上,出度点把收集到的信息合成一个大Map
4. 更新后的Vertice与原图进行”Join”,更新图中的变化过的点属性
5. 重复步骤3和4,最后输出更新了N轮之后的有关系的Vertice

spark-shell下可执行的代码:

import org.apache.spark._import org.apache.spark.graphx._import org.apache.spark.rdd.RDDval friendsGraph = GraphLoader.edgeListFile(sc, "data/friends.txt")val totalRounds: Int = 3 // total N roundvar targetVerticeID: Long = 6 // target vertice// round onevar roundGraph = friendsGraph.mapVertices((id, vd) => Map())var roundVertices = roundGraph.aggregateMessages[Map[Long, Integer]](  ctx => {    if (targetVerticeID == ctx.srcId) {      // only the edge has target vertice should send msg      ctx.sendToDst(Map(ctx.srcId -> totalRounds))    }  },   _ ++ _)for (i <- 2 to totalRounds) {  val thisRoundGraph = roundGraph.outerJoinVertices(roundVertices){ (vid, data, opt) => opt.getOrElse(Map[Long, Integer]()) }  roundVertices = thisRoundGraph.aggregateMessages[Map[Long, Integer]](    ctx => {      val iterator = ctx.srcAttr.iterator      while (iterator.hasNext) {        val (k, v) = iterator.next        if (v > 1) {          val newV = v - 1          ctx.sendToDst(Map(k -> newV))          ctx.srcAttr.updated(k, newV)        } else {          // do output and remove this entry        }      }    },    (newAttr, oldAttr) => {      if (oldAttr.contains(newAttr.head._1)) { // optimization to reduce msg        oldAttr.updated(newAttr.head._1, 1) // stop sending this ever      } else {        oldAttr ++ newAttr      }    }  )}val result = roundVertices.map(_._1).collect

数据和输出

2 14 11 26 37 37 66 73 74 31 66 1
Array(6, 1, 3, 7)

总结

实现的比较naive,还有许多可以优化的地方。

全文完 :)

转载地址:http://uoxcx.baihongyu.com/

你可能感兴趣的文章
让你的app体验更丝滑的11种方法!冲击手机应用榜单Top3指日可待
查看>>
windows kernel exploitation基础教程
查看>>
NS_OPTIONS枚举的用法
查看>>
QAQ高精度模板笔记√
查看>>
【Android笔记】入门篇02:全屏设置和禁止横屏竖屏切换
查看>>
Kubernetes的本质
查看>>
PL/SQL developer 管理多套数据库
查看>>
工作流编程循序渐进(8:状态机工作流)
查看>>
3.VMware View 4.6安装与部署-connection server(View Standard Server)
查看>>
Lync Server 2013 实战系列之六:标准版-安装和更新LyncServer 系统
查看>>
一个Windows Mobile, Windows Embedded CE工程师的找工经历(一)
查看>>
终于有了MSDN上的Blog
查看>>
java类型与Hadoop类型之间的转换
查看>>
允许SQL Server 2005远程连接
查看>>
微软为asp.net ajax和jquery创建了CDN
查看>>
Chris:怎样成为一名Android应用开发
查看>>
深入浅出 React Native:使用 JavaScript 构建原生应用
查看>>
Foundations of Python Network Programming - 读书笔记系列(3) - Email Services
查看>>
Oracle下建立dblink时的权限问题
查看>>
chrome浏览器,调试详解,调试js、调试php、调试ajax
查看>>