Java 类org.apache.hadoop.mapreduce.lib.join.TupleWritable 实例源码

项目:hiped2    文件:CompositeJoin.java   
@Override
protected void map(Text key, TupleWritable value, Context context)
    throws IOException, InterruptedException {
  context.write(key,
      new Text(StringUtils.join(value.get(0), value.get(1))));
}