找考题网-背景图
单项选择题

以HDFS上master:9000/graphdata.txt中的数据创建图graphhdfs,其中graphdata.txt文本格式:121256132156。现将graphhdfs中每个节点的属性值变为原值的3倍,并查看其中的10个顶点,则以下选项正确的是()

A.val temp=graphhdfs.mapVertices((x1,x2)=>x2.toInt*3).vertices.take(10)
B.val temp=graphhdfs.mapEdges((x1,x2)=>x2.toInt*3).vertices.take(10)
C.val temp=graphhdfs.mapVertices(x=>x._2.toInt*3).vertices.take(10)
D.val temp=graphhdfs.map(x=>x._1.toInt*3).vertices.take(10)