如何配置hadoop mapreduce,以便我的mapreduce类的日志可以输出到文件?
我修改了 $HADOOP_HOME/conf/log4j.properies 但它并没有按照我的预期工作。 如何解决这个问题呢?
I modified the $HADOOP_HOME/conf/log4j.properies
But it is not working as what I expect.
How to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查类路径中是否有其他
log4j.properties
文件。 log4j 的一个问题是,只有从类路径读取的最后一个log4j.properties
才会被实际使用。因此,如果类路径中还有其他log4j.properties
文件,那么可能会选择其中一个文件。尝试合并所有这些log4j.properties
文件,它应该可以工作。如果可以的话,还请发布
log4j.properties
文件的内容。那里也可能存在问题。Check if you have other
log4j.properties
files in your classpath. A problem with log4j is that the only the lastlog4j.properties
it reads from the classpath will be actually used. So if you have otherlog4j.properties
files in the classpath, then one of those might be getting picked up. Try to merge all theselog4j.properties
files and it should work.Also please post the content of the
log4j.properties
files if you can. There can be a problem there as well.