You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oozie.apache.org by Mona Chitnis <mo...@apache.org> on 2013/08/12 23:59:52 UTC

[VOTE] Release Oozie 4.0.0 (RC1)

Hello Oozie community,

The release candidate 1 for Oozie 4.0.0 is available. (change - small release-log.txt correction in rc0 that Virag pointed out)

Oozie 4.0.0 has major features such as Hcatalog Integration, SLA Monitoring (with Dashboard in UI) and JMS Messaging. It has several other important bug fixes. You can refer to the release-log.txt for all the features and fixes.

Keys to verify the signature of the release artifact are available at
http://www.apache.org/dist/oozie/KEYS

Please download, test, and try it out:
http://people.apache.org/~mona/oozie-4.0.0-rc0

The release, md5 signature, gpg signature, and rat report can all
be found at the above address.

Note: This release also has a database schema change with additional tables and columns, so run the DB creation tool.
Below are the incompatible changes in this release:

OOZIE-1408 Change column type of "frequency" from int to varchar for coordinators
OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging does not work
OOZIE-1231 Provide access to launcher job URL from web console when using Map Reduce action

https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible

Also, 
If you are checking out the HCatalog integration functionality, refer to HCatalog installation instructions at -
http://hive.apache.org/docs/hcat_r0.5.0/install.html
And, ActiveMQ (JMS-compliant message broker) installation instructions at - http://activemq.apache.org/getting-started.html
The Oozie server settings required are enlisted in the Oozie install documentation itself.


Vote closes after 3 business days on Aug 15 15:00 PDT.



Thanks,

Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Mona Chitnis <ch...@yahoo-inc.com>.
Yes. Unless it makes sense to live with it.

On 8/26/13 11:31 AM, "Robert Kanter" <rk...@cloudera.com> wrote:

>Does this mean we'll need an RC3 to include OOZIE-1514?
>
>thanks
>- Robert
>
>
>On Mon, Aug 26, 2013 at 10:54 AM, Mona Chitnis <mo...@apache.org> wrote:
>
>> Thanks for the clarification Bowen. I was able to reproduce the issue
>>and
>> opening a blocker JIRA.
>>
>>
>>
>> Mona Chitnis
>> Software Engineer, Hadoop Team
>> Yahoo!
>>
>>
>> ________________________________
>>  From: bowen zhang <bo...@yahoo.com>
>> To: Mona Chitnis <mo...@apache.org>; "dev@oozie.apache.org" <
>> dev@oozie.apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
>> Sent: Monday, 26 August 2013 10:42 AM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>> Hi Mona,
>> I don't see how "coordAction.getMissingDependencies() is NULL" when you
>> rerun it. Since the first time when you normally run the action, the if
>> statement resolves to true and the line
>> "coordAction.setMissingDependencies(nonExistListStr);" sets the
>> MissingDependencies to empty string. So, when you rerun a particular
>> action, the two strings are both empty, making the if statement
>>evaluate to
>> false. The unit test you mentioned does not test rerun command.
>> Bowen
>>
>>
>>
>>
>> ________________________________
>> From: Mona Chitnis <mo...@apache.org>
>> To: "dev@oozie.apache.org" <de...@oozie.apache.org>;
>>"user@oozie.apache.org"
>> <us...@oozie.apache.org>; bowen zhang <bo...@yahoo.com>
>> Sent: Monday, August 26, 2013 10:13 AM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>>
>> This case - Rerun or Change command on a coordinator with no input
>> dependencies - has been tested specifically. In this case, missDeps =
>> coordAction.getMissingDependencies() is NULL, whereas nonExistList is
>> EMPTY. The if condition you mentioned thus resolves to true, and the
>> correct Db update executor - CoordActionUpdateForInputCheckJPAExecutor
>>is
>> executed.
>>
>> You can run an example or the unit test -
>> TestCoordActionInputCheckXCommand#testNoDatasetDependency to test it
>>out.
>>
>> Regards,
>>
>>
>>
>> Mona Chitnis
>> Software Engineer, Hadoop Team
>> Yahoo!
>>
>>
>> ________________________________
>> From: bowen zhang <bo...@yahoo.com>
>> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
>> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
>> Sent: Friday, 23 August 2013 5:08 PM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>> rerun oozie coordinator action that has no data dependency will make the
>> action stuck in "WAITING" forever.
>> The issue has to do with the change introduced in
>> coordActionInputCheckXCommand. The rerun action will fail this if
>>statement:
>> if (!nonExistListStr.equals(missingDeps))
>> since nonExistListStr and missingDeps are both empty strings. Once it
>> fails the if statement, isChangeDependency is still
>> set to false and the status change to "READY" will not be persisted
>>since
>> we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of
>> CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction
>>method.
>> the Action is in "WAITING" stage forever.
>>
>>
>>
>>
>> ________________________________
>> From: Ryota Egashira <eg...@yahoo-inc.com>
>> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
>> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
>> Sent: Friday, August 23, 2013 2:23 PM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>> +1
>>
>> -verified md5
>> -built and started oozie-server
>> -ran examples on hadoop-1.1.1 cluster
>> -checked SLA examples and UI
>>
>> Thanks
>> Ryota
>>
>> On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:
>>
>> >Hello Oozie community,
>> >
>> >
>> >The release candidate 2 for Oozie 4.0.0 is available. (Critical bug
>>fixes
>> >from RC1 and excluding 'workflowgenerator' from release tarball)
>> >
>> >Recap from previous 4.0.0 RCs,
>> >
>> >Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>> >Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>other
>> >important bug fixes. You can refer to the release-log.txt for all
>> the
>> >features and fixes.
>> >
>> >Keys to verify the signature of the release artifact are available at
>> >http://www.apache.org/dist/oozie/KEYS
>> >
>> >Please download, try out the release, and vote by replying on the
>>thread:
>> >http://people.apache.org/~mona/oozie-4.0.0-rc2
>> >
>> >The release, md5 signature, gpg signature, and rat report can all be
>> >found at the above address.
>> >
>> >Note: This release also has a database schema change with additional
>> >tables and columns, so run the DB creation tool.
>> >Below are the incompatible changes in this release:
>> >
>> >OOZIE-1408 Change column type of "frequency" from int to varchar for
>> >coordinators
>> >OOZIE-1357 Can't view more than 1000 actions of a coordinator and
>>paging
>> >does not
>> work
>> >OOZIE-1231 Provide access to launcher job URL from web console when
>>using
>> >Map Reduce action
>> >
>> >
>> 
>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20
>>l
>> >abels%20%3D%20incompatible
>> >
>> >Also,
>> >If you are checking out the HCatalog integration functionality, refer
>>to
>> >HCatalog installation instructions at -
>> >http://hive.apache.org/docs/hcat_r0.5.0/install.html
>> >And, ActiveMQ (JMS-compliant message broker) installation instructions
>>at
>> >- http://activemq.apache.org/getting-started.html
>> >The Oozie server settings required are enlisted in the Oozie install
>> >documentation
>> itself.
>> >
>> >
>> >Vote closes after 3 business days on Aug 27 11:00 PDT.
>> >
>> >
>> >
>> >Thanks,
>> >
>> >Mona Chitnis
>>


Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Mona Chitnis <ch...@yahoo-inc.com>.
Yes. Unless it makes sense to live with it.

On 8/26/13 11:31 AM, "Robert Kanter" <rk...@cloudera.com> wrote:

>Does this mean we'll need an RC3 to include OOZIE-1514?
>
>thanks
>- Robert
>
>
>On Mon, Aug 26, 2013 at 10:54 AM, Mona Chitnis <mo...@apache.org> wrote:
>
>> Thanks for the clarification Bowen. I was able to reproduce the issue
>>and
>> opening a blocker JIRA.
>>
>>
>>
>> Mona Chitnis
>> Software Engineer, Hadoop Team
>> Yahoo!
>>
>>
>> ________________________________
>>  From: bowen zhang <bo...@yahoo.com>
>> To: Mona Chitnis <mo...@apache.org>; "dev@oozie.apache.org" <
>> dev@oozie.apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
>> Sent: Monday, 26 August 2013 10:42 AM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>> Hi Mona,
>> I don't see how "coordAction.getMissingDependencies() is NULL" when you
>> rerun it. Since the first time when you normally run the action, the if
>> statement resolves to true and the line
>> "coordAction.setMissingDependencies(nonExistListStr);" sets the
>> MissingDependencies to empty string. So, when you rerun a particular
>> action, the two strings are both empty, making the if statement
>>evaluate to
>> false. The unit test you mentioned does not test rerun command.
>> Bowen
>>
>>
>>
>>
>> ________________________________
>> From: Mona Chitnis <mo...@apache.org>
>> To: "dev@oozie.apache.org" <de...@oozie.apache.org>;
>>"user@oozie.apache.org"
>> <us...@oozie.apache.org>; bowen zhang <bo...@yahoo.com>
>> Sent: Monday, August 26, 2013 10:13 AM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>>
>> This case - Rerun or Change command on a coordinator with no input
>> dependencies - has been tested specifically. In this case, missDeps =
>> coordAction.getMissingDependencies() is NULL, whereas nonExistList is
>> EMPTY. The if condition you mentioned thus resolves to true, and the
>> correct Db update executor - CoordActionUpdateForInputCheckJPAExecutor
>>is
>> executed.
>>
>> You can run an example or the unit test -
>> TestCoordActionInputCheckXCommand#testNoDatasetDependency to test it
>>out.
>>
>> Regards,
>>
>>
>>
>> Mona Chitnis
>> Software Engineer, Hadoop Team
>> Yahoo!
>>
>>
>> ________________________________
>> From: bowen zhang <bo...@yahoo.com>
>> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
>> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
>> Sent: Friday, 23 August 2013 5:08 PM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>> rerun oozie coordinator action that has no data dependency will make the
>> action stuck in "WAITING" forever.
>> The issue has to do with the change introduced in
>> coordActionInputCheckXCommand. The rerun action will fail this if
>>statement:
>> if (!nonExistListStr.equals(missingDeps))
>> since nonExistListStr and missingDeps are both empty strings. Once it
>> fails the if statement, isChangeDependency is still
>> set to false and the status change to "READY" will not be persisted
>>since
>> we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of
>> CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction
>>method.
>> the Action is in "WAITING" stage forever.
>>
>>
>>
>>
>> ________________________________
>> From: Ryota Egashira <eg...@yahoo-inc.com>
>> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
>> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
>> Sent: Friday, August 23, 2013 2:23 PM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>>
>>
>> +1
>>
>> -verified md5
>> -built and started oozie-server
>> -ran examples on hadoop-1.1.1 cluster
>> -checked SLA examples and UI
>>
>> Thanks
>> Ryota
>>
>> On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:
>>
>> >Hello Oozie community,
>> >
>> >
>> >The release candidate 2 for Oozie 4.0.0 is available. (Critical bug
>>fixes
>> >from RC1 and excluding 'workflowgenerator' from release tarball)
>> >
>> >Recap from previous 4.0.0 RCs,
>> >
>> >Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>> >Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>other
>> >important bug fixes. You can refer to the release-log.txt for all
>> the
>> >features and fixes.
>> >
>> >Keys to verify the signature of the release artifact are available at
>> >http://www.apache.org/dist/oozie/KEYS
>> >
>> >Please download, try out the release, and vote by replying on the
>>thread:
>> >http://people.apache.org/~mona/oozie-4.0.0-rc2
>> >
>> >The release, md5 signature, gpg signature, and rat report can all be
>> >found at the above address.
>> >
>> >Note: This release also has a database schema change with additional
>> >tables and columns, so run the DB creation tool.
>> >Below are the incompatible changes in this release:
>> >
>> >OOZIE-1408 Change column type of "frequency" from int to varchar for
>> >coordinators
>> >OOZIE-1357 Can't view more than 1000 actions of a coordinator and
>>paging
>> >does not
>> work
>> >OOZIE-1231 Provide access to launcher job URL from web console when
>>using
>> >Map Reduce action
>> >
>> >
>> 
>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20
>>l
>> >abels%20%3D%20incompatible
>> >
>> >Also,
>> >If you are checking out the HCatalog integration functionality, refer
>>to
>> >HCatalog installation instructions at -
>> >http://hive.apache.org/docs/hcat_r0.5.0/install.html
>> >And, ActiveMQ (JMS-compliant message broker) installation instructions
>>at
>> >- http://activemq.apache.org/getting-started.html
>> >The Oozie server settings required are enlisted in the Oozie install
>> >documentation
>> itself.
>> >
>> >
>> >Vote closes after 3 business days on Aug 27 11:00 PDT.
>> >
>> >
>> >
>> >Thanks,
>> >
>> >Mona Chitnis
>>


Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Robert Kanter <rk...@cloudera.com>.
Does this mean we'll need an RC3 to include OOZIE-1514?

thanks
- Robert


On Mon, Aug 26, 2013 at 10:54 AM, Mona Chitnis <mo...@apache.org> wrote:

