海量数据的二度人脉挖掘算法(Hadoop 实现)(2)

protected void reduce(TextPair key, Iterable<Text> values, Context context)
 throws IOException, InterruptedException {
 
 StringBuilder resutl = new StringBuilder();
 for (Text text : values){
  resutl.append(text.toString()).append(",");
 }
 
 context.write(key, new Text(resutl.toString()));
}

到这步,二度人脉关系基本已经挖掘出来,后续的处理就很简单了,当然也可以基于二度人脉挖掘三度,四度:)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/64836f464423cbfde1b1a451dc42e736.html