Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道GraphX对Graph的内部遍历。RDDS是基于顶点和边的遍历还是顺序遍历?例如,给定一个图的顶点,我只想获取它的邻居而不是所有顶点的邻居?在这种情况下 GraphX 将如何遍历图形。
感谢期待。
例如给定一个图的顶点,我只想获取它的邻居
我认为这是不可能的,因为你总是对整个 RDD 应用一些操作,所以在这种情况下你不应该关心 GraphX 如何遍历图。