Hadoop mapreduce : Driver for chaining mappers within a MapReduce job

前端 未结 4 2071
长情又很酷
长情又很酷 2020-12-14 04:56

I have mapreduce job: my code Map class:

public static class MapClass extends Mapper {

    @Override
    public void m         


        
4条回答
  •  天命终不由人
    2020-12-14 05:41

    You have to use Configuration instead of JobConf. JobConf is a subclass of Configuration, so there should exist a constructor for that.

提交回复
热议问题