[ https://issues.apache.org/jira/browse/YARN-5859?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15676809#comment-15676809 ]
Jason Lowe commented on YARN-5859: ---------------------------------- Thanks for the patch! I noticed there are other rather low timeouts in these tests that weren't updated like these, and I assume they too could also fail if the test machine hiccups. {code} // Resource Localization should fail and state is modified accordingly. // Also Local should be release on the LocalizedResource. Assert .assertTrue(waitForResourceState(lr, rls, req, LocalResourceVisibility.PRIVATE, user, appId, ResourceState.FAILED, 200)); [...] // Now waiting for resource download to start. Here actual will not start // Only the resources will be populated into pending list. Assert .assertTrue(waitForPrivateDownloadToStart(rls, localizerId1, 2, 500)); [...] // Waiting for download to start. This should return false as new download // will not start Assert.assertFalse(waitForPublicDownloadToStart(spyService, 2, 100)); [...] // Waiting for download to start. This should return false as new download // will not start Assert.assertFalse(waitForPublicDownloadToStart(spyService, 1, 100)); {code} > TestResourceLocalizationService#testParallelDownloadAttemptsForPublicResource > sometimes fails > --------------------------------------------------------------------------------------------- > > Key: YARN-5859 > URL: https://issues.apache.org/jira/browse/YARN-5859 > Project: Hadoop YARN > Issue Type: Bug > Components: test > Reporter: Jason Lowe > Assignee: Eric Badger > Attachments: YARN-5859.001.patch > > > Saw the following test failure: > {noformat} > Running > org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer.TestResourceLocalizationService > Tests run: 14, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 12.011 sec > <<< FAILURE! - in > org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer.TestResourceLocalizationService > testParallelDownloadAttemptsForPublicResource(org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer.TestResourceLocalizationService) > Time elapsed: 0.586 sec <<< FAILURE! > java.lang.AssertionError: null > at org.junit.Assert.fail(Assert.java:86) > at org.junit.Assert.assertTrue(Assert.java:41) > at org.junit.Assert.assertTrue(Assert.java:52) > at > org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer.TestResourceLocalizationService.testParallelDownloadAttemptsForPublicResource(TestResourceLocalizationService.java:2108) > {noformat} > The assert occurred at this place in the code: > {code} > // Waiting for download to start. > Assert.assertTrue(waitForPublicDownloadToStart(spyService, 1, 200)); > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: yarn-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: yarn-issues-h...@hadoop.apache.org