> Thanks for the clarification Bowen. I was able to reproduce the issue and
> opening a blocker JIRA.
>
>
>
> Mona Chitnis
> Software Engineer, Hadoop Team
> Yahoo!
>
>
> ________________________________
>  From: bowen zhang <bo...@yahoo.com>
> To: Mona Chitnis <mo...@apache.org>; "dev@oozie.apache.org" <
> dev@oozie.apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
> Sent: Monday, 26 August 2013 10:42 AM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
> Hi Mona,
> I don't see how "coordAction.getMissingDependencies() is NULL" when you
> rerun it. Since the first time when you normally run the action, the if
> statement resolves to true and the line
> "coordAction.setMissingDependencies(nonExistListStr);" sets the
> MissingDependencies to empty string. So, when you rerun a particular
> action, the two strings are both empty, making the if statement evaluate to
> false. The unit test you mentioned does not test rerun command.
> Bowen
>
>
>
>
> ________________________________
> From: Mona Chitnis <mo...@apache.org>
> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; "user@oozie.apache.org"
> <us...@oozie.apache.org>; bowen zhang <bo...@yahoo.com>
> Sent: Monday, August 26, 2013 10:13 AM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
>
> This case - Rerun or Change command on a coordinator with no input
> dependencies - has been tested specifically. In this case, missDeps =
> coordAction.getMissingDependencies() is NULL, whereas nonExistList is
> EMPTY. The if condition you mentioned thus resolves to true, and the
> correct Db update executor - CoordActionUpdateForInputCheckJPAExecutor is
> executed.
>
> You can run an example or the unit test -
> TestCoordActionInputCheckXCommand#testNoDatasetDependency to test it out.
>
> Regards,
>
>
>
> Mona Chitnis
> Software Engineer, Hadoop Team
> Yahoo!
>
>
> ________________________________
> From: bowen zhang <bo...@yahoo.com>
> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
> Sent: Friday, 23 August 2013 5:08 PM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
> rerun oozie coordinator action that has no data dependency will make the
> action stuck in "WAITING" forever.
> The issue has to do with the change introduced in
> coordActionInputCheckXCommand. The rerun action will fail this if statement:
> if (!nonExistListStr.equals(missingDeps))
> since nonExistListStr and missingDeps are both empty strings. Once it
> fails the if statement, isChangeDependency is still
> set to false and the status change to "READY" will not be persisted since
> we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of
> CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction method.
> the Action is in "WAITING" stage forever.
>
>
>
>
> ________________________________
> From: Ryota Egashira <eg...@yahoo-inc.com>
> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
> Sent: Friday, August 23, 2013 2:23 PM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
> +1
>
> -verified md5
> -built and started oozie-server
> -ran examples on hadoop-1.1.1 cluster
> -checked SLA examples and UI
>
> Thanks
> Ryota
>
> On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:
>
> >Hello Oozie community,
> >
> >
> >The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
> >from RC1 and excluding 'workflowgenerator' from release tarball)
> >
> >Recap from previous 4.0.0 RCs,
> >
> >Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> >Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> >important bug fixes. You can refer to the release-log.txt for all
> the
> >features and fixes.
> >
> >Keys to verify the signature of the release artifact are available at
> >http://www.apache.org/dist/oozie/KEYS
> >
> >Please download, try out the release, and vote by replying on the thread:
> >http://people.apache.org/~mona/oozie-4.0.0-rc2
> >
> >The release, md5 signature, gpg signature, and rat report can all be
> >found at the above address.
> >
> >Note: This release also has a database schema change with additional
> >tables and columns, so run the DB creation tool.
> >Below are the incompatible changes in this release:
> >
> >OOZIE-1408 Change column type of "frequency" from int to varchar for
> >coordinators
> >OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
> >does not
> work
> >OOZIE-1231 Provide access to launcher job URL from web console when using
> >Map Reduce action
> >
> >
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
> >abels%20%3D%20incompatible
> >
> >Also,
> >If you are checking out the HCatalog integration functionality, refer to
> >HCatalog installation instructions at -
> >http://hive.apache.org/docs/hcat_r0.5.0/install.html
> >And, ActiveMQ (JMS-compliant message broker) installation instructions at
> >- http://activemq.apache.org/getting-started.html
> >The Oozie server settings required are enlisted in the Oozie install
> >documentation
> itself.
> >
> >
> >Vote closes after 3 business days on Aug 27 11:00 PDT.
> >
> >
> >
> >Thanks,
> >
> >Mona Chitnis
>

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Robert Kanter <rk...@cloudera.com>.
Does this mean we'll need an RC3 to include OOZIE-1514?

thanks
- Robert


On Mon, Aug 26, 2013 at 10:54 AM, Mona Chitnis <mo...@apache.org> wrote:

> Thanks for the clarification Bowen. I was able to reproduce the issue and
> opening a blocker JIRA.
>
>
>
> Mona Chitnis
> Software Engineer, Hadoop Team
> Yahoo!
>
>
> ________________________________
>  From: bowen zhang <bo...@yahoo.com>
> To: Mona Chitnis <mo...@apache.org>; "dev@oozie.apache.org" <
> dev@oozie.apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
> Sent: Monday, 26 August 2013 10:42 AM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
> Hi Mona,
> I don't see how "coordAction.getMissingDependencies() is NULL" when you
> rerun it. Since the first time when you normally run the action, the if
> statement resolves to true and the line
> "coordAction.setMissingDependencies(nonExistListStr);" sets the
> MissingDependencies to empty string. So, when you rerun a particular
> action, the two strings are both empty, making the if statement evaluate to
> false. The unit test you mentioned does not test rerun command.
> Bowen
>
>
>
>
> ________________________________
> From: Mona Chitnis <mo...@apache.org>
> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; "user@oozie.apache.org"
> <us...@oozie.apache.org>; bowen zhang <bo...@yahoo.com>
> Sent: Monday, August 26, 2013 10:13 AM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
>
> This case - Rerun or Change command on a coordinator with no input
> dependencies - has been tested specifically. In this case, missDeps =
> coordAction.getMissingDependencies() is NULL, whereas nonExistList is
> EMPTY. The if condition you mentioned thus resolves to true, and the
> correct Db update executor - CoordActionUpdateForInputCheckJPAExecutor is
> executed.
>
> You can run an example or the unit test -
> TestCoordActionInputCheckXCommand#testNoDatasetDependency to test it out.
>
> Regards,
>
>
>
> Mona Chitnis
> Software Engineer, Hadoop Team
> Yahoo!
>
>
> ________________________________
> From: bowen zhang <bo...@yahoo.com>
> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
> Sent: Friday, 23 August 2013 5:08 PM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
> rerun oozie coordinator action that has no data dependency will make the
> action stuck in "WAITING" forever.
> The issue has to do with the change introduced in
> coordActionInputCheckXCommand. The rerun action will fail this if statement:
> if (!nonExistListStr.equals(missingDeps))
> since nonExistListStr and missingDeps are both empty strings. Once it
> fails the if statement, isChangeDependency is still
> set to false and the status change to "READY" will not be persisted since
> we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of
> CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction method.
> the Action is in "WAITING" stage forever.
>
>
>
>
> ________________________________
> From: Ryota Egashira <eg...@yahoo-inc.com>
> To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
> mona@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>
> Sent: Friday, August 23, 2013 2:23 PM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
>
>
> +1
>
> -verified md5
> -built and started oozie-server
> -ran examples on hadoop-1.1.1 cluster
> -checked SLA examples and UI
>
> Thanks
> Ryota
>
> On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:
>
> >Hello Oozie community,
> >
> >
> >The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
> >from RC1 and excluding 'workflowgenerator' from release tarball)
> >
> >Recap from previous 4.0.0 RCs,
> >
> >Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> >Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> >important bug fixes. You can refer to the release-log.txt for all
> the
> >features and fixes.
> >
> >Keys to verify the signature of the release artifact are available at
> >http://www.apache.org/dist/oozie/KEYS
> >
> >Please download, try out the release, and vote by replying on the thread:
> >http://people.apache.org/~mona/oozie-4.0.0-rc2
> >
> >The release, md5 signature, gpg signature, and rat report can all be
> >found at the above address.
> >
> >Note: This release also has a database schema change with additional
> >tables and columns, so run the DB creation tool.
> >Below are the incompatible changes in this release:
> >
> >OOZIE-1408 Change column type of "frequency" from int to varchar for
> >coordinators
> >OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
> >does not
> work
> >OOZIE-1231 Provide access to launcher job URL from web console when using
> >Map Reduce action
> >
> >
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
> >abels%20%3D%20incompatible
> >
> >Also,
> >If you are checking out the HCatalog integration functionality, refer to
> >HCatalog installation instructions at -
> >http://hive.apache.org/docs/hcat_r0.5.0/install.html
> >And, ActiveMQ (JMS-compliant message broker) installation instructions at
> >- http://activemq.apache.org/getting-started.html
> >The Oozie server settings required are enlisted in the Oozie install
> >documentation
> itself.
> >
> >
> >Vote closes after 3 business days on Aug 27 11:00 PDT.
> >
> >
> >
> >Thanks,
> >
> >Mona Chitnis
>

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Mona Chitnis <mo...@apache.org>.
Thanks for the clarification Bowen. I was able to reproduce the issue and opening a blocker JIRA.


 
Mona Chitnis
Software Engineer, Hadoop Team
Yahoo!


________________________________
 From: bowen zhang <bo...@yahoo.com>
To: Mona Chitnis <mo...@apache.org>; "dev@oozie.apache.org" <de...@oozie.apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Monday, 26 August 2013 10:42 AM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
 

Hi Mona,
I don't see how "coordAction.getMissingDependencies() is NULL" when you rerun it. Since the first time when you normally run the action, the if statement resolves to true and the line "coordAction.setMissingDependencies(nonExistListStr);" sets the MissingDependencies to empty string. So, when you rerun a particular action, the two strings are both empty, making the if statement evaluate to false. The unit test you mentioned does not test rerun command.
Bowen




________________________________
From: Mona Chitnis <mo...@apache.org>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>; bowen zhang <bo...@yahoo.com> 
Sent: Monday, August 26, 2013 10:13 AM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)



This case - Rerun or Change command on a coordinator with no input dependencies - has been tested specifically. In this case, missDeps = coordAction.getMissingDependencies() is NULL, whereas nonExistList is EMPTY. The if condition you mentioned thus resolves to true, and the correct Db update executor - CoordActionUpdateForInputCheckJPAExecutor is executed.

You can run an example or the unit test - TestCoordActionInputCheckXCommand#testNoDatasetDependency to test it out.

Regards,


 
Mona Chitnis
Software Engineer, Hadoop Team
Yahoo!


________________________________
From: bowen zhang <bo...@yahoo.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Friday, 23 August 2013 5:08 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)


rerun oozie coordinator action that has no data dependency will make the action stuck in "WAITING" forever.
The issue has to do with the change introduced in coordActionInputCheckXCommand. The rerun action will fail this if statement:
if (!nonExistListStr.equals(missingDeps))
since nonExistListStr and missingDeps are both empty strings. Once it fails the if statement, isChangeDependency is still
set to false and the status change to "READY" will not be persisted since we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction method.
the Action is in "WAITING" stage forever.




________________________________
From: Ryota Egashira <eg...@yahoo-inc.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Friday, August 23, 2013 2:23 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)


+1 

-verified md5
-built and started oozie-server
-ran examples on hadoop-1.1.1 cluster
-checked SLA examples and UI

Thanks 
Ryota

On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
>from RC1 and excluding 'workflowgenerator' from release tarball)
>
>Recap from previous 4.0.0 RCs,
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all
the
>features and fixes.
>
>Keys to verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download, try out the release, and vote by replying on the thread:
>http://people.apache.org/~mona/oozie-4.0.0-rc2
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>does not
work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation
itself.
>
>
>Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
>Thanks,
>
>Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by bowen zhang <bo...@yahoo.com>.
Hi Mona,
I don't see how "coordAction.getMissingDependencies() is NULL" when you rerun it. Since the first time when you normally run the action, the if statement resolves to true and the line "coordAction.setMissingDependencies(nonExistListStr);" sets the MissingDependencies to empty string. So, when you rerun a particular action, the two strings are both empty, making the if statement evaluate to false. The unit test you mentioned does not test rerun command.
Bowen




________________________________
 From: Mona Chitnis <mo...@apache.org>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org>; bowen zhang <bo...@yahoo.com> 
Sent: Monday, August 26, 2013 10:13 AM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
 


This case - Rerun or Change command on a coordinator with no input dependencies - has been tested specifically. In this case, missDeps = coordAction.getMissingDependencies() is NULL, whereas nonExistList is EMPTY. The if condition you mentioned thus resolves to true, and the correct Db update executor - CoordActionUpdateForInputCheckJPAExecutor is executed.

You can run an example or the unit test - TestCoordActionInputCheckXCommand#testNoDatasetDependency to test it out.

Regards,


 
Mona Chitnis
Software Engineer, Hadoop Team
Yahoo!


