我有一个mapreduce程序,使用happybase连接到Hbase。我收到以下错误
文件
/hadoop/yarn/local/usercache/aprakash/appcache/application_1407169690715_0025/container_1407169690715_0025_01_000002/./testhappybase.py, line 9, in <module>
import happybase
ImportError: No module named happybase当我独立运行程序时,我能够导入happybase。下面的命令显示了我如何运行hadoop作业
hadoop jar /usr/lib/hadoop-mapreduce/hadoop-streaming.jar -file
/home/aprakash/testhappybase.py -mapper /home/aprakash/testhappybase.py -file
/home/aprakash/workspace/reducer.py -reducer /home/aprakash/workspace/reducer.py -input
/user/aprakash/flume-channel/apache_access_combined/* -output /user/aprakash/flume-channel-output2 我在/usr/local/lib/python2.7/site-packages/happybase下看到了happybase模块
发布于 2015-01-26 19:48:05
也许执行map reduce作业的机器没有安装Happybase?
https://stackoverflow.com/questions/25293667
复制相似问题