protected void map(LongWritable key, Text value, Context context) throws IOException ,InterruptedException {
value.set(value.toString() + "\t" + classify(value.toString()));
context.write(value, NullWritable.get());
}
});
Job j = job.createJob();
try {
j.waitForCompletion(true);
} finally {
job.cleanUpInstanceFiles();
}