Beispiel #1
0
 @Override
 protected void map(Centroid key, IntWritable value, Context context)
     throws IOException, InterruptedException {
   context.write(new Text(key.toString()), new Text(value.toString()));
 }
Beispiel #2
0
 @Override
 protected void map(Centroid key, Point value, Context context)
     throws IOException, InterruptedException {
   String out = key.toString() + " " + value.toString();
   context.write(new Text(out), new Text(""));
 }