You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@falcon.apache.org by "Shaik Idris Ali (JIRA)" <ji...@apache.org> on 2014/03/03 14:47:25 UTC

[jira] [Updated] (FALCON-332) Oozie execution order is wrongly mapped in Falcon for LAST_ONLY

     [ https://issues.apache.org/jira/browse/FALCON-332?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shaik Idris Ali updated FALCON-332:
-----------------------------------

    Description: 
Falcon process.xsd has restriction for execution order:
{code}   
 <xs:simpleType name="execution-type">
        <xs:restriction base="xs:string">
            <xs:enumeration value="FIFO"/>
            <xs:enumeration value="LIFO"/>
            <xs:enumeration value="ONLYLAST"/>
        </xs:restriction>
    </xs:simpleType>
{code}
where as the actual value required is LAST_ONLY

Otherwise oozie throws exception:
{code}
2014-03-03 13:41:17,912  WARN CoordSubmitXCommand:542 - USER[-] GROUP[-] TOKEN[-] APP[-] JOB[0012670-140302130514548-oozie-oozi-B] ACTION[-] ERROR:  
java.lang.IllegalArgumentException: No enum const class org.apache.oozie.client.CoordinatorJob$Execution.ONLYLAST
        at java.lang.Enum.valueOf(Enum.java:196)
        at org.apache.oozie.client.CoordinatorJob$Execution.valueOf(CoordinatorJob.java:31)
        at org.apache.oozie.command.coord.CoordSubmitXCommand.resolveInitial(CoordSubmitXCommand.java:711)
        at org.apache.oozie.command.coord.CoordSubmitXCommand.basicResolveAndIncludeDS(CoordSubmitXCommand.java:557)
        at org.apache.oozie.command.coord.CoordSubmitXCommand.submit(CoordSubmitXCommand.java:225)
        at org.apache.oozie.command.SubmitTransitionXCommand.execute(SubmitTransitionXCommand.java:81)
        at org.apache.oozie.command.SubmitTransitionXCommand.execute(SubmitTransitionXCommand.java:29)
        at org.apache.oozie.command.XCommand.call(XCommand.java:277)
        at org.apache.oozie.service.CallableQueueService$CallableWrapper.run(CallableQueueService.java:175)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
{code}

  was:
Falcon process.xsd has restriction for execution order:
    <xs:simpleType name="execution-type">
        <xs:restriction base="xs:string">
            <xs:enumeration value="FIFO"/>
            <xs:enumeration value="LIFO"/>
            <xs:enumeration value="ONLYLAST"/>
        </xs:restriction>
    </xs:simpleType>

where as the actual value required is LAST_ONLY

Otherwise oozie throws exception:
2014-03-03 13:41:17,912  WARN CoordSubmitXCommand:542 - USER[-] GROUP[-] TOKEN[-] APP[-] JOB[0012670-140302130514548-oozie-oozi-B] ACTION[-] ERROR:  
java.lang.IllegalArgumentException: No enum const class org.apache.oozie.client.CoordinatorJob$Execution.ONLYLAST
        at java.lang.Enum.valueOf(Enum.java:196)
        at org.apache.oozie.client.CoordinatorJob$Execution.valueOf(CoordinatorJob.java:31)
        at org.apache.oozie.command.coord.CoordSubmitXCommand.resolveInitial(CoordSubmitXCommand.java:711)
        at org.apache.oozie.command.coord.CoordSubmitXCommand.basicResolveAndIncludeDS(CoordSubmitXCommand.java:557)
        at org.apache.oozie.command.coord.CoordSubmitXCommand.submit(CoordSubmitXCommand.java:225)
        at org.apache.oozie.command.SubmitTransitionXCommand.execute(SubmitTransitionXCommand.java:81)
        at org.apache.oozie.command.SubmitTransitionXCommand.execute(SubmitTransitionXCommand.java:29)
        at org.apache.oozie.command.XCommand.call(XCommand.java:277)
        at org.apache.oozie.service.CallableQueueService$CallableWrapper.run(CallableQueueService.java:175)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)


> Oozie execution order is wrongly mapped in Falcon for LAST_ONLY
> ---------------------------------------------------------------
>
>                 Key: FALCON-332
>                 URL: https://issues.apache.org/jira/browse/FALCON-332
>             Project: Falcon
>          Issue Type: Bug
>          Components: client
>            Reporter: Shaik Idris Ali
>            Assignee: Shaik Idris Ali
>            Priority: Critical
>             Fix For: 0.5
>
>
> Falcon process.xsd has restriction for execution order:
> {code}   
>  <xs:simpleType name="execution-type">
>         <xs:restriction base="xs:string">
>             <xs:enumeration value="FIFO"/>
>             <xs:enumeration value="LIFO"/>
>             <xs:enumeration value="ONLYLAST"/>
>         </xs:restriction>
>     </xs:simpleType>
> {code}
> where as the actual value required is LAST_ONLY
> Otherwise oozie throws exception:
> {code}
> 2014-03-03 13:41:17,912  WARN CoordSubmitXCommand:542 - USER[-] GROUP[-] TOKEN[-] APP[-] JOB[0012670-140302130514548-oozie-oozi-B] ACTION[-] ERROR:  
> java.lang.IllegalArgumentException: No enum const class org.apache.oozie.client.CoordinatorJob$Execution.ONLYLAST
>         at java.lang.Enum.valueOf(Enum.java:196)
>         at org.apache.oozie.client.CoordinatorJob$Execution.valueOf(CoordinatorJob.java:31)
>         at org.apache.oozie.command.coord.CoordSubmitXCommand.resolveInitial(CoordSubmitXCommand.java:711)
>         at org.apache.oozie.command.coord.CoordSubmitXCommand.basicResolveAndIncludeDS(CoordSubmitXCommand.java:557)
>         at org.apache.oozie.command.coord.CoordSubmitXCommand.submit(CoordSubmitXCommand.java:225)
>         at org.apache.oozie.command.SubmitTransitionXCommand.execute(SubmitTransitionXCommand.java:81)
>         at org.apache.oozie.command.SubmitTransitionXCommand.execute(SubmitTransitionXCommand.java:29)
>         at org.apache.oozie.command.XCommand.call(XCommand.java:277)
>         at org.apache.oozie.service.CallableQueueService$CallableWrapper.run(CallableQueueService.java:175)
>         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
>         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)