Reputation: 1533
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
Reputation: 603
Your combiner class should extend the TableReducer itself and not Reducer.
Upvotes: 1