大家好,我想在hadoop中debug下面这部分代码,那我是该debug TaskTracker呢,还是debug Map Task呢?具体该怎么做呢?论坛里的帖子跟我的情况不是很一样,请大家多多指教啊
//Mapper.java
public void run(Context context) throws IOException, InterruptedException {
setup(context);
try {
while (context.nextKeyValue()) {
map(context.getCurrentKey(), context.getCurrentValue(), context);
}
} finally {
cleanup(context);
}
}
(没法以代码格式贴上去,多多包涵啊)
|
|