user2597504
user2597504

Reputation: 1533

hadoop hbase mapreduce combiner

Now I am writing a Java program to write the output into HBase using Hadoop MapReduce. The question is about the Combiner class. Because now my reduce class extends TableReducer, instead of Reducer. So what about my combiner class, should it also extends TableReducer, or still extends Reducer?

Upvotes: 1

Views: 325

Answers (1)

Magham Ravi
Magham Ravi

Reputation: 603

Your combiner class should extend the TableReducer itself and not Reducer.

Upvotes: 1

Related Questions