________________________________
 From: bowen zhang <bo...@yahoo.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Friday, 23 August 2013 5:08 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
 

rerun oozie coordinator action that has no data dependency will make the action stuck in "WAITING" forever.
The issue has to do with the change introduced in coordActionInputCheckXCommand. The rerun action will fail this if statement:
if (!nonExistListStr.equals(missingDeps))
since nonExistListStr and missingDeps are both empty strings. Once it fails the if statement, isChangeDependency is still
 set to false and the status change to "READY" will not be persisted since we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction method.
the Action is in "WAITING" stage forever.




________________________________
From: Ryota Egashira <eg...@yahoo-inc.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Friday, August 23, 2013 2:23 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)


+1 

-verified md5
-built and started oozie-server
-ran examples on hadoop-1.1.1 cluster
-checked SLA examples and UI

Thanks 
Ryota

On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
>from RC1 and excluding 'workflowgenerator' from release tarball)
>
>Recap from previous 4.0.0 RCs,
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all
 the
>features and fixes.
>
>Keys to verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download, try out the release, and vote by replying on the thread:
>http://people.apache.org/~mona/oozie-4.0.0-rc2
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>does not
 work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation
 itself.
>
>
>Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
>Thanks,
>
>Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Mona Chitnis <mo...@apache.org>.
This case - Rerun or Change command on a coordinator with no input dependencies - has been tested specifically. In this case, missDeps = coordAction.getMissingDependencies() is NULL, whereas nonExistList is EMPTY. The if condition you mentioned thus resolves to true, and the correct Db update executor - CoordActionUpdateForInputCheckJPAExecutor is executed.

You can run an example or the unit test - TestCoordActionInputCheckXCommand#testNoDatasetDependency to test it out.

Regards,


 
Mona Chitnis
Software Engineer, Hadoop Team
Yahoo!


________________________________
 From: bowen zhang <bo...@yahoo.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Friday, 23 August 2013 5:08 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
 

rerun oozie coordinator action that has no data dependency will make the action stuck in "WAITING" forever.
The issue has to do with the change introduced in coordActionInputCheckXCommand. The rerun action will fail this if statement:
if (!nonExistListStr.equals(missingDeps))
since nonExistListStr and missingDeps are both empty strings. Once it fails the if statement, isChangeDependency is still set to false and the status change to "READY" will not be persisted since we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction method.
the Action is in "WAITING" stage forever.




________________________________
From: Ryota Egashira <eg...@yahoo-inc.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Friday, August 23, 2013 2:23 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)


+1 

-verified md5
-built and started oozie-server
-ran examples on hadoop-1.1.1 cluster
-checked SLA examples and UI

Thanks 
Ryota

On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
>from RC1 and excluding 'workflowgenerator' from release tarball)
>
>Recap from previous 4.0.0 RCs,
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all the
>features and fixes.
>
>Keys to verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download, try out the release, and vote by replying on the thread:
>http://people.apache.org/~mona/oozie-4.0.0-rc2
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>does not work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation itself.
>
>
>Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
>Thanks,
>
>Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by bowen zhang <bo...@yahoo.com>.
rerun oozie coordinator action that has no data dependency will make the action stuck in "WAITING" forever.
The issue has to do with the change introduced in coordActionInputCheckXCommand. The rerun action will fail this if statement:
if (!nonExistListStr.equals(missingDeps))
since nonExistListStr and missingDeps are both empty strings. Once it fails the if statement, isChangeDependency is still set to false and the status change to "READY" will not be persisted since we will call CoordActionUpdateForModifiedTimeJPAExecutor instead of CoordActionUpdateForInputCheckJPAExecutor in the updateCoordAction method.
the Action is in "WAITING" stage forever.




________________________________
 From: Ryota Egashira <eg...@yahoo-inc.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org>; "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Friday, August 23, 2013 2:23 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC2)
 

+1 

-verified md5
-built and started oozie-server
-ran examples on hadoop-1.1.1 cluster
-checked SLA examples and UI

Thanks 
Ryota

On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
>from RC1 and excluding 'workflowgenerator' from release tarball)
>
>Recap from previous 4.0.0 RCs,
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all the
>features and fixes.
>
>Keys to verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download, try out the release, and vote by replying on the thread:
>http://people.apache.org/~mona/oozie-4.0.0-rc2
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>does not work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation itself.
>
>
>Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
>Thanks,
>
>Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Robert Kanter <rk...@cloudera.com>.
+1

+ Verified md5
+ Built and setup Oozie (on Java 7)
+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
jars were Hadoop 1.1)
+ Tried some misc Oozie commands and UI clicks on the examples
+ Verified that wfgen isn't there


thanks
- Robert



On Fri, Aug 23, 2013 at 10:36 AM, Mona Chitnis <mo...@apache.org> wrote:

> Hello Oozie community,
>
>
> The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
> from RC1 and excluding 'workflowgenerator' from release tarball)
>
> Recap from previous 4.0.0 RCs,
>
> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> important bug fixes. You can refer to the release-log.txt for all the
> features and fixes.
>
> Keys to verify the signature of the release artifact are available at
> http://www.apache.org/dist/oozie/KEYS
>
> Please download, try out the release, and vote by replying on the thread:
> http://people.apache.org/~mona/oozie-4.0.0-rc2
>
> The release, md5 signature, gpg signature, and rat report can all be found
> at the above address.
>
> Note: This release also has a database schema change with additional
> tables and columns, so run the DB creation tool.
> Below are the incompatible changes in this release:
>
> OOZIE-1408 Change column type of "frequency" from int to varchar for
> coordinators
> OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
> does not work
> OOZIE-1231 Provide access to launcher job URL from web console when using
> Map Reduce action
>
>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible
>
> Also,
> If you are checking out the HCatalog integration functionality, refer to
> HCatalog installation instructions at -
> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> And, ActiveMQ (JMS-compliant message broker) installation instructions at
> - http://activemq.apache.org/getting-started.html
> The Oozie server settings required are enlisted in the Oozie install
> documentation itself.
>
>
> Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
> Thanks,
>
> Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Robert Kanter <rk...@cloudera.com>.
+1

+ Verified md5
+ Built and setup Oozie (on Java 7)
+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
jars were Hadoop 1.1)
+ Tried some misc Oozie commands and UI clicks on the examples
+ Verified that wfgen isn't there


thanks
- Robert



On Fri, Aug 23, 2013 at 10:36 AM, Mona Chitnis <mo...@apache.org> wrote:

> Hello Oozie community,
>
>
> The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
> from RC1 and excluding 'workflowgenerator' from release tarball)
>
> Recap from previous 4.0.0 RCs,
>
> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> important bug fixes. You can refer to the release-log.txt for all the
> features and fixes.
>
> Keys to verify the signature of the release artifact are available at
> http://www.apache.org/dist/oozie/KEYS
>
> Please download, try out the release, and vote by replying on the thread:
> http://people.apache.org/~mona/oozie-4.0.0-rc2
>
> The release, md5 signature, gpg signature, and rat report can all be found
> at the above address.
>
> Note: This release also has a database schema change with additional
> tables and columns, so run the DB creation tool.
> Below are the incompatible changes in this release:
>
> OOZIE-1408 Change column type of "frequency" from int to varchar for
> coordinators
> OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
> does not work
> OOZIE-1231 Provide access to launcher job URL from web console when using
> Map Reduce action
>
>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible
>
> Also,
> If you are checking out the HCatalog integration functionality, refer to
> HCatalog installation instructions at -
> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> And, ActiveMQ (JMS-compliant message broker) installation instructions at
> - http://activemq.apache.org/getting-started.html
> The Oozie server settings required are enlisted in the Oozie install
> documentation itself.
>
>
> Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
> Thanks,
>
> Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Mona Chitnis <ch...@yahoo-inc.com>.
+1

Verified signature and MD5.
Built and setup Oozie, ran examples against both Hadoop 1 and 2 (with
respective JARS in libext)

--Mona

On 8/30/13 10:04 AM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:

>+1
>
>Verified the signature
>Verified MD5
>Build and ran few examples
>
>Thanks,
>Virag
>
>On 8/28/13 6:32 PM, "bowen zhang" <bo...@yahoo.com> wrote:
>
>>+1
>>
>>
>>
>>________________________________
>> From: Robert Kanter <rk...@cloudera.com>
>>To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis
>><mo...@apache.org>
>>Cc: "user@oozie.apache.org" <us...@oozie.apache.org>
>>Sent: Tuesday, August 27, 2013 3:55 PM
>>Subject: Re: [VOTE] Release Oozie 4.0.0 (RC3)
>> 
>>
>>+1
>>
>>+ Verified md5
>>+ Built and setup Oozie (on Java 7)
>>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>>jars were Hadoop 1.1)
>>+ Tried some misc Oozie commands and UI clicks on the examples
>>
>>
>>thanks
>>- Robert
>>
>>
>>On Tue, Aug 27, 2013 at 1:04 PM, Mona Chitnis <mo...@apache.org> wrote:
>>
>>> Hello Oozie community,
>>>
>>>
>>> The release candidate 3 for Oozie 4.0.0 is available. (Including bug
>>>fix
>>> OOZIE-1514 above RC2)
>>>
>>> Keys to
>>>  verify the signature of the release artifact are available at
>>> http://www.apache.org/dist/oozie/KEYS
>>>
>>> Please download and try out the release at
>>> http://people.apache.org/~mona/oozie-4.0.0-rc3/
>>>
>>> The release, md5 signature, gpg signature, and rat report can all be
>>>found
>>> at the above address.
>>>
>>> Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>>>
>>> (Recap from previous 4.0.0 RCs)
>>>
>>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>>other
>>> important bug fixes. You can refer to the release-log.txt for all the
>>> features and fixes.
>>>
>>> Note: This release also has a database schema change with additional
>>> tables and columns, so run the DB creation tool.
>>> Below are the incompatible changes in this release:
>>>
>>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>>> coordinators
>>> OOZIE-1357 Can't view
>>>  more than 1000 actions of a coordinator and paging does not work
>>> OOZIE-1231 Provide access to launcher job URL from web console when
>>>using
>>> Map Reduce action
>>>
>>>
>>> 
>>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
>>>0
>>>labels%20%3D%20incompatible
>>>
>>> Also,
>>> If you are checking out the HCatalog integration functionality, refer
>>>to
>>> HCatalog installation instructions at -
>>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>>at
>>> - http://activemq.apache.org/getting-started.html
>>> The Oozie server settings required are enlisted in the Oozie install
>>> documentation itself.
>>>
>>>
>>>
>>> Thanks,
>>>
>>> Mona Chitnis
>


Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Mona Chitnis <ch...@yahoo-inc.com>.
+1

Verified signature and MD5.
Built and setup Oozie, ran examples against both Hadoop 1 and 2 (with
respective JARS in libext)

--Mona

On 8/30/13 10:04 AM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:

>+1
>
>Verified the signature
>Verified MD5
>Build and ran few examples
>
>Thanks,
>Virag
>
>On 8/28/13 6:32 PM, "bowen zhang" <bo...@yahoo.com> wrote:
>
>>+1
>>
>>
>>
>>________________________________
>> From: Robert Kanter <rk...@cloudera.com>
>>To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis
>><mo...@apache.org>
>>Cc: "user@oozie.apache.org" <us...@oozie.apache.org>
>>Sent: Tuesday, August 27, 2013 3:55 PM
>>Subject: Re: [VOTE] Release Oozie 4.0.0 (RC3)
>> 
>>
>>+1
>>
>>+ Verified md5
>>+ Built and setup Oozie (on Java 7)
>>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>>jars were Hadoop 1.1)
>>+ Tried some misc Oozie commands and UI clicks on the examples
>>
>>
>>thanks
>>- Robert
>>
>>
>>On Tue, Aug 27, 2013 at 1:04 PM, Mona Chitnis <mo...@apache.org> wrote:
>>
>>> Hello Oozie community,
>>>
>>>
>>> The release candidate 3 for Oozie 4.0.0 is available. (Including bug
>>>fix
>>> OOZIE-1514 above RC2)
>>>
>>> Keys to
>>>  verify the signature of the release artifact are available at
>>> http://www.apache.org/dist/oozie/KEYS
>>>
>>> Please download and try out the release at
>>> http://people.apache.org/~mona/oozie-4.0.0-rc3/
>>>
>>> The release, md5 signature, gpg signature, and rat report can all be
>>>found
>>> at the above address.
>>>
>>> Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>>>
>>> (Recap from previous 4.0.0 RCs)
>>>
>>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>>other
>>> important bug fixes. You can refer to the release-log.txt for all the
>>> features and fixes.
>>>
>>> Note: This release also has a database schema change with additional
>>> tables and columns, so run the DB creation tool.
>>> Below are the incompatible changes in this release:
>>>
>>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>>> coordinators
>>> OOZIE-1357 Can't view
>>>  more than 1000 actions of a coordinator and paging does not work
>>> OOZIE-1231 Provide access to launcher job URL from web console when
>>>using
>>> Map Reduce action
>>>
>>>
>>> 
>>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
>>>0
>>>labels%20%3D%20incompatible
>>>
>>> Also,
>>> If you are checking out the HCatalog integration functionality, refer
>>>to
>>> HCatalog installation instructions at -
>>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>>at
>>> - http://activemq.apache.org/getting-started.html
>>> The Oozie server settings required are enlisted in the Oozie install
>>> documentation itself.
>>>
>>>
>>>
>>> Thanks,
>>>
>>> Mona Chitnis
>


Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Virag Kothari <vi...@yahoo-inc.com>.
+1

