hadoop streaming: how to see application logs?

后端 未结 2 951
离开以前
离开以前 2021-01-15 16:08

I can see all hadoop logs on my /usr/local/hadoop/logs path

but where can I see application level logs? for example :

mapper.py

         


        
2条回答
  •  爱一瞬间的悲伤
    2021-01-15 16:35

    Hadoop streaming uses STDIN/STDOUT for passing the key/value pairs between the mappers and reducers, so the log messages have to be written to a specific log file - check the sample code and the python logging documentation for more details. This Query might also help.

提交回复
热议问题