[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

This is an old revision of the document!


MapReduce Tutorial : Running multiple Hadoop jobs in one class

The Java API offers possibility to submit multiple Hadoop job in one class. A job can be submitted either using

Exercise 1

Improve the last inverted index creation exercise to

  1. in first job, create a list of unique document names. Number the documents using the order in this list.
  2. in second job, create for each word sorted list of DocWithOccurences<IntWritable>, where the document is identified by its number (contrary to the previous exercise, where Text was used to identify the document).

[ Back to the navigation ] [ Back to the content ]