Verified the signature
Verified MD5
Build and ran few examples

Thanks,
Virag

On 8/28/13 6:32 PM, "bowen zhang" <bo...@yahoo.com> wrote:

>+1
>
>
>
>________________________________
> From: Robert Kanter <rk...@cloudera.com>
>To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis
><mo...@apache.org> 
>Cc: "user@oozie.apache.org" <us...@oozie.apache.org>
>Sent: Tuesday, August 27, 2013 3:55 PM
>Subject: Re: [VOTE] Release Oozie 4.0.0 (RC3)
> 
>
>+1
>
>+ Verified md5
>+ Built and setup Oozie (on Java 7)
>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>jars were Hadoop 1.1)
>+ Tried some misc Oozie commands and UI clicks on the examples
>
>
>thanks
>- Robert
>
>
>On Tue, Aug 27, 2013 at 1:04 PM, Mona Chitnis <mo...@apache.org> wrote:
>
>> Hello Oozie community,
>>
>>
>> The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix
>> OOZIE-1514 above RC2)
>>
>> Keys to
>>  verify the signature of the release artifact are available at
>> http://www.apache.org/dist/oozie/KEYS
>>
>> Please download and try out the release at
>> http://people.apache.org/~mona/oozie-4.0.0-rc3/
>>
>> The release, md5 signature, gpg signature, and rat report can all be
>>found
>> at the above address.
>>
>> Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>>
>> (Recap from previous 4.0.0 RCs)
>>
>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>other
>> important bug fixes. You can refer to the release-log.txt for all the
>> features and fixes.
>>
>> Note: This release also has a database schema change with additional
>> tables and columns, so run the DB creation tool.
>> Below are the incompatible changes in this release:
>>
>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>> coordinators
>> OOZIE-1357 Can't view
>>  more than 1000 actions of a coordinator and paging does not work
>> OOZIE-1231 Provide access to launcher job URL from web console when
>>using
>> Map Reduce action
>>
>>
>> 
>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20
>>labels%20%3D%20incompatible
>>
>> Also,
>> If you are checking out the HCatalog integration functionality, refer to
>> HCatalog installation instructions at -
>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>at
>> - http://activemq.apache.org/getting-started.html
>> The Oozie server settings required are enlisted in the Oozie install
>> documentation itself.
>>
>>
>>
>> Thanks,
>>
>> Mona Chitnis


Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Virag Kothari <vi...@yahoo-inc.com>.
+1

Verified the signature
Verified MD5
Build and ran few examples

Thanks,
Virag

On 8/28/13 6:32 PM, "bowen zhang" <bo...@yahoo.com> wrote:

>+1
>
>
>
>________________________________
> From: Robert Kanter <rk...@cloudera.com>
>To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis
><mo...@apache.org> 
>Cc: "user@oozie.apache.org" <us...@oozie.apache.org>
>Sent: Tuesday, August 27, 2013 3:55 PM
>Subject: Re: [VOTE] Release Oozie 4.0.0 (RC3)
> 
>
>+1
>
>+ Verified md5
>+ Built and setup Oozie (on Java 7)
>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>jars were Hadoop 1.1)
>+ Tried some misc Oozie commands and UI clicks on the examples
>
>
>thanks
>- Robert
>
>
>On Tue, Aug 27, 2013 at 1:04 PM, Mona Chitnis <mo...@apache.org> wrote:
>
>> Hello Oozie community,
>>
>>
>> The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix
>> OOZIE-1514 above RC2)
>>
>> Keys to
>>  verify the signature of the release artifact are available at
>> http://www.apache.org/dist/oozie/KEYS
>>
>> Please download and try out the release at
>> http://people.apache.org/~mona/oozie-4.0.0-rc3/
>>
>> The release, md5 signature, gpg signature, and rat report can all be
>>found
>> at the above address.
>>
>> Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>>
>> (Recap from previous 4.0.0 RCs)
>>
>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>other
>> important bug fixes. You can refer to the release-log.txt for all the
>> features and fixes.
>>
>> Note: This release also has a database schema change with additional
>> tables and columns, so run the DB creation tool.
>> Below are the incompatible changes in this release:
>>
>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>> coordinators
>> OOZIE-1357 Can't view
>>  more than 1000 actions of a coordinator and paging does not work
>> OOZIE-1231 Provide access to launcher job URL from web console when
>>using
>> Map Reduce action
>>
>>
>> 
>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20
>>labels%20%3D%20incompatible
>>
>> Also,
>> If you are checking out the HCatalog integration functionality, refer to
>> HCatalog installation instructions at -
>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>at
>> - http://activemq.apache.org/getting-started.html
>> The Oozie server settings required are enlisted in the Oozie install
>> documentation itself.
>>
>>
>>
>> Thanks,
>>
>> Mona Chitnis


Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by bowen zhang <bo...@yahoo.com>.
+1



________________________________
 From: Robert Kanter <rk...@cloudera.com>
To: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org> 
Cc: "user@oozie.apache.org" <us...@oozie.apache.org> 
Sent: Tuesday, August 27, 2013 3:55 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC3)
 

+1

+ Verified md5
+ Built and setup Oozie (on Java 7)
+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
jars were Hadoop 1.1)
+ Tried some misc Oozie commands and UI clicks on the examples


thanks
- Robert


On Tue, Aug 27, 2013 at 1:04 PM, Mona Chitnis <mo...@apache.org> wrote:

> Hello Oozie community,
>
>
> The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix
> OOZIE-1514 above RC2)
>
> Keys to
>  verify the signature of the release artifact are available at
> http://www.apache.org/dist/oozie/KEYS
>
> Please download and try out the release at
> http://people.apache.org/~mona/oozie-4.0.0-rc3/
>
> The release, md5 signature, gpg signature, and rat report can all be found
> at the above address.
>
> Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>
> (Recap from previous 4.0.0 RCs)
>
> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> important bug fixes. You can refer to the release-log.txt for all the
> features and fixes.
>
> Note: This release also has a database schema change with additional
> tables and columns, so run the DB creation tool.
> Below are the incompatible changes in this release:
>
> OOZIE-1408 Change column type of "frequency" from int to varchar for
> coordinators
> OOZIE-1357 Can't view
>  more than 1000 actions of a coordinator and paging does not work
> OOZIE-1231 Provide access to launcher job URL from web console when using
> Map Reduce action
>
>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible
>
> Also,
> If you are checking out the HCatalog integration functionality, refer to
> HCatalog installation instructions at -
> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> And, ActiveMQ (JMS-compliant message broker) installation instructions at
> - http://activemq.apache.org/getting-started.html
> The Oozie server settings required are enlisted in the Oozie install
> documentation itself.
>
>
>
> Thanks,
>
> Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Robert Kanter <rk...@cloudera.com>.
+1

+ Verified md5
+ Built and setup Oozie (on Java 7)
+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
jars were Hadoop 1.1)
+ Tried some misc Oozie commands and UI clicks on the examples


thanks
- Robert


On Tue, Aug 27, 2013 at 1:04 PM, Mona Chitnis <mo...@apache.org> wrote:

> Hello Oozie community,
>
>
> The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix
> OOZIE-1514 above RC2)
>
> Keys to
>  verify the signature of the release artifact are available at
> http://www.apache.org/dist/oozie/KEYS
>
> Please download and try out the release at
> http://people.apache.org/~mona/oozie-4.0.0-rc3/
>
> The release, md5 signature, gpg signature, and rat report can all be found
> at the above address.
>
> Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>
> (Recap from previous 4.0.0 RCs)
>
> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> important bug fixes. You can refer to the release-log.txt for all the
> features and fixes.
>
> Note: This release also has a database schema change with additional
> tables and columns, so run the DB creation tool.
> Below are the incompatible changes in this release:
>
> OOZIE-1408 Change column type of "frequency" from int to varchar for
> coordinators
> OOZIE-1357 Can't view
>  more than 1000 actions of a coordinator and paging does not work
> OOZIE-1231 Provide access to launcher job URL from web console when using
> Map Reduce action
>
>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible
>
> Also,
> If you are checking out the HCatalog integration functionality, refer to
> HCatalog installation instructions at -
> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> And, ActiveMQ (JMS-compliant message broker) installation instructions at
> - http://activemq.apache.org/getting-started.html
> The Oozie server settings required are enlisted in the Oozie install
> documentation itself.
>
>
>
> Thanks,
>
> Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Robert Kanter <rk...@cloudera.com>.
+1

+ Verified md5
+ Built and setup Oozie (on Java 7)
+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
jars were Hadoop 1.1)
+ Tried some misc Oozie commands and UI clicks on the examples


thanks
- Robert


On Tue, Aug 27, 2013 at 1:04 PM, Mona Chitnis <mo...@apache.org> wrote:

> Hello Oozie community,
>
>
> The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix
> OOZIE-1514 above RC2)
>
> Keys to
>  verify the signature of the release artifact are available at
> http://www.apache.org/dist/oozie/KEYS
>
> Please download and try out the release at
> http://people.apache.org/~mona/oozie-4.0.0-rc3/
>
> The release, md5 signature, gpg signature, and rat report can all be found
> at the above address.
>
> Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>
> (Recap from previous 4.0.0 RCs)
>
> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> important bug fixes. You can refer to the release-log.txt for all the
> features and fixes.
>
> Note: This release also has a database schema change with additional
> tables and columns, so run the DB creation tool.
> Below are the incompatible changes in this release:
>
> OOZIE-1408 Change column type of "frequency" from int to varchar for
> coordinators
> OOZIE-1357 Can't view
>  more than 1000 actions of a coordinator and paging does not work
> OOZIE-1231 Provide access to launcher job URL from web console when using
> Map Reduce action
>
>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible
>
> Also,
> If you are checking out the HCatalog integration functionality, refer to
> HCatalog installation instructions at -
> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> And, ActiveMQ (JMS-compliant message broker) installation instructions at
> - http://activemq.apache.org/getting-started.html
> The Oozie server settings required are enlisted in the Oozie install
> documentation itself.
>
>
>
> Thanks,
>
> Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Ryota Egashira <eg...@yahoo-inc.com>.
+1 

-verified md5
-built and ran oozie-server
-ran examples (map-reduce, aggregator,bundle, sla..etc) and verified
-checked SLA tab on UI
-checked CLI and Web API

Ryota

On 8/27/13 1:04 PM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix
>OOZIE-1514 above RC2)
>
>Keys to
> verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download and try out the release at
>http://people.apache.org/~mona/oozie-4.0.0-rc3/
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>
>(Recap from previous 4.0.0 RCs)
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all the
>features and fixes.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view
> more than 1000 actions of a coordinator and paging does not work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation itself.
>
>
>
>Thanks,
>
>Mona Chitnis


Re: [VOTE] Release Oozie 4.0.0 (RC3)

Posted by Ryota Egashira <eg...@yahoo-inc.com>.
+1 

-verified md5
-built and ran oozie-server
-ran examples (map-reduce, aggregator,bundle, sla..etc) and verified
-checked SLA tab on UI
-checked CLI and Web API

Ryota

On 8/27/13 1:04 PM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix
>OOZIE-1514 above RC2)
>
>Keys to
> verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download and try out the release at
>http://people.apache.org/~mona/oozie-4.0.0-rc3/
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Vote closes after 3 business days on Fri Aug 30 14:00 PDT.
>
>(Recap from previous 4.0.0 RCs)
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all the
>features and fixes.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view
> more than 1000 actions of a coordinator and paging does not work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation itself.
>
>
>
>Thanks,
>
>Mona Chitnis


[VOTE] Release Oozie 4.0.0 (RC3)

Posted by Mona Chitnis <mo...@apache.org>.
Hello Oozie community,


The release candidate 3 for Oozie 4.0.0 is available. (Including bug fix OOZIE-1514 above RC2)

Keys to
 verify the signature of the release artifact are available at
http://www.apache.org/dist/oozie/KEYS

Please download and try out the release at
http://people.apache.org/~mona/oozie-4.0.0-rc3/

The release, md5 signature, gpg signature, and rat report can all be found at the above address.

Vote closes after 3 business days on Fri Aug 30 14:00 PDT.

(Recap from previous 4.0.0 RCs)

Oozie 4.0.0 has major features such as Hcatalog Integration, SLA Monitoring (with Dashboard in UI) and JMS Messaging. It has several other important bug fixes. You can refer to the release-log.txt for all the features and fixes.

Note: This release also has a database schema change with additional tables and columns, so run the DB creation tool.
Below are the incompatible changes in this release:

