YARN-8616. systemClock should be used in RMAppImpl instead of System.currentTimeMills(), to be consistent. (Contributed by Szilard Nemeth)
This commit is contained in:
parent
cf62ff9a6a
commit
29dad7d258
@ -1507,7 +1507,7 @@ public FinalTransition(RMAppState finalState) {
|
||||
}
|
||||
|
||||
public void transition(RMAppImpl app, RMAppEvent event) {
|
||||
app.logAggregationStartTime = System.currentTimeMillis();
|
||||
app.logAggregationStartTime = app.systemClock.getTime();
|
||||
for (NodeId nodeId : app.getRanNodes()) {
|
||||
app.handler.handle(
|
||||
new RMNodeCleanAppEvent(nodeId, app.applicationId));
|
||||
@ -1767,7 +1767,7 @@ public Map<NodeId, LogAggregationReport> getLogAggregationReportsForApp() {
|
||||
try {
|
||||
this.readLock.lock();
|
||||
if (!isLogAggregationFinished() && isAppInFinalState(this) &&
|
||||
System.currentTimeMillis() > this.logAggregationStartTime
|
||||
systemClock.getTime() > this.logAggregationStartTime
|
||||
+ this.logAggregationStatusTimeout) {
|
||||
for (Entry<NodeId, LogAggregationReport> output :
|
||||
logAggregationStatus.entrySet()) {
|
||||
@ -2060,7 +2060,7 @@ private void sendATSCreateEvent() {
|
||||
String appViewACLs = submissionContext.getAMContainerSpec()
|
||||
.getApplicationACLs().get(ApplicationAccessType.VIEW_APP);
|
||||
rmContext.getSystemMetricsPublisher().appACLsUpdated(
|
||||
this, appViewACLs, System.currentTimeMillis());
|
||||
this, appViewACLs, systemClock.getTime());
|
||||
}
|
||||
|
||||
@Private
|
||||
|
Loading…
Reference in New Issue
Block a user