Back

Forum Replies Created

Viewing 0 reply threads
  • Author
    Posts
    • #12834
      mona
      Participant

      You can chain jobs together by writing multiple driver methods, one for each job. Call the first driver method, which uses JobClient.runJob() to run the job and wait for it to complete. When that job has completed, then call the next driver method, which creates a new JobConf object referring to different instances of Mapper and Reducer, etc. The first job in the chain should write its output to a path which is then used as the input path for the second job. This process can be repeated for as many jobs are necessary to arrive at a complete solution to the problem. For more information, you can visit: https://developer.yahoo.com/hadoop/tutorial/module4.html?guccounter=1#chaining

Viewing 0 reply threads