OOZIE-1408 Change column type of "frequency" from int to varchar for coordinators
OOZIE-1357 Can't view
 more than 1000 actions of a coordinator and paging does not work
OOZIE-1231 Provide access to launcher job URL from web console when using Map Reduce action

https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible

Also, 
If you are checking out the HCatalog integration functionality, refer to HCatalog installation instructions at -
http://hive.apache.org/docs/hcat_r0.5.0/install.html
And, ActiveMQ (JMS-compliant message broker) installation instructions at - http://activemq.apache.org/getting-started.html
The Oozie server settings required are enlisted in the Oozie install documentation itself.



Thanks,

Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Ryota Egashira <eg...@yahoo-inc.com>.
+1 

-verified md5
-built and started oozie-server
-ran examples on hadoop-1.1.1 cluster
-checked SLA examples and UI

Thanks 
Ryota

On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
>from RC1 and excluding 'workflowgenerator' from release tarball)
>
>Recap from previous 4.0.0 RCs,
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all the
>features and fixes.
>
>Keys to verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download, try out the release, and vote by replying on the thread:
>http://people.apache.org/~mona/oozie-4.0.0-rc2
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>does not work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation itself.
>
>
>Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
>Thanks,
>
>Mona Chitnis


Re: [VOTE] Release Oozie 4.0.0 (RC2)

Posted by Ryota Egashira <eg...@yahoo-inc.com>.
+1 

-verified md5
-built and started oozie-server
-ran examples on hadoop-1.1.1 cluster
-checked SLA examples and UI

Thanks 
Ryota

On 8/23/13 10:36 AM, "Mona Chitnis" <mo...@apache.org> wrote:

>Hello Oozie community,
>
>
>The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes
>from RC1 and excluding 'workflowgenerator' from release tarball)
>
>Recap from previous 4.0.0 RCs,
>
>Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
>important bug fixes. You can refer to the release-log.txt for all the
>features and fixes.
>
>Keys to verify the signature of the release artifact are available at
>http://www.apache.org/dist/oozie/KEYS
>
>Please download, try out the release, and vote by replying on the thread:
>http://people.apache.org/~mona/oozie-4.0.0-rc2
>
>The release, md5 signature, gpg signature, and rat report can all be
>found at the above address.
>
>Note: This release also has a database schema change with additional
>tables and columns, so run the DB creation tool.
>Below are the incompatible changes in this release:
>
>OOZIE-1408 Change column type of "frequency" from int to varchar for
>coordinators
>OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>does not work
>OOZIE-1231 Provide access to launcher job URL from web console when using
>Map Reduce action
>
>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20l
>abels%20%3D%20incompatible
>
>Also, 
>If you are checking out the HCatalog integration functionality, refer to
>HCatalog installation instructions at -
>http://hive.apache.org/docs/hcat_r0.5.0/install.html
>And, ActiveMQ (JMS-compliant message broker) installation instructions at
>- http://activemq.apache.org/getting-started.html
>The Oozie server settings required are enlisted in the Oozie install
>documentation itself.
>
>
>Vote closes after 3 business days on Aug 27 11:00 PDT.
>
>
>
>Thanks,
>
>Mona Chitnis


[VOTE] Release Oozie 4.0.0 (RC2)

Posted by Mona Chitnis <mo...@apache.org>.
Hello Oozie community,


The release candidate 2 for Oozie 4.0.0 is available. (Critical bug fixes from RC1 and excluding 'workflowgenerator' from release tarball)

Recap from previous 4.0.0 RCs,

Oozie 4.0.0 has major features such as Hcatalog Integration, SLA Monitoring (with Dashboard in UI) and JMS Messaging. It has several other important bug fixes. You can refer to the release-log.txt for all the features and fixes.

Keys to verify the signature of the release artifact are available at
http://www.apache.org/dist/oozie/KEYS

Please download, try out the release, and vote by replying on the thread:
http://people.apache.org/~mona/oozie-4.0.0-rc2

The release, md5 signature, gpg signature, and rat report can all be found at the above address.

Note: This release also has a database schema change with additional tables and columns, so run the DB creation tool.
Below are the incompatible changes in this release:

OOZIE-1408 Change column type of "frequency" from int to varchar for coordinators
OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging does not work
OOZIE-1231 Provide access to launcher job URL from web console when using Map Reduce action

https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible

Also, 
If you are checking out the HCatalog integration functionality, refer to HCatalog installation instructions at -
http://hive.apache.org/docs/hcat_r0.5.0/install.html
And, ActiveMQ (JMS-compliant message broker) installation instructions at - http://activemq.apache.org/getting-started.html
The Oozie server settings required are enlisted in the Oozie install documentation itself.


Vote closes after 3 business days on Aug 27 11:00 PDT.



Thanks,

Mona Chitnis

Re: [VOTE] Release Oozie 4.0.0 (RC1) - cancelled

Posted by Mona Chitnis <ch...@yahoo-inc.com>.
We identified and almost done fixing another issue - OOZIE-1507. I am
estimating rolling out RC2 by evening today.

Thanks,

Mona

On 8/22/13 11:07 AM, "Robert Kanter" <rk...@cloudera.com> wrote:

>Hi Mona,
>
>Any estimate on when you think you'll have RC2 ready?
>
>thanks
>- Robert
>
>
>On Fri, Aug 16, 2013 at 4:26 PM, Mona Chitnis <mo...@apache.org> wrote:
>
>> Hello Oozie community,
>>
>> Owing to the incompatible change OOZIE-1231, there is a problem with
>> fetching Hadoop counters for an Oozie M-R job. Hadoop counters are now
>> being fetched for the launcher job rather than the launched M-R job,
>>which
>> is actually needed. I will create a new release candidate once this JIRA
>> goes in and also removing wfgenerator from the release tarball (as per
>> Alejandro's suggestion before).
>>
>> Please look out for RC2 vote notice from me soon.
>> --
>>
>>
>> Mona Chitnis
>>
>>
>>
>>
>> ________________________________
>>  From: Alejandro Abdelnur <tu...@cloudera.com>
>> To: Mona Chitnis <mo...@apache.org>
>> Cc: "dev@oozie.apache.org" <de...@oozie.apache.org>
>> Sent: Thursday, 15 August 2013 3:07 PM
>> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC1)
>>
>>
>> the correct way should be revert all relevant commits (which are not
>>many).
>> if gets to complicated, delete the dir and remove the profile.
>>
>> Thanks.
>>
>>
>> On Thu, Aug 15, 2013 at 3:00 PM, Mona Chitnis <mo...@apache.org> wrote:
>>
>> > Tucu,
>> >
>> > I am not sure whether this was done for 3.x (since wfgen wasn't
>>committed
>> > to branch 3.3 IIRC). Now since we branched branch-4.0 off trunk, it
>>was
>> > included. What would be the way to go about this? Delete the wfgen
>> > directory, exclude module from main POM and new RC?
>> >
>> > Mona Chitnis
>> > Software Engineer, Hadoop Team
>> > Yahoo!
>> >
>> >   ------------------------------
>> >  *From:* Alejandro Abdelnur <tu...@cloudera.com>
>> > *To:* "user@oozie.apache.org" <us...@oozie.apache.org>
>> > *Cc:* "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
>> > mona@apache.org>
>> > *Sent:* Thursday, 15 August 2013 2:43 PM
>> > *Subject:* Re: [VOTE] Release Oozie 4.0.0 (RC1)
>> >
>> > I think we need to do a new RC without the workflow generator (as we
>>did
>> > before in the 3.x series).
>> >
>> >
>> > On Wed, Aug 14, 2013 at 1:12 PM, Ryota Egashira
>><egashira@yahoo-inc.com
>> > >wrote:
>> >
>> > > +1 to RC1 (my previous email was vote for candidate 0, my bad)
>> > >
>> > > Thanks
>> > > Ryota
>> > >
>> > > On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:
>> > >
>> > > >+1
>> > > >
>> > > >Verified md5 and keys
>> > > >Built Oozie
>> > > >Ran few examples
>> > > >
>> > > >Thanks,
>> > > >Virag
>> > > >
>> > > >On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
>> > > >
>> > > >>+1
>> > > >>
>> > > >>+ Verified md5
>> > > >>+ Built and setup Oozie
>> > > >>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the
>> > libext
>> > > >>jars were Hadoop 1.1)
>> > > >>+ Tried some misc Oozie commands and UI clicks on the examples
>> > > >>
>> > > >>thanks
>> > > >>- Robert
>> > > >>
>> > > >>
>> > > >>
>> > > >>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org>
>> wrote:
>> > > >>
>> > > >>> Excuse typo in download link -
>> > > >>> Please download, test, and try it out:
>> > > >>> http://people.apache.org/~mona/oozie-4.0.0-rc1
>> > > >>>
>> > > >>> --
>> > > >>> Mona
>> > > >>>
>> > > >>>
>> > > >>>
>> > > >>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis
>><mo...@apache.org>
>> > > >>>wrote:
>> > > >>>
>> > > >>> Hello Oozie community,
>> > > >>>
>> > > >>> The release candidate 1 for Oozie 4.0.0 is available. (change -
>> small
>> > > >>> release-log.txt correction in rc0 that Virag pointed out)
>> > > >>>
>> > > >>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>> > > >>> Monitoring (with Dashboard in UI) and JMS Messaging. It has
>>several
>> > > >>>other
>> > > >>> important bug fixes. You can refer to the release-log.txt for
>>all
>> the
>> > > >>> features and fixes.
>> > > >>>
>> > > >>> Keys to verify the signature of the release artifact are
>>available
>> at
>> > > >>> http://www.apache.org/dist/oozie/KEYS
>> > > >>>
>> > > >>> Please download, test, and try it out:
>> > > >>> http://people.apache.org/~mona/oozie-4.0.0-rc0
>> > > >>>
>> > > >>> The release, md5 signature, gpg signature, and rat report can
>>all
>> > > >>> be found at the above address.
>> > > >>>
>> > > >>> Note: This release also has a database schema change with
>> additional
>> > > >>> tables and columns, so run the DB creation tool.
>> > > >>> Below are the incompatible changes in this release:
>> > > >>>
>> > > >>> OOZIE-1408 Change column type of "frequency" from int to varchar
>> for
>> > > >>> coordinators
>> > > >>> OOZIE-1357 Can't view more than 1000 actions of a coordinator
>>and
>> > > >>>paging
>> > > >>> does not work
>> > > >>> OOZIE-1231 Provide access to launcher job URL from web console
>>when
>> > > >>>using
>> > > >>> Map Reduce action
>> > > >>>
>> > > >>>
>> > > >>>
>> > > >>>
>> > >
>> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
>> > > >>>0
>> > > >>>labels%20%3D%20incompatible
>> > > >>>
>> > > >>> Also,
>> > > >>> If you are checking out the HCatalog integration functionality,
>> refer
>> > > >>>to
>> > > >>> HCatalog installation instructions at -
>> > > >>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>> > > >>> And, ActiveMQ (JMS-compliant message broker) installation
>> > instructions
>> > > >>>at
>> > > >>> - http://activemq.apache.org/getting-started.html
>> > > >>> The Oozie server settings required are enlisted in the Oozie
>> install
>> > > >>> documentation itself.
>> > > >>>
>> > > >>>
>> > > >>> Vote closes after 3 business days on Aug 15 15:00 PDT.
>> > > >>>
>> > > >>>
>> > > >>>
>> > > >>> Thanks,
>> > > >>>
>> > > >>> Mona Chitnis
>> > > >>>
>> > > >
>> > >
>> > >
>> >
>> >
>> > --
>> > Alejandro
>> >
>> >
>> >
>>
>>
>> --
>> Alejandro


Re: [VOTE] Release Oozie 4.0.0 (RC1) - cancelled

Posted by Robert Kanter <rk...@cloudera.com>.
Hi Mona,

Any estimate on when you think you'll have RC2 ready?

thanks
- Robert


On Fri, Aug 16, 2013 at 4:26 PM, Mona Chitnis <mo...@apache.org> wrote:

