public void reduce(CompositeKey key, Iterable<Text> values, Context context)
        throws IOException, InterruptedException {
      int count = 0;
      for (Text val : values) {

        context.write(new Text(key.gettag() + "," + key.getweight()), new Text(""));

        count++;
      }
    }