You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oozie.apache.org by "Hadoop QA (JIRA)" <ji...@apache.org> on 2014/11/14 00:45:34 UTC

[jira] [Commented] (OOZIE-2065) Oozie returns incorrect total action for coord dryrun

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

Hadoop QA commented on OOZIE-2065:
----------------------------------

Testing JIRA OOZIE-2065

Cleaning local git workspace

----------------------------

{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.    {color:green}+1{color} the patch does not introduce any @author tags
.    {color:green}+1{color} the patch does not introduce any tabs
.    {color:green}+1{color} the patch does not introduce any trailing spaces
.    {color:green}+1{color} the patch does not introduce any line longer than 132
.    {color:red}-1{color} the patch does not add/modify any testcase
{color:green}+1 RAT{color}
.    {color:green}+1{color} the patch does not seem to introduce new RAT warnings
{color:green}+1 JAVADOC{color}
.    {color:green}+1{color} the patch does not seem to introduce new Javadoc warnings
{color:green}+1 COMPILE{color}
.    {color:green}+1{color} HEAD compiles
.    {color:green}+1{color} patch compiles
.    {color:green}+1{color} the patch does not seem to introduce new javac warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.    {color:green}+1{color} the patch does not change any JPA Entity/Colum/Basic/Lob/Transient annotations
.    {color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color}
.    Tests run: 1555
.    Tests failed: 6
.    Tests errors: 0

.    The patch failed the following testcases:

.      testConnectionDrop(org.apache.oozie.jms.TestJMSJobEventListener)
.      testActionKillCommandActionNumbers(org.apache.oozie.command.coord.TestCoordActionsKillXCommand)
.      testActionKillCommandDate(org.apache.oozie.command.coord.TestCoordActionsKillXCommand)
.      testTimeOut(org.apache.oozie.command.coord.TestCoordPushDependencyCheckXCommand)
.      testTimeOutWithUnresolvedMissingDependencies(org.apache.oozie.command.coord.TestCoordPushDependencyCheckXCommand)
.      testBundleStatusTransitServiceKilled2(org.apache.oozie.service.TestStatusTransitService)

{color:green}+1 DISTRO{color}
.    {color:green}+1{color} distro tarball builds with the patch 

----------------------------
{color:red}*-1 Overall result, please check the reported -1(s)*{color}


The full output of the test-patch run is available at

.   https://builds.apache.org/job/oozie-trunk-precommit-build/2093/

> Oozie returns incorrect total action for coord dryrun
> -----------------------------------------------------
>
>                 Key: OOZIE-2065
>                 URL: https://issues.apache.org/jira/browse/OOZIE-2065
>             Project: Oozie
>          Issue Type: Bug
>            Reporter: Purshotam Shah
>            Assignee: Purshotam Shah
>         Attachments: OOZIE-2065-V1.patch
>
>
> coord job should have 1 action, where action-nominal-time="2009-12-15T06:00Z".
> but dryrun reported 0.
> {code}
> $ oozie job -dryrun -config job.properties -oozie  https://localhost:4443/oozie
> ***coordJob after parsing: ***
> <?xml version="1.0" encoding="UTF-8"?>
> <coordinator-app xmlns="uri:oozie:coordinator:0.2" name="END2END-13" frequency="1" start="2009-12-15T06:00Z" end="2009-12-18T01:00Z" timezone="UTC" freq_timeunit="MONTH" end_of_duration="NONE">
>    <controls>
>       <timeout>10</timeout>
>       <concurrency>1</concurrency>
>       <execution>FIFO</execution>
>    </controls>
>    <input-events>
>       <data-in name="din2" dataset="din2">
>          <dataset name="din2" frequency="1" initial-instance="2009-06-01T05:00Z" timezone="UTC" freq_timeunit="DAY" end_of_duration="NONE">
>             <uri-template>hdfs://localhost/coord-input/${YEAR}/${MONTH}/${DAY}/${HOUR}/${MINUTE}</uri-template>
>          </dataset>
>          <start-instance>${coord:current(-coord:daysInMonth(-(START_OFFSET)) - (START_OFFSET) + 1)}</start-instance>
>          <end-instance>${coord:current(- (END_OFFSET))}</end-instance>
>       </data-in>
>    </input-events>
>    <output-events>
>       <data-out name="OUT" dataset="dout">
>          <dataset name="dout" frequency="15" initial-instance="2009-06-01T05:00Z" timezone="UTC" freq_timeunit="MINUTE" end_of_duration="NONE">
>             <uri-template>hdfs://localhost/coord-input/${YEAR}/${MONTH}/${DAY}/${HOUR}/${MINUTE}</uri-template>
>          </dataset>
>          <instance>${coord:current((variable1))}</instance>
>       </data-out>
>    </output-events>
>    <action>
>       <workflow>
>          <app-path>hdfs://localhost/wf-mr</app-path>
>          <configuration>
>             <property>
>                <name>jobTracker</name>
>                <value>${jobTracker}</value>
>             </property>
>             <property>
>                <name>nameNode</name>
>                <value>${nameNode}</value>
>             </property>
>             <property>
>                <name>queueName</name>
>                <value>${queueName}</value>
>             </property>
>             <property>
>                <name>inputDir</name>
>                <value>${coord:dataIn('din2')}</value>
>             </property>
>             <property>
>                <name>outputDir</name>
>                <value>${coord:dataOut('OUT')}</value>
>             </property>
>          </configuration>
>       </workflow>
>    </action>
> </coordinator-app>
> ***actions for instance***
> ***total coord actions is 0 ***
> {code}



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