> Hello Oozie community,
>
> Owing to the incompatible change OOZIE-1231, there is a problem with
> fetching Hadoop counters for an Oozie M-R job. Hadoop counters are now
> being fetched for the launcher job rather than the launched M-R job, which
> is actually needed. I will create a new release candidate once this JIRA
> goes in and also removing wfgenerator from the release tarball (as per
> Alejandro's suggestion before).
>
> Please look out for RC2 vote notice from me soon.
> --
>
>
> Mona Chitnis
>
>
>
>
> ________________________________
>  From: Alejandro Abdelnur <tu...@cloudera.com>
> To: Mona Chitnis <mo...@apache.org>
> Cc: "dev@oozie.apache.org" <de...@oozie.apache.org>
> Sent: Thursday, 15 August 2013 3:07 PM
> Subject: Re: [VOTE] Release Oozie 4.0.0 (RC1)
>
>
> the correct way should be revert all relevant commits (which are not many).
> if gets to complicated, delete the dir and remove the profile.
>
> Thanks.
>
>
> On Thu, Aug 15, 2013 at 3:00 PM, Mona Chitnis <mo...@apache.org> wrote:
>
> > Tucu,
> >
> > I am not sure whether this was done for 3.x (since wfgen wasn't committed
> > to branch 3.3 IIRC). Now since we branched branch-4.0 off trunk, it was
> > included. What would be the way to go about this? Delete the wfgen
> > directory, exclude module from main POM and new RC?
> >
> > Mona Chitnis
> > Software Engineer, Hadoop Team
> > Yahoo!
> >
> >   ------------------------------
> >  *From:* Alejandro Abdelnur <tu...@cloudera.com>
> > *To:* "user@oozie.apache.org" <us...@oozie.apache.org>
> > *Cc:* "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
> > mona@apache.org>
> > *Sent:* Thursday, 15 August 2013 2:43 PM
> > *Subject:* Re: [VOTE] Release Oozie 4.0.0 (RC1)
> >
> > I think we need to do a new RC without the workflow generator (as we did
> > before in the 3.x series).
> >
> >
> > On Wed, Aug 14, 2013 at 1:12 PM, Ryota Egashira <egashira@yahoo-inc.com
> > >wrote:
> >
> > > +1 to RC1 (my previous email was vote for candidate 0, my bad)
> > >
> > > Thanks
> > > Ryota
> > >
> > > On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:
> > >
> > > >+1
> > > >
> > > >Verified md5 and keys
> > > >Built Oozie
> > > >Ran few examples
> > > >
> > > >Thanks,
> > > >Virag
> > > >
> > > >On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
> > > >
> > > >>+1
> > > >>
> > > >>+ Verified md5
> > > >>+ Built and setup Oozie
> > > >>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the
> > libext
> > > >>jars were Hadoop 1.1)
> > > >>+ Tried some misc Oozie commands and UI clicks on the examples
> > > >>
> > > >>thanks
> > > >>- Robert
> > > >>
> > > >>
> > > >>
> > > >>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org>
> wrote:
> > > >>
> > > >>> Excuse typo in download link -
> > > >>> Please download, test, and try it out:
> > > >>> http://people.apache.org/~mona/oozie-4.0.0-rc1
> > > >>>
> > > >>> --
> > > >>> Mona
> > > >>>
> > > >>>
> > > >>>
> > > >>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
> > > >>>wrote:
> > > >>>
> > > >>> Hello Oozie community,
> > > >>>
> > > >>> The release candidate 1 for Oozie 4.0.0 is available. (change -
> small
> > > >>> release-log.txt correction in rc0 that Virag pointed out)
> > > >>>
> > > >>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> > > >>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
> > > >>>other
> > > >>> important bug fixes. You can refer to the release-log.txt for all
> the
> > > >>> features and fixes.
> > > >>>
> > > >>> Keys to verify the signature of the release artifact are available
> at
> > > >>> http://www.apache.org/dist/oozie/KEYS
> > > >>>
> > > >>> Please download, test, and try it out:
> > > >>> http://people.apache.org/~mona/oozie-4.0.0-rc0
> > > >>>
> > > >>> The release, md5 signature, gpg signature, and rat report can all
> > > >>> be found at the above address.
> > > >>>
> > > >>> Note: This release also has a database schema change with
> additional
> > > >>> tables and columns, so run the DB creation tool.
> > > >>> Below are the incompatible changes in this release:
> > > >>>
> > > >>> OOZIE-1408 Change column type of "frequency" from int to varchar
> for
> > > >>> coordinators
> > > >>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
> > > >>>paging
> > > >>> does not work
> > > >>> OOZIE-1231 Provide access to launcher job URL from web console when
> > > >>>using
> > > >>> Map Reduce action
> > > >>>
> > > >>>
> > > >>>
> > > >>>
> > >
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
> > > >>>0
> > > >>>labels%20%3D%20incompatible
> > > >>>
> > > >>> Also,
> > > >>> If you are checking out the HCatalog integration functionality,
> refer
> > > >>>to
> > > >>> HCatalog installation instructions at -
> > > >>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> > > >>> And, ActiveMQ (JMS-compliant message broker) installation
> > instructions
> > > >>>at
> > > >>> - http://activemq.apache.org/getting-started.html
> > > >>> The Oozie server settings required are enlisted in the Oozie
> install
> > > >>> documentation itself.
> > > >>>
> > > >>>
> > > >>> Vote closes after 3 business days on Aug 15 15:00 PDT.
> > > >>>
> > > >>>
> > > >>>
> > > >>> Thanks,
> > > >>>
> > > >>> Mona Chitnis
> > > >>>
> > > >
> > >
> > >
> >
> >
> > --
> > Alejandro
> >
> >
> >
>
>
> --
> Alejandro

Re: [VOTE] Release Oozie 4.0.0 (RC1) - cancelled

Posted by Mona Chitnis <mo...@apache.org>.
Hello Oozie community,

Owing to the incompatible change OOZIE-1231, there is a problem with fetching Hadoop counters for an Oozie M-R job. Hadoop counters are now being fetched for the launcher job rather than the launched M-R job, which is actually needed. I will create a new release candidate once this JIRA goes in and also removing wfgenerator from the release tarball (as per Alejandro's suggestion before).

Please look out for RC2 vote notice from me soon.
--

 
Mona Chitnis




________________________________
 From: Alejandro Abdelnur <tu...@cloudera.com>
To: Mona Chitnis <mo...@apache.org> 
Cc: "dev@oozie.apache.org" <de...@oozie.apache.org> 
Sent: Thursday, 15 August 2013 3:07 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC1)
 

the correct way should be revert all relevant commits (which are not many).
if gets to complicated, delete the dir and remove the profile.

Thanks.


On Thu, Aug 15, 2013 at 3:00 PM, Mona Chitnis <mo...@apache.org> wrote:

> Tucu,
>
> I am not sure whether this was done for 3.x (since wfgen wasn't committed
> to branch 3.3 IIRC). Now since we branched branch-4.0 off trunk, it was
> included. What would be the way to go about this? Delete the wfgen
> directory, exclude module from main POM and new RC?
>
> Mona Chitnis
> Software Engineer, Hadoop Team
> Yahoo!
>
>   ------------------------------
>  *From:* Alejandro Abdelnur <tu...@cloudera.com>
> *To:* "user@oozie.apache.org" <us...@oozie.apache.org>
> *Cc:* "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
> mona@apache.org>
> *Sent:* Thursday, 15 August 2013 2:43 PM
> *Subject:* Re: [VOTE] Release Oozie 4.0.0 (RC1)
>
> I think we need to do a new RC without the workflow generator (as we did
> before in the 3.x series).
>
>
> On Wed, Aug 14, 2013 at 1:12 PM, Ryota Egashira <egashira@yahoo-inc.com
> >wrote:
>
> > +1 to RC1 (my previous email was vote for candidate 0, my bad)
> >
> > Thanks
> > Ryota
> >
> > On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:
> >
> > >+1
> > >
> > >Verified md5 and keys
> > >Built Oozie
> > >Ran few examples
> > >
> > >Thanks,
> > >Virag
> > >
> > >On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
> > >
> > >>+1
> > >>
> > >>+ Verified md5
> > >>+ Built and setup Oozie
> > >>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the
> libext
> > >>jars were Hadoop 1.1)
> > >>+ Tried some misc Oozie commands and UI clicks on the examples
> > >>
> > >>thanks
> > >>- Robert
> > >>
> > >>
> > >>
> > >>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
> > >>
> > >>> Excuse typo in download link -
> > >>> Please download, test, and try it out:
> > >>> http://people.apache.org/~mona/oozie-4.0.0-rc1
> > >>>
> > >>> --
> > >>> Mona
> > >>>
> > >>>
> > >>>
> > >>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
> > >>>wrote:
> > >>>
> > >>> Hello Oozie community,
> > >>>
> > >>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
> > >>> release-log.txt correction in rc0 that Virag pointed out)
> > >>>
> > >>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> > >>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
> > >>>other
> > >>> important bug fixes. You can refer to the release-log.txt for all the
> > >>> features and fixes.
> > >>>
> > >>> Keys to verify the signature of the release artifact are available at
> > >>> http://www.apache.org/dist/oozie/KEYS
> > >>>
> > >>> Please download, test, and try it out:
> > >>> http://people.apache.org/~mona/oozie-4.0.0-rc0
> > >>>
> > >>> The release, md5 signature, gpg signature, and rat report can all
> > >>> be found at the above address.
> > >>>
> > >>> Note: This release also has a database schema change with additional
> > >>> tables and columns, so run the DB creation tool.
> > >>> Below are the incompatible changes in this release:
> > >>>
> > >>> OOZIE-1408 Change column type of "frequency" from int to varchar for
> > >>> coordinators
> > >>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
> > >>>paging
> > >>> does not work
> > >>> OOZIE-1231 Provide access to launcher job URL from web console when
> > >>>using
> > >>> Map Reduce action
> > >>>
> > >>>
> > >>>
> > >>>
> > https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
> > >>>0
> > >>>labels%20%3D%20incompatible
> > >>>
> > >>> Also,
> > >>> If you are checking out the HCatalog integration functionality, refer
> > >>>to
> > >>> HCatalog installation instructions at -
> > >>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> > >>> And, ActiveMQ (JMS-compliant message broker) installation
> instructions
> > >>>at
> > >>> - http://activemq.apache.org/getting-started.html
> > >>> The Oozie server settings required are enlisted in the Oozie install
> > >>> documentation itself.
> > >>>
> > >>>
> > >>> Vote closes after 3 business days on Aug 15 15:00 PDT.
> > >>>
> > >>>
> > >>>
> > >>> Thanks,
> > >>>
> > >>> Mona Chitnis
> > >>>
> > >
> >
> >
>
>
> --
> Alejandro
>
>
>


-- 
Alejandro

Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Alejandro Abdelnur <tu...@cloudera.com>.
the correct way should be revert all relevant commits (which are not many).
if gets to complicated, delete the dir and remove the profile.

Thanks.


On Thu, Aug 15, 2013 at 3:00 PM, Mona Chitnis <mo...@apache.org> wrote:

> Tucu,
>
> I am not sure whether this was done for 3.x (since wfgen wasn't committed
> to branch 3.3 IIRC). Now since we branched branch-4.0 off trunk, it was
> included. What would be the way to go about this? Delete the wfgen
> directory, exclude module from main POM and new RC?
>
> Mona Chitnis
> Software Engineer, Hadoop Team
> Yahoo!
>
>   ------------------------------
>  *From:* Alejandro Abdelnur <tu...@cloudera.com>
> *To:* "user@oozie.apache.org" <us...@oozie.apache.org>
> *Cc:* "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <
> mona@apache.org>
> *Sent:* Thursday, 15 August 2013 2:43 PM
> *Subject:* Re: [VOTE] Release Oozie 4.0.0 (RC1)
>
> I think we need to do a new RC without the workflow generator (as we did
> before in the 3.x series).
>
>
> On Wed, Aug 14, 2013 at 1:12 PM, Ryota Egashira <egashira@yahoo-inc.com
> >wrote:
>
> > +1 to RC1 (my previous email was vote for candidate 0, my bad)
> >
> > Thanks
> > Ryota
> >
> > On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:
> >
> > >+1
> > >
> > >Verified md5 and keys
> > >Built Oozie
> > >Ran few examples
> > >
> > >Thanks,
> > >Virag
> > >
> > >On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
> > >
> > >>+1
> > >>
> > >>+ Verified md5
> > >>+ Built and setup Oozie
> > >>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the
> libext
> > >>jars were Hadoop 1.1)
> > >>+ Tried some misc Oozie commands and UI clicks on the examples
> > >>
> > >>thanks
> > >>- Robert
> > >>
> > >>
> > >>
> > >>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
> > >>
> > >>> Excuse typo in download link -
> > >>> Please download, test, and try it out:
> > >>> http://people.apache.org/~mona/oozie-4.0.0-rc1
> > >>>
> > >>> --
> > >>> Mona
> > >>>
> > >>>
> > >>>
> > >>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
> > >>>wrote:
> > >>>
> > >>> Hello Oozie community,
> > >>>
> > >>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
> > >>> release-log.txt correction in rc0 that Virag pointed out)
> > >>>
> > >>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> > >>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
> > >>>other
> > >>> important bug fixes. You can refer to the release-log.txt for all the
> > >>> features and fixes.
> > >>>
> > >>> Keys to verify the signature of the release artifact are available at
> > >>> http://www.apache.org/dist/oozie/KEYS
> > >>>
> > >>> Please download, test, and try it out:
> > >>> http://people.apache.org/~mona/oozie-4.0.0-rc0
> > >>>
> > >>> The release, md5 signature, gpg signature, and rat report can all
> > >>> be found at the above address.
> > >>>
> > >>> Note: This release also has a database schema change with additional
> > >>> tables and columns, so run the DB creation tool.
> > >>> Below are the incompatible changes in this release:
> > >>>
> > >>> OOZIE-1408 Change column type of "frequency" from int to varchar for
> > >>> coordinators
> > >>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
> > >>>paging
> > >>> does not work
> > >>> OOZIE-1231 Provide access to launcher job URL from web console when
> > >>>using
> > >>> Map Reduce action
> > >>>
> > >>>
> > >>>
> > >>>
> > https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
> > >>>0
> > >>>labels%20%3D%20incompatible
> > >>>
> > >>> Also,
> > >>> If you are checking out the HCatalog integration functionality, refer
> > >>>to
> > >>> HCatalog installation instructions at -
> > >>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> > >>> And, ActiveMQ (JMS-compliant message broker) installation
> instructions
> > >>>at
> > >>> - http://activemq.apache.org/getting-started.html
> > >>> The Oozie server settings required are enlisted in the Oozie install
> > >>> documentation itself.
> > >>>
> > >>>
> > >>> Vote closes after 3 business days on Aug 15 15:00 PDT.
> > >>>
> > >>>
> > >>>
> > >>> Thanks,
> > >>>
> > >>> Mona Chitnis
> > >>>
> > >
> >
> >
>
>
> --
> Alejandro
>
>
>


