- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Can LOG.isDebugEnabled for debugging commands be set manually on the CLI?
- Labels:
-
Apache Ambari
-
Apache YARN
Created on ‎05-15-2017 03:26 PM - edited ‎09-16-2022 04:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Looking to see if LOG.isDebugEnabled can be switch "ON" when running shell command that invokes a Java Class object. I don't want to go about messing with Ambari or logj4 for a quick debug test. Is this possible?
Trying to debug:
yarn scmadmin
Created ‎05-15-2017 03:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do you mean client side logging?
Can you try exporting the following variable first and then try running your command:
export HADOOP_ROOT_LOGGER=debug,console
.
Similarly for Yarn:
export YARN_ROOT_LOGGER=DEBUG,console
.
Created ‎05-15-2017 03:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do you mean client side logging?
Can you try exporting the following variable first and then try running your command:
export HADOOP_ROOT_LOGGER=debug,console
.
Similarly for Yarn:
export YARN_ROOT_LOGGER=DEBUG,console
.
Created ‎05-15-2017 06:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The second was what I was looking for. Thanks!
