ClassNotFoundException after job submission

后端 未结 4 1319
轻奢々
轻奢々 2021-01-23 23:31

I\'m trying out Spring Data - Hadoop for executing the MR code on a remote cluster from my local machine\'s IDE

//Hadoop 1.1.2, Spring 3.2.4, Spring-Data-Hadoop 1.0.0

4条回答
  •  暖寄归人
    2021-01-24 00:19

    I was getting the same issue then separating the mapper and reducer class works and the following changes were done in applicationContext.xml:

    
    
    
        
        
            fs.default.name=${fs.default.name}
            mapred.job.tracker=${mapred.job.tracker}
        
    
        
    
        
    
    

提交回复
热议问题