public class MyMapper extends Mapper { @Override public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException { Text outputKey = new Text(); Text outputValue = new Text(); // ... context.write(outputKey, outputValue); } }