-- 
Alejandro

Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Mona Chitnis <mo...@apache.org>.
Tucu,

I am not sure whether this was done for 3.x (since wfgen wasn't committed to branch 3.3 IIRC). Now since we branched branch-4.0 off trunk, it was included. What would be the way to go about this? Delete the wfgen directory, exclude module from main POM and new RC?

 
Mona Chitnis
Software Engineer, Hadoop Team
Yahoo!


________________________________
 From: Alejandro Abdelnur <tu...@cloudera.com>
To: "user@oozie.apache.org" <us...@oozie.apache.org> 
Cc: "dev@oozie.apache.org" <de...@oozie.apache.org>; Mona Chitnis <mo...@apache.org> 
Sent: Thursday, 15 August 2013 2:43 PM
Subject: Re: [VOTE] Release Oozie 4.0.0 (RC1)
 

I think we need to do a new RC without the workflow generator (as we did
before in the 3.x series).


On Wed, Aug 14, 2013 at 1:12 PM, Ryota Egashira <eg...@yahoo-inc.com>wrote:

> +1 to RC1 (my previous email was vote for candidate 0, my bad)
>
> Thanks
> Ryota
>
> On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:
>
> >+1
> >
> >Verified md5 and keys
> >Built Oozie
> >Ran few examples
> >
> >Thanks,
> >Virag
> >
> >On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
> >
> >>+1
> >>
> >>+ Verified md5
> >>+ Built and setup Oozie
> >>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
> >>jars were Hadoop 1.1)
> >>+ Tried some misc Oozie commands and UI clicks on the examples
> >>
> >>thanks
> >>- Robert
> >>
> >>
> >>
> >>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
> >>
> >>> Excuse typo in download link -
> >>> Please download, test, and try it out:
> >>> http://people.apache.org/~mona/oozie-4.0.0-rc1
> >>>
> >>> --
> >>> Mona
> >>>
> >>>
> >>>
> >>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
> >>>wrote:
> >>>
> >>> Hello Oozie community,
> >>>
> >>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
> >>> release-log.txt correction in rc0 that Virag pointed out)
> >>>
> >>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> >>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
> >>>other
> >>> important bug fixes. You can refer to the release-log.txt for all the
> >>> features and fixes.
> >>>
> >>> Keys to verify the signature of the release artifact are available at
> >>> http://www.apache.org/dist/oozie/KEYS
> >>>
> >>> Please download, test, and try it out:
> >>> http://people.apache.org/~mona/oozie-4.0.0-rc0
> >>>
> >>> The release, md5 signature, gpg signature, and rat report can all
> >>> be found at the above address.
> >>>
> >>> Note: This release also has a database schema change with additional
> >>> tables and columns, so run the DB creation tool.
> >>> Below are the incompatible changes in this release:
> >>>
> >>> OOZIE-1408 Change column type of "frequency" from int to varchar for
> >>> coordinators
> >>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
> >>>paging
> >>> does not work
> >>> OOZIE-1231 Provide access to launcher job URL from web console when
> >>>using
> >>> Map Reduce action
> >>>
> >>>
> >>>
> >>>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
> >>>0
> >>>labels%20%3D%20incompatible
> >>>
> >>> Also,
> >>> If you are checking out the HCatalog integration functionality, refer
> >>>to
> >>> HCatalog installation instructions at -
> >>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> >>> And, ActiveMQ (JMS-compliant message broker) installation instructions
> >>>at
> >>> - http://activemq.apache.org/getting-started.html
> >>> The Oozie server settings required are enlisted in the Oozie install
> >>> documentation itself.
> >>>
> >>>
> >>> Vote closes after 3 business days on Aug 15 15:00 PDT.
> >>>
> >>>
> >>>
> >>> Thanks,
> >>>
> >>> Mona Chitnis
> >>>
> >
>
>


-- 
Alejandro

Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Alejandro Abdelnur <tu...@cloudera.com>.
I think we need to do a new RC without the workflow generator (as we did
before in the 3.x series).


On Wed, Aug 14, 2013 at 1:12 PM, Ryota Egashira <eg...@yahoo-inc.com>wrote:

> +1 to RC1 (my previous email was vote for candidate 0, my bad)
>
> Thanks
> Ryota
>
> On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:
>
> >+1
> >
> >Verified md5 and keys
> >Built Oozie
> >Ran few examples
> >
> >Thanks,
> >Virag
> >
> >On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
> >
> >>+1
> >>
> >>+ Verified md5
> >>+ Built and setup Oozie
> >>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
> >>jars were Hadoop 1.1)
> >>+ Tried some misc Oozie commands and UI clicks on the examples
> >>
> >>thanks
> >>- Robert
> >>
> >>
> >>
> >>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
> >>
> >>> Excuse typo in download link -
> >>> Please download, test, and try it out:
> >>> http://people.apache.org/~mona/oozie-4.0.0-rc1
> >>>
> >>> --
> >>> Mona
> >>>
> >>>
> >>>
> >>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
> >>>wrote:
> >>>
> >>> Hello Oozie community,
> >>>
> >>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
> >>> release-log.txt correction in rc0 that Virag pointed out)
> >>>
> >>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> >>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
> >>>other
> >>> important bug fixes. You can refer to the release-log.txt for all the
> >>> features and fixes.
> >>>
> >>> Keys to verify the signature of the release artifact are available at
> >>> http://www.apache.org/dist/oozie/KEYS
> >>>
> >>> Please download, test, and try it out:
> >>> http://people.apache.org/~mona/oozie-4.0.0-rc0
> >>>
> >>> The release, md5 signature, gpg signature, and rat report can all
> >>> be found at the above address.
> >>>
> >>> Note: This release also has a database schema change with additional
> >>> tables and columns, so run the DB creation tool.
> >>> Below are the incompatible changes in this release:
> >>>
> >>> OOZIE-1408 Change column type of "frequency" from int to varchar for
> >>> coordinators
> >>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
> >>>paging
> >>> does not work
> >>> OOZIE-1231 Provide access to launcher job URL from web console when
> >>>using
> >>> Map Reduce action
> >>>
> >>>
> >>>
> >>>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
> >>>0
> >>>labels%20%3D%20incompatible
> >>>
> >>> Also,
> >>> If you are checking out the HCatalog integration functionality, refer
> >>>to
> >>> HCatalog installation instructions at -
> >>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> >>> And, ActiveMQ (JMS-compliant message broker) installation instructions
> >>>at
> >>> - http://activemq.apache.org/getting-started.html
> >>> The Oozie server settings required are enlisted in the Oozie install
> >>> documentation itself.
> >>>
> >>>
> >>> Vote closes after 3 business days on Aug 15 15:00 PDT.
> >>>
> >>>
> >>>
> >>> Thanks,
> >>>
> >>> Mona Chitnis
> >>>
> >
>
>


-- 
Alejandro

Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Alejandro Abdelnur <tu...@cloudera.com>.
I think we need to do a new RC without the workflow generator (as we did
before in the 3.x series).


On Wed, Aug 14, 2013 at 1:12 PM, Ryota Egashira <eg...@yahoo-inc.com>wrote:

> +1 to RC1 (my previous email was vote for candidate 0, my bad)
>
> Thanks
> Ryota
>
> On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:
>
> >+1
> >
> >Verified md5 and keys
> >Built Oozie
> >Ran few examples
> >
> >Thanks,
> >Virag
> >
> >On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
> >
> >>+1
> >>
> >>+ Verified md5
> >>+ Built and setup Oozie
> >>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
> >>jars were Hadoop 1.1)
> >>+ Tried some misc Oozie commands and UI clicks on the examples
> >>
> >>thanks
> >>- Robert
> >>
> >>
> >>
> >>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
> >>
> >>> Excuse typo in download link -
> >>> Please download, test, and try it out:
> >>> http://people.apache.org/~mona/oozie-4.0.0-rc1
> >>>
> >>> --
> >>> Mona
> >>>
> >>>
> >>>
> >>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
> >>>wrote:
> >>>
> >>> Hello Oozie community,
> >>>
> >>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
> >>> release-log.txt correction in rc0 that Virag pointed out)
> >>>
> >>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> >>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
> >>>other
> >>> important bug fixes. You can refer to the release-log.txt for all the
> >>> features and fixes.
> >>>
> >>> Keys to verify the signature of the release artifact are available at
> >>> http://www.apache.org/dist/oozie/KEYS
> >>>
> >>> Please download, test, and try it out:
> >>> http://people.apache.org/~mona/oozie-4.0.0-rc0
> >>>
> >>> The release, md5 signature, gpg signature, and rat report can all
> >>> be found at the above address.
> >>>
> >>> Note: This release also has a database schema change with additional
> >>> tables and columns, so run the DB creation tool.
> >>> Below are the incompatible changes in this release:
> >>>
> >>> OOZIE-1408 Change column type of "frequency" from int to varchar for
> >>> coordinators
> >>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
> >>>paging
> >>> does not work
> >>> OOZIE-1231 Provide access to launcher job URL from web console when
> >>>using
> >>> Map Reduce action
> >>>
> >>>
> >>>
> >>>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
> >>>0
> >>>labels%20%3D%20incompatible
> >>>
> >>> Also,
> >>> If you are checking out the HCatalog integration functionality, refer
> >>>to
> >>> HCatalog installation instructions at -
> >>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> >>> And, ActiveMQ (JMS-compliant message broker) installation instructions
> >>>at
> >>> - http://activemq.apache.org/getting-started.html
> >>> The Oozie server settings required are enlisted in the Oozie install
> >>> documentation itself.
> >>>
> >>>
> >>> Vote closes after 3 business days on Aug 15 15:00 PDT.
> >>>
> >>>
> >>>
> >>> Thanks,
> >>>
> >>> Mona Chitnis
> >>>
> >
>
>


-- 
Alejandro

Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Ryota Egashira <eg...@yahoo-inc.com>.
+1 to RC1 (my previous email was vote for candidate 0, my bad)

Thanks
Ryota

On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:

>+1
>
>Verified md5 and keys
>Built Oozie
>Ran few examples
>
>Thanks,
>Virag
>
>On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
>
>>+1
>>
>>+ Verified md5
>>+ Built and setup Oozie
>>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>>jars were Hadoop 1.1)
>>+ Tried some misc Oozie commands and UI clicks on the examples
>>
>>thanks
>>- Robert
>>
>>
>>
>>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
>>
>>> Excuse typo in download link -
>>> Please download, test, and try it out:
>>> http://people.apache.org/~mona/oozie-4.0.0-rc1
>>>
>>> --
>>> Mona
>>>
>>>
>>>
>>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
>>>wrote:
>>>
>>> Hello Oozie community,
>>>
>>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
>>> release-log.txt correction in rc0 that Virag pointed out)
>>>
>>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>>other
>>> important bug fixes. You can refer to the release-log.txt for all the
>>> features and fixes.
>>>
>>> Keys to verify the signature of the release artifact are available at
>>> http://www.apache.org/dist/oozie/KEYS
>>>
>>> Please download, test, and try it out:
>>> http://people.apache.org/~mona/oozie-4.0.0-rc0
>>>
>>> The release, md5 signature, gpg signature, and rat report can all
>>> be found at the above address.
>>>
>>> Note: This release also has a database schema change with additional
>>> tables and columns, so run the DB creation tool.
>>> Below are the incompatible changes in this release:
>>>
>>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>>> coordinators
>>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
>>>paging
>>> does not work
>>> OOZIE-1231 Provide access to launcher job URL from web console when
>>>using
>>> Map Reduce action
>>>
>>>
>>> 
>>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
>>>0
>>>labels%20%3D%20incompatible
>>>
>>> Also,
>>> If you are checking out the HCatalog integration functionality, refer
>>>to
>>> HCatalog installation instructions at -
>>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>>at
>>> - http://activemq.apache.org/getting-started.html
>>> The Oozie server settings required are enlisted in the Oozie install
>>> documentation itself.
>>>
>>>
>>> Vote closes after 3 business days on Aug 15 15:00 PDT.
>>>
>>>
>>>
>>> Thanks,
>>>
>>> Mona Chitnis
>>>
>


Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Ryota Egashira <eg...@yahoo-inc.com>.
+1 to RC1 (my previous email was vote for candidate 0, my bad)

