[ 
https://issues.apache.org/jira/browse/YARN-4785?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15200116#comment-15200116
 ] 

Hudson commented on YARN-4785:
------------------------------

FAILURE: Integrated in Hadoop-trunk-Commit #9473 (See 
[https://builds.apache.org/job/Hadoop-trunk-Commit/9473/])
YARN-4785. inconsistent value type of the type field for LeafQueueInfo 
(junping_du: rev ca8106d2dd03458944303d93679daa03b1d82ad5)
* 
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/dao/CapacitySchedulerInfo.java
* 
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/TestRMWebServicesCapacitySched.java


> inconsistent value type of the "type" field for LeafQueueInfo in response of 
> RM REST API - cluster/scheduler
> ------------------------------------------------------------------------------------------------------------
>
>                 Key: YARN-4785
>                 URL: https://issues.apache.org/jira/browse/YARN-4785
>             Project: Hadoop YARN
>          Issue Type: Bug
>          Components: webapp
>    Affects Versions: 2.6.0
>            Reporter: Jayesh
>            Assignee: Varun Vasudev
>              Labels: REST_API
>             Fix For: 2.8.0, 2.7.3, 2.6.5
>
>         Attachments: YARN-4785.001.patch, YARN-4785.branch-2.6.001.patch, 
> YARN-4785.branch-2.7.001.patch
>
>
> I see inconsistent value type ( String and Array ) of the "type" field for 
> LeafQueueInfo in response of RM REST API - cluster/scheduler
> as per the spec it should be always String.
> here is the sample output ( removed non-relevant fields )
> {code}
> {
>   "scheduler": {
>     "schedulerInfo": {
>       "type": "capacityScheduler",
>       "capacity": 100,
>       ...
>       "queueName": "root",
>       "queues": {
>         "queue": [
>           {
>             "type": "capacitySchedulerLeafQueueInfo",
>             "capacity": 0.1,
>             ....
>           },
>           {
>             "type": [
>               "capacitySchedulerLeafQueueInfo"
>             ],
>             "capacity": 0.1,
>             "queueName": "test-queue",
>             "state": "RUNNING",
>             ....
>           },
>           {
>             "type": [
>               "capacitySchedulerLeafQueueInfo"
>             ],
>             "capacity": 2.5,
>             ....
>           },
>           {
>             "capacity": 25,
>             ....
>             "state": "RUNNING",
>             "queues": {
>               "queue": [
>                 {
>                   "capacity": 6,
>                   "state": "RUNNING",
>                   "queues": {
>                     "queue": [
>                       {
>                         "type": "capacitySchedulerLeafQueueInfo",
>                         "capacity": 100,
>                         ...
>                       }
>                     ]
>                   },
>                   ....
>                 },
>                 {
>                   "capacity": 6,
>                   ...
>                   "state": "RUNNING",
>                   "queues": {
>                     "queue": [
>                       {
>                         "type": "capacitySchedulerLeafQueueInfo",
>                         "capacity": 100,
>                         ...
>                       }
>                     ]
>                   },
>                   ...
>                 },
>                 ...
>               ]
>             },
>             ...
>           }
>         ]
>       }
>     }
>   }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to