YARN-5353. ResourceManager can leak delegation tokens when they are shared across apps. (Jason Lowe via Varun Saxena).
This commit is contained in:
parent
a290a98b6a
commit
06c56ff79b
@ -773,7 +773,7 @@ public void updateKeepAliveApplications(List<ApplicationId> appIds) {
|
|||||||
|
|
||||||
private void removeApplicationFromRenewal(ApplicationId applicationId) {
|
private void removeApplicationFromRenewal(ApplicationId applicationId) {
|
||||||
rmContext.getSystemCredentialsForApps().remove(applicationId);
|
rmContext.getSystemCredentialsForApps().remove(applicationId);
|
||||||
Set<DelegationTokenToRenew> tokens = appTokens.get(applicationId);
|
Set<DelegationTokenToRenew> tokens = appTokens.remove(applicationId);
|
||||||
|
|
||||||
if (tokens != null && !tokens.isEmpty()) {
|
if (tokens != null && !tokens.isEmpty()) {
|
||||||
synchronized (tokens) {
|
synchronized (tokens) {
|
||||||
@ -798,15 +798,10 @@ private void removeApplicationFromRenewal(ApplicationId applicationId) {
|
|||||||
// cancel the token
|
// cancel the token
|
||||||
cancelToken(dttr);
|
cancelToken(dttr);
|
||||||
|
|
||||||
it.remove();
|
|
||||||
allTokens.remove(dttr.token);
|
allTokens.remove(dttr.token);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(tokens != null && tokens.isEmpty()) {
|
|
||||||
appTokens.remove(applicationId);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1254,6 +1254,9 @@ public void testCancelWithMultipleAppSubmissions() throws Exception{
|
|||||||
Assert.assertTrue(dttr.referringAppIds.isEmpty());
|
Assert.assertTrue(dttr.referringAppIds.isEmpty());
|
||||||
Assert.assertTrue(dttr.isTimerCancelled());
|
Assert.assertTrue(dttr.isTimerCancelled());
|
||||||
Assert.assertTrue(Renewer.cancelled);
|
Assert.assertTrue(Renewer.cancelled);
|
||||||
|
|
||||||
|
// make sure the token also has been removed from appTokens
|
||||||
|
Assert.assertFalse(renewer.getDelegationTokens().contains(token1));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user