- I have a job that runs on my cluster using hadoop-streaming
- I have to start a new job for which I want to add a job name, how can I pass that option on command-line or file to setup a job name?
- In Java, you can do this by saying
JobConf conf = new JobConf(WordCount.class); conf.setJobName("wordcount");
How can I do that with hadoop-streaming?