1
votes

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?

1

1 Answers

1
votes

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