YARN-6359. TestRM#testApplicationKillAtAcceptedState fails rarely due to race condition. Contributed by Robert Kanter
This commit is contained in:
parent
253e3e78ab
commit
fdf8f8ebca
@ -18,6 +18,8 @@
|
|||||||
|
|
||||||
package org.apache.hadoop.yarn.server.resourcemanager;
|
package org.apache.hadoop.yarn.server.resourcemanager;
|
||||||
|
|
||||||
|
import com.google.common.base.Supplier;
|
||||||
|
import org.apache.hadoop.test.GenericTestUtils;
|
||||||
import org.apache.hadoop.yarn.event.DrainDispatcher;
|
import org.apache.hadoop.yarn.event.DrainDispatcher;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import static org.mockito.Matchers.argThat;
|
import static org.mockito.Matchers.argThat;
|
||||||
@ -631,7 +633,13 @@ protected Dispatcher createDispatcher() {
|
|||||||
rm.waitForState(application.getApplicationId(), RMAppState.KILLED);
|
rm.waitForState(application.getApplicationId(), RMAppState.KILLED);
|
||||||
|
|
||||||
// test metrics
|
// test metrics
|
||||||
metrics = rm.getResourceScheduler().getRootQueueMetrics();
|
GenericTestUtils.waitFor(new Supplier<Boolean>() {
|
||||||
|
@Override
|
||||||
|
public Boolean get() {
|
||||||
|
return appsKilled + 1 == metrics.getAppsKilled()
|
||||||
|
&& appsSubmitted + 1 == metrics.getAppsSubmitted();
|
||||||
|
}
|
||||||
|
}, 100, 10000);
|
||||||
Assert.assertEquals(appsKilled + 1, metrics.getAppsKilled());
|
Assert.assertEquals(appsKilled + 1, metrics.getAppsKilled());
|
||||||
Assert.assertEquals(appsSubmitted + 1, metrics.getAppsSubmitted());
|
Assert.assertEquals(appsSubmitted + 1, metrics.getAppsSubmitted());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user