Reputation: 79
I am new to hadoop. I don't know what jobConf class is doing inside driver class. Please explain complete statement of creating the conf object.
Upvotes: 2
Views: 597
Reputation: 111
In general it's a map/reduce job configuration. Check out this link:
https://hadoop.apache.org/docs/r2.7.3/api/org/apache/hadoop/mapred/JobConf.html
also here you can find intresting facts:
what is the basic difference between jobconf and job?
Upvotes: 3