Thanks
Ryota

On 8/14/13 1:00 PM, "Virag Kothari" <vi...@yahoo-inc.com> wrote:

>+1
>
>Verified md5 and keys
>Built Oozie
>Ran few examples
>
>Thanks,
>Virag
>
>On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:
>
>>+1
>>
>>+ Verified md5
>>+ Built and setup Oozie
>>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>>jars were Hadoop 1.1)
>>+ Tried some misc Oozie commands and UI clicks on the examples
>>
>>thanks
>>- Robert
>>
>>
>>
>>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
>>
>>> Excuse typo in download link -
>>> Please download, test, and try it out:
>>> http://people.apache.org/~mona/oozie-4.0.0-rc1
>>>
>>> --
>>> Mona
>>>
>>>
>>>
>>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org>
>>>wrote:
>>>
>>> Hello Oozie community,
>>>
>>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
>>> release-log.txt correction in rc0 that Virag pointed out)
>>>
>>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>>other
>>> important bug fixes. You can refer to the release-log.txt for all the
>>> features and fixes.
>>>
>>> Keys to verify the signature of the release artifact are available at
>>> http://www.apache.org/dist/oozie/KEYS
>>>
>>> Please download, test, and try it out:
>>> http://people.apache.org/~mona/oozie-4.0.0-rc0
>>>
>>> The release, md5 signature, gpg signature, and rat report can all
>>> be found at the above address.
>>>
>>> Note: This release also has a database schema change with additional
>>> tables and columns, so run the DB creation tool.
>>> Below are the incompatible changes in this release:
>>>
>>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>>> coordinators
>>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and
>>>paging
>>> does not work
>>> OOZIE-1231 Provide access to launcher job URL from web console when
>>>using
>>> Map Reduce action
>>>
>>>
>>> 
>>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%2
>>>0
>>>labels%20%3D%20incompatible
>>>
>>> Also,
>>> If you are checking out the HCatalog integration functionality, refer
>>>to
>>> HCatalog installation instructions at -
>>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>>at
>>> - http://activemq.apache.org/getting-started.html
>>> The Oozie server settings required are enlisted in the Oozie install
>>> documentation itself.
>>>
>>>
>>> Vote closes after 3 business days on Aug 15 15:00 PDT.
>>>
>>>
>>>
>>> Thanks,
>>>
>>> Mona Chitnis
>>>
>


Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Virag Kothari <vi...@yahoo-inc.com>.
+1

Verified md5 and keys
Built Oozie
Ran few examples

Thanks,
Virag

On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:

>+1
>
>+ Verified md5
>+ Built and setup Oozie
>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>jars were Hadoop 1.1)
>+ Tried some misc Oozie commands and UI clicks on the examples
>
>thanks
>- Robert
>
>
>
>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
>
>> Excuse typo in download link -
>> Please download, test, and try it out:
>> http://people.apache.org/~mona/oozie-4.0.0-rc1
>>
>> --
>> Mona
>>
>>
>>
>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org> wrote:
>>
>> Hello Oozie community,
>>
>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
>> release-log.txt correction in rc0 that Virag pointed out)
>>
>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>other
>> important bug fixes. You can refer to the release-log.txt for all the
>> features and fixes.
>>
>> Keys to verify the signature of the release artifact are available at
>> http://www.apache.org/dist/oozie/KEYS
>>
>> Please download, test, and try it out:
>> http://people.apache.org/~mona/oozie-4.0.0-rc0
>>
>> The release, md5 signature, gpg signature, and rat report can all
>> be found at the above address.
>>
>> Note: This release also has a database schema change with additional
>> tables and columns, so run the DB creation tool.
>> Below are the incompatible changes in this release:
>>
>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>> coordinators
>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>> does not work
>> OOZIE-1231 Provide access to launcher job URL from web console when
>>using
>> Map Reduce action
>>
>>
>> 
>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20
>>labels%20%3D%20incompatible
>>
>> Also,
>> If you are checking out the HCatalog integration functionality, refer to
>> HCatalog installation instructions at -
>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>at
>> - http://activemq.apache.org/getting-started.html
>> The Oozie server settings required are enlisted in the Oozie install
>> documentation itself.
>>
>>
>> Vote closes after 3 business days on Aug 15 15:00 PDT.
>>
>>
>>
>> Thanks,
>>
>> Mona Chitnis
>>


Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Virag Kothari <vi...@yahoo-inc.com>.
+1

Verified md5 and keys
Built Oozie
Ran few examples

Thanks,
Virag

On 8/12/13 5:04 PM, "Robert Kanter" <rk...@cloudera.com> wrote:

>+1
>
>+ Verified md5
>+ Built and setup Oozie
>+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
>jars were Hadoop 1.1)
>+ Tried some misc Oozie commands and UI clicks on the examples
>
>thanks
>- Robert
>
>
>
>On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:
>
>> Excuse typo in download link -
>> Please download, test, and try it out:
>> http://people.apache.org/~mona/oozie-4.0.0-rc1
>>
>> --
>> Mona
>>
>>
>>
>> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org> wrote:
>>
>> Hello Oozie community,
>>
>> The release candidate 1 for Oozie 4.0.0 is available. (change - small
>> release-log.txt correction in rc0 that Virag pointed out)
>>
>> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
>> Monitoring (with Dashboard in UI) and JMS Messaging. It has several
>>other
>> important bug fixes. You can refer to the release-log.txt for all the
>> features and fixes.
>>
>> Keys to verify the signature of the release artifact are available at
>> http://www.apache.org/dist/oozie/KEYS
>>
>> Please download, test, and try it out:
>> http://people.apache.org/~mona/oozie-4.0.0-rc0
>>
>> The release, md5 signature, gpg signature, and rat report can all
>> be found at the above address.
>>
>> Note: This release also has a database schema change with additional
>> tables and columns, so run the DB creation tool.
>> Below are the incompatible changes in this release:
>>
>> OOZIE-1408 Change column type of "frequency" from int to varchar for
>> coordinators
>> OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
>> does not work
>> OOZIE-1231 Provide access to launcher job URL from web console when
>>using
>> Map Reduce action
>>
>>
>> 
>>https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20
>>labels%20%3D%20incompatible
>>
>> Also,
>> If you are checking out the HCatalog integration functionality, refer to
>> HCatalog installation instructions at -
>> http://hive.apache.org/docs/hcat_r0.5.0/install.html
>> And, ActiveMQ (JMS-compliant message broker) installation instructions
>>at
>> - http://activemq.apache.org/getting-started.html
>> The Oozie server settings required are enlisted in the Oozie install
>> documentation itself.
>>
>>
>> Vote closes after 3 business days on Aug 15 15:00 PDT.
>>
>>
>>
>> Thanks,
>>
>> Mona Chitnis
>>


Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Robert Kanter <rk...@cloudera.com>.
+1

+ Verified md5
+ Built and setup Oozie
+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
jars were Hadoop 1.1)
+ Tried some misc Oozie commands and UI clicks on the examples

thanks
- Robert



On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:

> Excuse typo in download link -
> Please download, test, and try it out:
> http://people.apache.org/~mona/oozie-4.0.0-rc1
>
> --
> Mona
>
>
>
> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org> wrote:
>
> Hello Oozie community,
>
> The release candidate 1 for Oozie 4.0.0 is available. (change - small
> release-log.txt correction in rc0 that Virag pointed out)
>
> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> important bug fixes. You can refer to the release-log.txt for all the
> features and fixes.
>
> Keys to verify the signature of the release artifact are available at
> http://www.apache.org/dist/oozie/KEYS
>
> Please download, test, and try it out:
> http://people.apache.org/~mona/oozie-4.0.0-rc0
>
> The release, md5 signature, gpg signature, and rat report can all
> be found at the above address.
>
> Note: This release also has a database schema change with additional
> tables and columns, so run the DB creation tool.
> Below are the incompatible changes in this release:
>
> OOZIE-1408 Change column type of "frequency" from int to varchar for
> coordinators
> OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
> does not work
> OOZIE-1231 Provide access to launcher job URL from web console when using
> Map Reduce action
>
>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible
>
> Also,
> If you are checking out the HCatalog integration functionality, refer to
> HCatalog installation instructions at -
> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> And, ActiveMQ (JMS-compliant message broker) installation instructions at
> - http://activemq.apache.org/getting-started.html
> The Oozie server settings required are enlisted in the Oozie install
> documentation itself.
>
>
> Vote closes after 3 business days on Aug 15 15:00 PDT.
>
>
>
> Thanks,
>
> Mona Chitnis
>

Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Robert Kanter <rk...@cloudera.com>.
+1

+ Verified md5
+ Built and setup Oozie
+ Ran a bunch of the Oozie examples against Hadoop 1.2 (though the libext
jars were Hadoop 1.1)
+ Tried some misc Oozie commands and UI clicks on the examples

thanks
- Robert



On Mon, Aug 12, 2013 at 3:02 PM, Mona Chitnis <mo...@apache.org> wrote:

> Excuse typo in download link -
> Please download, test, and try it out:
> http://people.apache.org/~mona/oozie-4.0.0-rc1
>
> --
> Mona
>
>
>
> On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org> wrote:
>
> Hello Oozie community,
>
> The release candidate 1 for Oozie 4.0.0 is available. (change - small
> release-log.txt correction in rc0 that Virag pointed out)
>
> Oozie 4.0.0 has major features such as Hcatalog Integration, SLA
> Monitoring (with Dashboard in UI) and JMS Messaging. It has several other
> important bug fixes. You can refer to the release-log.txt for all the
> features and fixes.
>
> Keys to verify the signature of the release artifact are available at
> http://www.apache.org/dist/oozie/KEYS
>
> Please download, test, and try it out:
> http://people.apache.org/~mona/oozie-4.0.0-rc0
>
> The release, md5 signature, gpg signature, and rat report can all
> be found at the above address.
>
> Note: This release also has a database schema change with additional
> tables and columns, so run the DB creation tool.
> Below are the incompatible changes in this release:
>
> OOZIE-1408 Change column type of "frequency" from int to varchar for
> coordinators
> OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging
> does not work
> OOZIE-1231 Provide access to launcher job URL from web console when using
> Map Reduce action
>
>
> https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible
>
> Also,
> If you are checking out the HCatalog integration functionality, refer to
> HCatalog installation instructions at -
> http://hive.apache.org/docs/hcat_r0.5.0/install.html
> And, ActiveMQ (JMS-compliant message broker) installation instructions at
> - http://activemq.apache.org/getting-started.html
> The Oozie server settings required are enlisted in the Oozie install
> documentation itself.
>
>
> Vote closes after 3 business days on Aug 15 15:00 PDT.
>
>
>
> Thanks,
>
> Mona Chitnis
>

Re: [VOTE] Release Oozie 4.0.0 (RC1)

Posted by Mona Chitnis <mo...@apache.org>.
Excuse typo in download link - 
Please download, test, and try it out:
http://people.apache.org/~mona/oozie-4.0.0-rc1

--
Mona



On Monday, 12 August 2013 2:59 PM, Mona Chitnis <mo...@apache.org> wrote:
 
Hello Oozie community,

The release candidate 1 for Oozie 4.0.0 is available. (change - small release-log.txt correction in rc0 that Virag pointed out)

Oozie 4.0.0 has major features such as Hcatalog Integration, SLA Monitoring (with Dashboard in UI) and JMS Messaging. It has several other important bug fixes. You can refer to the release-log.txt for all the features and fixes.

Keys to verify the signature of the release artifact are available at
http://www.apache.org/dist/oozie/KEYS

Please download, test, and try it out:
http://people.apache.org/~mona/oozie-4.0.0-rc0

The release, md5 signature, gpg signature, and rat report can all
be found at the above address.

Note: This release also has a database schema change with additional tables and columns, so run the DB creation tool.
Below are the incompatible changes in this release:

OOZIE-1408 Change column type of "frequency" from int to varchar for coordinators
OOZIE-1357 Can't view more than 1000 actions of a coordinator and paging does not work
OOZIE-1231 Provide access to launcher job URL from web console when using Map Reduce action

https://issues.apache.org/jira/issues/?jql=project%20%3D%20OOZIE%20AND%20labels%20%3D%20incompatible

Also, 
If you are checking out the HCatalog integration functionality, refer to HCatalog installation instructions at -
http://hive.apache.org/docs/hcat_r0.5.0/install.html
And, ActiveMQ (JMS-compliant message broker) installation instructions at - http://activemq.apache.org/getting-started.html
The Oozie server settings required are enlisted in the Oozie install documentation itself.


Vote closes after 3 business days on Aug 15 15:00 PDT.



Thanks,

Mona Chitnis