YARN-5859. TestResourceLocalizationService#testParallelDownloadAttemptsForPublicResource sometimes fails. Contributed by Eric Badger
(cherry picked from commit 009452bb6d
)
This commit is contained in:
parent
589596f6c7
commit
38024eb8f7
|
@ -1888,7 +1888,7 @@ public class TestResourceLocalizationService {
|
||||||
createContainerLocalizationEvent(container1,
|
createContainerLocalizationEvent(container1,
|
||||||
LocalResourceVisibility.PRIVATE, req));
|
LocalResourceVisibility.PRIVATE, req));
|
||||||
Assert
|
Assert
|
||||||
.assertTrue(waitForPrivateDownloadToStart(rls, localizerId1, 1, 200));
|
.assertTrue(waitForPrivateDownloadToStart(rls, localizerId1, 1, 5000));
|
||||||
|
|
||||||
// Container - 2 now makes the request.
|
// Container - 2 now makes the request.
|
||||||
ContainerImpl container2 = createMockContainer(user, 2);
|
ContainerImpl container2 = createMockContainer(user, 2);
|
||||||
|
@ -1902,7 +1902,7 @@ public class TestResourceLocalizationService {
|
||||||
createContainerLocalizationEvent(container2,
|
createContainerLocalizationEvent(container2,
|
||||||
LocalResourceVisibility.PRIVATE, req));
|
LocalResourceVisibility.PRIVATE, req));
|
||||||
Assert
|
Assert
|
||||||
.assertTrue(waitForPrivateDownloadToStart(rls, localizerId2, 1, 200));
|
.assertTrue(waitForPrivateDownloadToStart(rls, localizerId2, 1, 5000));
|
||||||
|
|
||||||
// Retrieving localized resource.
|
// Retrieving localized resource.
|
||||||
LocalResourcesTracker tracker =
|
LocalResourcesTracker tracker =
|
||||||
|
@ -1944,7 +1944,7 @@ public class TestResourceLocalizationService {
|
||||||
Assert
|
Assert
|
||||||
.assertTrue(waitForResourceState(lr, rls, req,
|
.assertTrue(waitForResourceState(lr, rls, req,
|
||||||
LocalResourceVisibility.PRIVATE, user, appId, ResourceState.FAILED,
|
LocalResourceVisibility.PRIVATE, user, appId, ResourceState.FAILED,
|
||||||
200));
|
5000));
|
||||||
Assert.assertTrue(lr.getState().equals(ResourceState.FAILED));
|
Assert.assertTrue(lr.getState().equals(ResourceState.FAILED));
|
||||||
Assert.assertEquals(0, localizerRunner1.scheduled.size());
|
Assert.assertEquals(0, localizerRunner1.scheduled.size());
|
||||||
|
|
||||||
|
@ -2060,7 +2060,7 @@ public class TestResourceLocalizationService {
|
||||||
// Now waiting for resource download to start. Here actual will not start
|
// Now waiting for resource download to start. Here actual will not start
|
||||||
// Only the resources will be populated into pending list.
|
// Only the resources will be populated into pending list.
|
||||||
Assert
|
Assert
|
||||||
.assertTrue(waitForPrivateDownloadToStart(rls, localizerId1, 2, 500));
|
.assertTrue(waitForPrivateDownloadToStart(rls, localizerId1, 2, 5000));
|
||||||
|
|
||||||
// Validating user and application cache paths
|
// Validating user and application cache paths
|
||||||
|
|
||||||
|
@ -2210,10 +2210,10 @@ public class TestResourceLocalizationService {
|
||||||
// Waiting for resource to change into DOWNLOADING state.
|
// Waiting for resource to change into DOWNLOADING state.
|
||||||
Assert.assertTrue(waitForResourceState(null, spyService, req,
|
Assert.assertTrue(waitForResourceState(null, spyService, req,
|
||||||
LocalResourceVisibility.PUBLIC, user, null, ResourceState.DOWNLOADING,
|
LocalResourceVisibility.PUBLIC, user, null, ResourceState.DOWNLOADING,
|
||||||
200));
|
5000));
|
||||||
|
|
||||||
// Waiting for download to start.
|
// Waiting for download to start.
|
||||||
Assert.assertTrue(waitForPublicDownloadToStart(spyService, 1, 200));
|
Assert.assertTrue(waitForPublicDownloadToStart(spyService, 1, 5000));
|
||||||
|
|
||||||
LocalizedResource lr =
|
LocalizedResource lr =
|
||||||
getLocalizedResource(spyService, req, LocalResourceVisibility.PUBLIC,
|
getLocalizedResource(spyService, req, LocalResourceVisibility.PUBLIC,
|
||||||
|
@ -2236,7 +2236,7 @@ public class TestResourceLocalizationService {
|
||||||
|
|
||||||
// Waiting for download to start. This should return false as new download
|
// Waiting for download to start. This should return false as new download
|
||||||
// will not start
|
// will not start
|
||||||
Assert.assertFalse(waitForPublicDownloadToStart(spyService, 2, 100));
|
Assert.assertFalse(waitForPublicDownloadToStart(spyService, 2, 5000));
|
||||||
|
|
||||||
// Now Failing the resource download. As a part of it
|
// Now Failing the resource download. As a part of it
|
||||||
// resource state is changed and then lock is released.
|
// resource state is changed and then lock is released.
|
||||||
|
@ -2248,7 +2248,7 @@ public class TestResourceLocalizationService {
|
||||||
|
|
||||||
// Waiting for resource to change into FAILED state.
|
// Waiting for resource to change into FAILED state.
|
||||||
Assert.assertTrue(waitForResourceState(lr, spyService, req,
|
Assert.assertTrue(waitForResourceState(lr, spyService, req,
|
||||||
LocalResourceVisibility.PUBLIC, user, null, ResourceState.FAILED, 200));
|
LocalResourceVisibility.PUBLIC, user, null, ResourceState.FAILED, 5000));
|
||||||
// releasing lock as a part of download failed process.
|
// releasing lock as a part of download failed process.
|
||||||
lr.unlock();
|
lr.unlock();
|
||||||
// removing pending download request.
|
// removing pending download request.
|
||||||
|
@ -2268,7 +2268,7 @@ public class TestResourceLocalizationService {
|
||||||
dispatcher1.getEventHandler().handle(localizerEvent);
|
dispatcher1.getEventHandler().handle(localizerEvent);
|
||||||
// Waiting for download to start. This should return false as new download
|
// Waiting for download to start. This should return false as new download
|
||||||
// will not start
|
// will not start
|
||||||
Assert.assertFalse(waitForPublicDownloadToStart(spyService, 1, 100));
|
Assert.assertFalse(waitForPublicDownloadToStart(spyService, 1, 5000));
|
||||||
// Checking available permits now.
|
// Checking available permits now.
|
||||||
Assert.assertEquals(1, lr.sem.availablePermits());
|
Assert.assertEquals(1, lr.sem.availablePermits());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue