Python hadoop streaming : Setting a job name

Viewed 3500
  • 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?

1 Answers
Related