YARN-7665. Allow FS scheduler state dump to be turned on/off separately from FS debug log. (Wilfred Spiegelenburg via Haibo Chen)
(cherry picked from commit 8ee7080e5d
)
This commit is contained in:
parent
92f63d04a1
commit
7b32d6811c
|
@ -306,10 +306,12 @@ public class FairScheduler extends
|
|||
private void dumpSchedulerState() {
|
||||
FSQueue rootQueue = queueMgr.getRootQueue();
|
||||
Resource clusterResource = getClusterResource();
|
||||
LOG.debug("FairScheduler state: Cluster Capacity: " + clusterResource +
|
||||
STATE_DUMP_LOG.debug(
|
||||
"FairScheduler state: Cluster Capacity: " + clusterResource +
|
||||
" Allocations: " + rootMetrics.getAllocatedResources() +
|
||||
" Availability: " + Resource.newInstance(
|
||||
rootMetrics.getAvailableMB(), rootMetrics.getAvailableVirtualCores()) +
|
||||
rootMetrics.getAvailableMB(),
|
||||
rootMetrics.getAvailableVirtualCores()) +
|
||||
" Demand: " + rootQueue.getDemand());
|
||||
|
||||
STATE_DUMP_LOG.debug(rootQueue.dumpState());
|
||||
|
@ -350,7 +352,7 @@ public class FairScheduler extends
|
|||
}
|
||||
|
||||
// Log debug information
|
||||
if (LOG.isDebugEnabled()) {
|
||||
if (STATE_DUMP_LOG.isDebugEnabled()) {
|
||||
if (--updatesToSkipForDebug < 0) {
|
||||
updatesToSkipForDebug = UPDATE_DEBUG_FREQUENCY;
|
||||
dumpSchedulerState();
|
||||
|
|
|
@ -261,6 +261,6 @@ When an application is moved to a queue, its existing allocations become counted
|
|||
|
||||
###Dumping Fair Scheduler state
|
||||
|
||||
Fair Scheduler is able to dump its state periodically. It is disabled by default. The administrator can enable it by setting org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler logging level to DEBUG.
|
||||
Fair Scheduler is able to dump its state periodically. It is disabled by default. The administrator can enable it by setting `org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler.statedump` logging level to DEBUG.
|
||||
|
||||
Fair Scheduler logs go to the Resource Manager log file by default. Fair Scheduler state dumps can potentially generate large amount of log data. Uncomment the "Fair scheduler state dump" section in log4j.properties to dump the state into a separate file.
|
||||
Fair Scheduler logs go to the Resource Manager log file by default. Fair Scheduler state dumps can potentially generate a large amount of log data. Uncomment the "Fair scheduler state dump" section in log4j.properties to dump the state into a separate file.
|
||||
|
|
Loading…
Reference in New Issue