python expert to import data to hbase tables

Job ID: 32274378

Budget: $10 – $30 USD

1. create another table words and modify WordCount program so that it writes its input inti HBase. (explain steps and take corresponding screenshots)

2. Write a second MapReduce job which reads the output from 1) from HBase and Writes a row for each distinct count value inti HBase with the words as columns. Set the column values to 0. (explain steps and take corresponding screenshots)

example input: to be or not to be
example output: (1, {or:0, not:0}), (2, {to:0, be:0})

3. Write a simple python program (bi MapReduce) which read your HBase table and prints all words for a count value which is submitted via a console parameter.

I need to print all words which occur five times in the input document of 1.

I have map, reduce python file and some reference documents also.

thank you.