Created 08-25-2017 11:02 AM
Hi,
I am trying to change the log level of a MR job, I used the following command :
hadoop jar appMR.jar MainMR -Dmapreduce.map.log.level=DEBUG <args...>
but the -Dmapreduce.map.log.level=DEBUG goes as the first argument to the job.
Created 08-26-2017 09:46 PM
Created 08-26-2017 09:25 PM
To turn on debug mode on the job level, issue the following command before executing the job:
export HADOOP_ROOT_LOGGER=hadoop.root.logger=Debug,console
or add -Dhadoop.root.logger=DEBUG,console"
Created 08-26-2017 09:46 PM