Jobconf deprecated at 0.20. x, but in 1.0.0 this is not so! :-) (from the moment of writing)
To your question, there are two ways to start working with mailing reduction in java, one using the extending classes in the org.apache.hadoop.mapreduce package, and the other using the implementing classes in the org.apache.hadoop.mapred package (or bypass )
Not sure which one you are using, if you don't have the configure method to override, you will get the setup method to override.
@Override protected void setup(Context context) throws IOException, InterruptedException
This is similar to configure and should help you.
You get the setup method for override when you extend Mapper class in org.apache.hadoop.mapreduce .
source share