[
https://issues.apache.org/jira/browse/OOZIE-3081?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16200029#comment-16200029
]
Attila Sasvari commented on OOZIE-3081:
---------------------------------------
Tests timed out:
{code}
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 02:00 h
{code}
Timeout shall not be related to my changeset, but it would worth to investigate
the reason. I saw that the number of test cases executed is changing from build
to build lately.
For now, I am going to re-run the Jenkins job.
> testSubmitWithLauncherQueue fails when FairScheduler is used
> ------------------------------------------------------------
>
> Key: OOZIE-3081
> URL: https://issues.apache.org/jira/browse/OOZIE-3081
> Project: Oozie
> Issue Type: Bug
> Components: tests
> Affects Versions: 5.0.0
> Reporter: Attila Sasvari
> Assignee: Attila Sasvari
> Priority: Trivial
> Attachments: OOZIE-3081-001.patch, OOZIE-3081-002.patch
>
>
> Running TestJavaActionExecutor fails with fair scheduler
> {code}
> Failed tests:
> testSubmitWithLauncherQueue(org.apache.oozie.action.hadoop.TestJavaActionExecutor):
>
> expected:<[]test> but was:<[root.]test>
> {code}
> Reason: FairScheduler adds a "root." prefix to the queue name in
> [org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.QueueManager.ensureRootPrefix()|https://github.com/apache/hadoop/blob/99292adcefdc6b8f280b8e100605fb39f755c38a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/QueueManager.java#L165]
> A potential way to fix the test case:
> - we can add a new function
> {code}
> private boolean isFairSchedulerUsed(Configuration conf) {
> return
> conf.get("yarn.resourcemanager.scheduler.class").contains(FairScheduler.class.getName());
> }
> {code}
> that can be called from {{testSubmitWithLauncherQueue()}}:
> {code}
> ...
> if (isFairSchedulerUsed(conf)) {
> assertEquals("root.test", queue);
> }
> else {
> assertEquals("test", queue);
> }
> ...
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)