Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,13 @@ private void validateAndSetSchedulingRequest(SchedulingRequest
((SchedulingRequestPBImpl) newSchedulingRequest).getProto());


LOG.info("Successfully added SchedulingRequest to app="
+ appSchedulingInfo.getApplicationAttemptId()
+ " placementConstraint=["
+ schedulingRequest.getPlacementConstraint()
+ "]. nodePartition=" + targetNodePartition);
if (LOG.isDebugEnabled()) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should not need to add this condition.

LOG.debug("Successfully added SchedulingRequest to app={}, placementConstraint={}. nodePartition={}", appSchedulingInfo.getApplicationAttemptId(), schedulingRequest.getPlacementConstraint(), targetNodePartition)");

LOG.debug("Successfully added SchedulingRequest to app="
+ appSchedulingInfo.getApplicationAttemptId()
+ " placementConstraint=["
+ schedulingRequest.getPlacementConstraint()
+ "]. nodePartition=" + targetNodePartition);
}
}

// Tentatively find out potential exist node-partition in the placement
Expand Down