[jira] [Updated] (OOZIE-3121) bump all maven plugins to latest versions

2018-02-02 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3121:

Attachment: OOZIE-3121-02.patch

> bump all maven plugins to latest versions
> -
>
> Key: OOZIE-3121
> URL: https://issues.apache.org/jira/browse/OOZIE-3121
> Project: Oozie
>  Issue Type: Improvement
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Major
> Fix For: 5.0.0
>
> Attachments: OOZIE-3121-02.patch, OOZIE-3121.patch
>
>
> bump all maven plugins to latest



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


Re: [jira] [Commented] (OOZIE-2814) OYA: Update example workflows to newest schemas

2018-01-31 Thread Artem Ervits
That was my pet peeve for a long time, it'd be a welcome change to replace
jobTracker nomenclature.

On Jan 31, 2018 4:05 PM, "Robert Kanter (JIRA)"  wrote:

>
> [ https://issues.apache.org/jira/browse/OOZIE-2814?page=
> com.atlassian.jira.plugin.system.issuetabpanels:comment-
> tabpanel&focusedCommentId=16347605#comment-16347605 ]
>
> Robert Kanter commented on OOZIE-2814:
> --
>
> I think we should also update {{}} to {{}}
> to encourage users to start using it.
>
> > OYA: Update example workflows to newest schemas
> > ---
> >
> > Key: OOZIE-2814
> > URL: https://issues.apache.org/jira/browse/OOZIE-2814
> > Project: Oozie
> >  Issue Type: Sub-task
> >Affects Versions: 5.0.0
> >Reporter: Robert Kanter
> >Assignee: Attila Sasvari
> >Priority: Blocker
> > Attachments: OOZIE-2814-00.patch
> >
> >
> > OOZIE-2687 will add in a whole set of newer schemas that are more
> Yarn-centric.  Most, if not all, examples currently use pretty old versions
> of the schemas.  We should take this opportunity to update the examples to
> the newest schemas added by OOZIE-2687, which should help demonstrate them.
> > It may make sense to keep the older schemas too, to show that older
> workflows still work.  We have some examples where we have two workflow XML
> files that do the same thing in different ways.
>
>
>
> --
> This message was sent by Atlassian JIRA
> (v7.6.3#76005)
>


Re: Welcoming new Oozie PMC members: Attila Sasvari, Peter Cseh, and Peter Bacsko

2018-01-31 Thread Artem Ervits
Well deserved, congratulations guys!!

On Jan 31, 2018 6:27 PM, "Robert Kanter"  wrote:

> Hello Oozie community,
>
> It's my pleasure to announce that Attila Sasvari, Peter Cseh, and Peter
> Bascko
> have become the newest additions to the Oozie PMC.
>
> Please join me congratulating them.
> Congrats!
>
>
> - Robert, on behalf of the Oozie PMC
>


Re: [VOTE] Release Oozie 4.3.1 (candidate 3)

2018-01-31 Thread Artem Ervits
@Rohini, yes Oozie-2888 fixed the issue what I meant was to replace commons
lib with java.nio just like the Hadoop jira he had referenced. The
Oozie-2888 bumps commons lib to latest only, it doesn't use built-in libs.

On Jan 31, 2018 9:41 AM, "Rohini Palaniswamy"  wrote:

> >for 4.3.1 it's probably a non-issue but for 5.0 perhaps we'd like to
> tackle
> it
> Attila mentioned that OOZIE-2888 already fixed the problem in 5.0.
>
>
> On Wed, Jan 31, 2018 at 6:34 AM, Artem Ervits 
> wrote:
>
> > @Attila, would you like me to open jira for:
> >
> > -  HADOOP-13444 replaced org.apache.commons.io.Charsets with
> > java.nio.charset.StandardCharsets so it shall not be a problem on hadoop
> > 2.8+
> >
> > for 4.3.1 it's probably a non-issue but for 5.0 perhaps we'd like to
> tackle
> > it? I'm happy to dedicate some cycles to it.
> >
> > On Tue, Jan 30, 2018 at 11:52 PM, Attila Sasvari 
> > wrote:
> >
> > > - I could not reproduce the NoClassDefFoundError Artem reported with
> > hadoop
> > > 2.6.0. I changed  bin/oozie-setup.sh so that it prints loaded classes
> > > (passed -verbose:class to the JVM). Interestingly,
> org/apache/commons/io/
> > > Charsets was not even loaded.
> > >
> > > However, when I tried again with hadoop.version *2.7.5* , it resulted
> in
> > > the error mentioned:
> > >
> > > java.lang.NoClassDefFoundError: org/apache/commons/io/Charsets
> > > at org.apache.hadoop.security.Credentials.(
> Credentials.java:222)
> > > at org.apache.hadoop.mapred.JobConf.(JobConf.java:334)
> > > at org.apache.oozie.service.HadoopAccessorService.createJobConf(
> > > HadoopAccessorService.java:349)
> > > at org.apache.oozie.tools.OozieSharelibCLI.run(
> > OozieSharelibCLI.java:171)
> > > at org.apache.oozie.tools.OozieSharelibCLI.main(
> > OozieSharelibCLI.java:67)
> > > Caused by: java.lang.ClassNotFoundException:
> > > org.apache.commons.io.Charsets
> > >
> > > It looks like https://issues.apache.org/jira/browse/OOZIE-2396
> > >
> > > Some more info:
> > > - ./lib/commons-io-2.1.jar does not contain org/apache/commons/io/
> > > Charsets.
> > >
> > > - related hadoop 2.7.0 jira:
> > > https://issues.apache.org/jira/browse/HADOOP-11389
> > > - related hadoop code:
> > > https://github.com/apache/hadoop/blame/branch-2.7.0/
> > > hadoop-common-project/hadoop-common/src/main/java/org/
> > > apache/hadoop/security/Credentials.java#L36
> > > -  HADOOP-13444 replaced org.apache.commons.io.Charsets with
> > > java.nio.charset.StandardCharsets so it shall not be a problem on
> hadoop
> > > 2.8+
> > >
> > > Note: Oozie 5.0.0-beta1 includes OOZIE-2888 that add updated commons-io
> > to
> > > 2.4. That is why it is not a problem there.
> > >
> > > On Wed, Jan 31, 2018 at 1:18 AM, Satish Saley 
> > > wrote:
> > >
> > > > 1. However, json2.js is referenced by webapp/index.html and it
> > > > is not found (not a blocker in my opinion).
> > > >
> > > > -> It will show only in firebug/developer tools. Not on UI.
> > > >
> > > > 2. [WARNING] Unable to process class com/sun/tools/jdi/
> > > ClassTypeImpl.class
> > > > in
> > > > JarAnalyzer File
> > > >
> > > > -> We can ignore the warning as build is going through
> > > >
> > > > 3. /user/oozie/share/lib/lib_20180130164518
> > > > Exception in thread "main" java.lang.NoClassDefFoundError:
> > > >
> > > > I am not able to reproduce this.
> > > >
> > > > saley@easyfamily-lm on Tue Jan 30 at 11:44 AM
> > > > ~/src/oozie-4.3.1/distro/target/oozie-4.3.1-distro/oozie-4.3.1
> > > > $ bin/oozie-setup.sh sharelib create -fs hdfs://localhost
> -concurrency
> > 8
> > > > -locallib oozie-sharelib-4.3.1.tar.gz
> > > >   setting CATALINA_OPTS="$CATALINA_OPTS -Xmx1024m"
> > > > log4j:WARN No appenders could be found for logger
> > > > (org.apache.hadoop.util.Shell).
> > > > log4j:WARN Please initialize the log4j system properly.
> > > > log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig
> > for
> > > > more info.
> > > > SLF4J: Class path contains multiple SLF4J bindings.
> > > > SLF4J: Found binding in
> > > > [jar:file:/Users/saley/src/oozie-4.3.1/distr

Re: [VOTE] Release Oozie 4.3.1 (candidate 3)

2018-01-31 Thread Artem Ervits
@Attila, would you like me to open jira for:

-  HADOOP-13444 replaced org.apache.commons.io.Charsets with
java.nio.charset.StandardCharsets so it shall not be a problem on hadoop
2.8+

for 4.3.1 it's probably a non-issue but for 5.0 perhaps we'd like to tackle
it? I'm happy to dedicate some cycles to it.

On Tue, Jan 30, 2018 at 11:52 PM, Attila Sasvari 
wrote:

> - I could not reproduce the NoClassDefFoundError Artem reported with hadoop
> 2.6.0. I changed  bin/oozie-setup.sh so that it prints loaded classes
> (passed -verbose:class to the JVM). Interestingly, org/apache/commons/io/
> Charsets was not even loaded.
>
> However, when I tried again with hadoop.version *2.7.5* , it resulted in
> the error mentioned:
>
> java.lang.NoClassDefFoundError: org/apache/commons/io/Charsets
> at org.apache.hadoop.security.Credentials.(Credentials.java:222)
> at org.apache.hadoop.mapred.JobConf.(JobConf.java:334)
> at org.apache.oozie.service.HadoopAccessorService.createJobConf(
> HadoopAccessorService.java:349)
> at org.apache.oozie.tools.OozieSharelibCLI.run(OozieSharelibCLI.java:171)
> at org.apache.oozie.tools.OozieSharelibCLI.main(OozieSharelibCLI.java:67)
> Caused by: java.lang.ClassNotFoundException:
> org.apache.commons.io.Charsets
>
> It looks like https://issues.apache.org/jira/browse/OOZIE-2396
>
> Some more info:
> - ./lib/commons-io-2.1.jar does not contain org/apache/commons/io/
> Charsets.
>
> - related hadoop 2.7.0 jira:
> https://issues.apache.org/jira/browse/HADOOP-11389
> - related hadoop code:
> https://github.com/apache/hadoop/blame/branch-2.7.0/
> hadoop-common-project/hadoop-common/src/main/java/org/
> apache/hadoop/security/Credentials.java#L36
> -  HADOOP-13444 replaced org.apache.commons.io.Charsets with
> java.nio.charset.StandardCharsets so it shall not be a problem on hadoop
> 2.8+
>
> Note: Oozie 5.0.0-beta1 includes OOZIE-2888 that add updated commons-io to
> 2.4. That is why it is not a problem there.
>
> On Wed, Jan 31, 2018 at 1:18 AM, Satish Saley 
> wrote:
>
> > 1. However, json2.js is referenced by webapp/index.html and it
> > is not found (not a blocker in my opinion).
> >
> > -> It will show only in firebug/developer tools. Not on UI.
> >
> > 2. [WARNING] Unable to process class com/sun/tools/jdi/
> ClassTypeImpl.class
> > in
> > JarAnalyzer File
> >
> > -> We can ignore the warning as build is going through
> >
> > 3. /user/oozie/share/lib/lib_20180130164518
> > Exception in thread "main" java.lang.NoClassDefFoundError:
> >
> > I am not able to reproduce this.
> >
> > saley@easyfamily-lm on Tue Jan 30 at 11:44 AM
> > ~/src/oozie-4.3.1/distro/target/oozie-4.3.1-distro/oozie-4.3.1
> > $ bin/oozie-setup.sh sharelib create -fs hdfs://localhost -concurrency 8
> > -locallib oozie-sharelib-4.3.1.tar.gz
> >   setting CATALINA_OPTS="$CATALINA_OPTS -Xmx1024m"
> > log4j:WARN No appenders could be found for logger
> > (org.apache.hadoop.util.Shell).
> > log4j:WARN Please initialize the log4j system properly.
> > log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for
> > more info.
> > SLF4J: Class path contains multiple SLF4J bindings.
> > SLF4J: Found binding in
> > [jar:file:/Users/saley/src/oozie-4.3.1/distro/target/
> > oozie-4.3.1-distro/oozie-4.3.1/lib/slf4j-log4j12-1.6.6.jar!
> > /org/slf4j/impl/StaticLoggerBinder.class]
> > SLF4J: Found binding in
> > [jar:file:/Users/saley/src/oozie-4.3.1/distro/target/
> > oozie-4.3.1-distro/oozie-4.3.1/lib/slf4j-simple-1.6.6.jar!/
> org/slf4j/impl/
> > StaticLoggerBinder.class]
> > SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
> > explanation.
> > SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
> > the destination path for sharelib is:
> > /user/saley/share/lib/lib_20180130114509
> > Running 410 copy tasks on 8 threads
> >
> >
> > saley@easyfamily-lm on Tue Jan 30 at 11:45 AM
> > ~/src/oozie-4.3.1/distro/target/oozie-4.3.1-distro/oozie-4.3.1
> > $ hdfs dfs -ls
> > SLF4J: Class path contains multiple SLF4J bindings.
> > SLF4J: Found binding in
> > [jar:file:/Users/saley/hadoop-2.6.3/share/hadoop/common/lib/
> > slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
> > SLF4J: Found binding in
> > [jar:file:/Users/saley/src/tez/tez-dist/target/tez-0.8.5-
> > minimal/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/
> > StaticLoggerBinder.class]
> > SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
> > explanation.
> > SLF4J: Actual binding is of type [org.slf4j.im

Re: [VOTE] Release Oozie 4.3.1 (candidate 3)

2018-01-30 Thread Artem Ervits
security.Credentials.(Credentials.java:222)
at org.apache.hadoop.mapred.JobConf.(JobConf.java:334)
at
org.apache.oozie.service.HadoopAccessorService.createJobConf(HadoopAccessorService.java:349)
at org.apache.oozie.tools.OozieSharelibCLI.run(OozieSharelibCLI.java:171)
at org.apache.oozie.tools.OozieSharelibCLI.main(OozieSharelibCLI.java:67)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.io.Charsets
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:338)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 5 more

none were blockers as I was able to get the following output

$ curl http://localhost:11000/oozie/v2/admin/status
{"systemMode":"NORMAL"}


On Tue, Jan 30, 2018 at 10:45 AM, Rohini Palaniswamy 
wrote:

> > the server directory is missing altogether now.
>  That is as expected. It is supposed to be only in 5.0
>
> On Mon, Jan 29, 2018 at 12:47 PM, Artem Ervits 
> wrote:
>
> > the server directory is missing altogether now.
> >
> > On Mon, Jan 29, 2018 at 6:59 AM, Attila Sasvari 
> > wrote:
> >
> > > +1 (non-binding)
> > >
> > > - Verified hash, signature files, rat report
> > > - Built Oozie distro with hadoop.version set to 2.6.0 using the uber,
> > > hadoop-2, spark-1 profiles
> > > - Submitted example workflows/coordinators/bundles (except hive related
> > > ones) on a hadoop 2.6.0 in pseudo distributed mode
> > > - Verified Tomcat version was 6.0.53
> > > - Clicked through the web UI, log retrieval worked, job DAG-s were
> > > rendered, version was correct.
> > > - Verified instrumentation, SLA pages; they are now HTML based as
> > expected
> > > (OOZIE-2533). However, json2.js is referenced by webapp/index.html and
> it
> > > is not found (not a blocker in my opinion).
> > > - Enabled SLA, re-submitted sla coordinator example, and retrieved SLA
> > > details for the "one-op-wf" application, graph was displayed properly.
> > >
> > > I used JDK 1.8.0_121
> > >
> > > On Sun, Jan 28, 2018 at 7:09 AM, Satish Saley 
> > > wrote:
> > >
> > > > Hi,
> > > >
> > > > I have created a build for Oozie 4.3.1, candidate 3.
> > > >
> > > > It includes all the changes decided earlier except OOZIE-3018,
> > OOZIE-2771
> > > > and
> > > > OOZIE-3072. OOZIE-3018 makes changes to SchemaCheckerService which we
> > are
> > > > not picking.
> > > > OOZIE-2771 makes changes to file created in OOZIE-2666.
> > > > OOZIE-3072 makes changes to files created in OOZIE-1770.
> > > >
> > > >
> > > > 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/~satishsaley/oozie-4.3.1-rc3/
> > > >
> > > >
> > > > The release, md5 signature, gpg signature, and rat report can be
> found
> > at
> > > > the above address.
> > > >
> > > > Vote closes on 01/31/2018 11:59 PM PT.
> > > >
> > >
> > >
> > >
> > > --
> > > --
> > > Attila Sasvari
> > > Software Engineer
> > > <http://www.cloudera.com/>
> > >
> >
>


Re: [VOTE] Release Oozie 4.3.1 (candidate 3)

2018-01-29 Thread Artem Ervits
the server directory is missing altogether now.

On Mon, Jan 29, 2018 at 6:59 AM, Attila Sasvari 
wrote:

> +1 (non-binding)
>
> - Verified hash, signature files, rat report
> - Built Oozie distro with hadoop.version set to 2.6.0 using the uber,
> hadoop-2, spark-1 profiles
> - Submitted example workflows/coordinators/bundles (except hive related
> ones) on a hadoop 2.6.0 in pseudo distributed mode
> - Verified Tomcat version was 6.0.53
> - Clicked through the web UI, log retrieval worked, job DAG-s were
> rendered, version was correct.
> - Verified instrumentation, SLA pages; they are now HTML based as expected
> (OOZIE-2533). However, json2.js is referenced by webapp/index.html and it
> is not found (not a blocker in my opinion).
> - Enabled SLA, re-submitted sla coordinator example, and retrieved SLA
> details for the "one-op-wf" application, graph was displayed properly.
>
> I used JDK 1.8.0_121
>
> On Sun, Jan 28, 2018 at 7:09 AM, Satish Saley 
> wrote:
>
> > Hi,
> >
> > I have created a build for Oozie 4.3.1, candidate 3.
> >
> > It includes all the changes decided earlier except OOZIE-3018, OOZIE-2771
> > and
> > OOZIE-3072. OOZIE-3018 makes changes to SchemaCheckerService which we are
> > not picking.
> > OOZIE-2771 makes changes to file created in OOZIE-2666.
> > OOZIE-3072 makes changes to files created in OOZIE-1770.
> >
> >
> > 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/~satishsaley/oozie-4.3.1-rc3/
> >
> >
> > The release, md5 signature, gpg signature, and rat report can be found at
> > the above address.
> >
> > Vote closes on 01/31/2018 11:59 PM PT.
> >
>
>
>
> --
> --
> Attila Sasvari
> Software Engineer
> 
>


Re: [VOTE] Release Oozie 4.3.1 (candidate 2)

2018-01-26 Thread Artem Ervits
server directory is missing pom.xml
verified distro dir contains tomcat-6.0.53


On Wed, Jan 24, 2018 at 11:03 PM, satish saley 
wrote:

> Thank you Robert. I will add that patch.I have java 1.8.0_101-b13, but I
> didn't face any issues. I will check with Java 8u91 before and after patch.
> @Artem, you can use 4.3 branch https://github.com/
> apache/oozie/tree/branch-4.3 . I haven't created separate branch for this
> release.
>
>
>
> On Wednesday, January 24, 2018 5:50 PM, Robert Kanter <
> rkan...@cloudera.com> wrote:
>
>
>  Here's what I did:
> - Verified md5
> - Verified signature (gpg)
> - Looked at rat report
> - Looked at release log
> - Verified Tomcat is version 6.0.53
> - Built Oozie against Hadoop 2.7.2, using an empty local maven repo
>
>
> I ran into another problem: OOZIE-2533.  Basically, newer versions of Java
> + newer versions of Tomcat 6 break JSP compilation so the Oozie Web UI is
> completely broken.  The JIRA cites Java 8u91 and later, but I still ran
> into this even when I tried with Java 7u79.  I guess whatever breaks this
> in 8u91 must have been backported to 7u79.  I heard that it was for some
> Java security fix so there's not a lot of detail on it.  Applying the patch
> from OOZIE-2533 appears to fix it.  We've actually been using that patch in
> CDH for almost 2 years now.  I apologize for forgetting about this when I
> reported that we should upgrade Tomcat in RC1.  The patch is pretty minor
> and basically just replaces the jsp page with a static html page.  The only
> downside is that the SLA, Instrumentation, and Metrics pages are always
> showing, even if those features are disabled (because that's what JSP was
> used for).
>
>
> - Robert
>
> On Wed, Jan 24, 2018 at 4:18 PM, Artem Ervits 
> wrote:
>
> > Satish, I have ansible scripts to pull a git branch and run through
> > mkdistro and install steps and I wrote another recipe to stand up a
> cluster
> > based on binary release. The problem I just realized is that my compile
> > from source script relies on a branch which doesn't exist, is it your
> > private repo? If so, can you publish that and I'll test it with my
> script?
> > Otherwise, can you publish the binary release and I'll try to test it as
> > well. I have more confidence with compile from source script but that
> won't
> > work on 4.3.1 until you create the branch on github. That said, results
> of
> > my test are the following
> >
> > verified md5 +1
> > tried to build with
> >
> > *bin/mkdistro.sh -DskipTests -Dhadoop.version=2.7.5*
> >
> > found the following error
> >
> > Downloading:
> > http://repo1.maven.org/maven2/org/apache/apache-jar-
> > resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar
> > Downloaded:
> > http://repo1.maven.org/maven2/org/apache/apache-jar-
> > resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar
> > (13 KB at 325.1 KB/sec)
> > [INFO]
> > 
> > [INFO] Reactor Summary:
> > [INFO]
> > [INFO] Apache Oozie Main . FAILURE
> > [24.265s]
> > [INFO] Apache Oozie Hadoop Utils hadoop-2-4.3.1 .. SKIPPED
> > [INFO] Apache Oozie Hadoop Distcp hadoop-2-4.3.1 . SKIPPED
> > [INFO] Apache Oozie Hadoop Auth hadoop-2-4.3.1 Test .. SKIPPED
> > [INFO] Apache Oozie Hadoop Libs .. SKIPPED
> > [INFO] Apache Oozie Client ... SKIPPED
> > [INFO] Apache Oozie Share Lib Oozie .. SKIPPED
> > [INFO] Apache Oozie Share Lib HCatalog ... SKIPPED
> > [INFO] Apache Oozie Share Lib Distcp . SKIPPED
> > [INFO] Apache Oozie Core . SKIPPED
> > [INFO] Apache Oozie Share Lib Streaming .. SKIPPED
> > [INFO] Apache Oozie Share Lib Pig  SKIPPED
> > [INFO] Apache Oozie Share Lib Hive ... SKIPPED
> > [INFO] Apache Oozie Share Lib Hive 2 . SKIPPED
> > [INFO] Apache Oozie Share Lib Sqoop .. SKIPPED
> > [INFO] Apache Oozie Examples . SKIPPED
> > [INFO] Apache Oozie Share Lib Spark .. SKIPPED
> > [INFO] Apache Oozie Share Lib  SKIPPED
> > [INFO] Apache Oozie Docs . SKIPPED
> > [INFO] Apache Oozie WebApp ... SKIPPED
> > [INFO] Apache Oozie Tools  SKIPPED
> &

Re: [VOTE] Release Oozie 4.3.1 (candidate 2)

2018-01-24 Thread Artem Ervits
Satish, I have ansible scripts to pull a git branch and run through
mkdistro and install steps and I wrote another recipe to stand up a cluster
based on binary release. The problem I just realized is that my compile
from source script relies on a branch which doesn't exist, is it your
private repo? If so, can you publish that and I'll test it with my script?
Otherwise, can you publish the binary release and I'll try to test it as
well. I have more confidence with compile from source script but that won't
work on 4.3.1 until you create the branch on github. That said, results of
my test are the following

verified md5 +1
tried to build with

*bin/mkdistro.sh -DskipTests -Dhadoop.version=2.7.5*

found the following error

Downloading:
http://repo1.maven.org/maven2/org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar
Downloaded:
http://repo1.maven.org/maven2/org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar
(13 KB at 325.1 KB/sec)
[INFO]

[INFO] Reactor Summary:
[INFO]
[INFO] Apache Oozie Main . FAILURE [24.265s]
[INFO] Apache Oozie Hadoop Utils hadoop-2-4.3.1 .. SKIPPED
[INFO] Apache Oozie Hadoop Distcp hadoop-2-4.3.1 . SKIPPED
[INFO] Apache Oozie Hadoop Auth hadoop-2-4.3.1 Test .. SKIPPED
[INFO] Apache Oozie Hadoop Libs .. SKIPPED
[INFO] Apache Oozie Client ... SKIPPED
[INFO] Apache Oozie Share Lib Oozie .. SKIPPED
[INFO] Apache Oozie Share Lib HCatalog ... SKIPPED
[INFO] Apache Oozie Share Lib Distcp . SKIPPED
[INFO] Apache Oozie Core . SKIPPED
[INFO] Apache Oozie Share Lib Streaming .. SKIPPED
[INFO] Apache Oozie Share Lib Pig  SKIPPED
[INFO] Apache Oozie Share Lib Hive ... SKIPPED
[INFO] Apache Oozie Share Lib Hive 2 . SKIPPED
[INFO] Apache Oozie Share Lib Sqoop .. SKIPPED
[INFO] Apache Oozie Examples . SKIPPED
[INFO] Apache Oozie Share Lib Spark .. SKIPPED
[INFO] Apache Oozie Share Lib  SKIPPED
[INFO] Apache Oozie Docs . SKIPPED
[INFO] Apache Oozie WebApp ... SKIPPED
[INFO] Apache Oozie Tools  SKIPPED
[INFO] Apache Oozie MiniOozie  SKIPPED
[INFO] Apache Oozie Distro ... SKIPPED
[INFO] Apache Oozie ZooKeeper Security Tests . SKIPPED
[INFO]

[INFO] BUILD FAILURE
[INFO]

[INFO] Total time: 55.955s
[INFO] Finished at: Thu Jan 25 00:14:08 UTC 2018
[INFO] Final Memory: 20M/48M
[INFO]

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-remote-resources-plugin:1.5:process
(default) on project oozie-main: Error finding remote resources manifests:
/opt/oozie/oozie-4.3.1/target/maven-shared-archive-resources/META-INF/NOTICE
(No such file or directory) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

ERROR, Oozie distro creation failed

again, I just wrote this ansible script and may have missed something.

Thanks

On Wed, Jan 24, 2018 at 2:05 PM, Rohini Palaniswamy 
wrote:

> +1 (binding)
>
> - Verified md5, signature, release log and rat report
> - Ran the unit tests and they are good.
> - Executed a simple workflow
> - Verified that the tomcat is now 6.0.53
>
> Regards,
> Rohini
>
> On Tue, Jan 23, 2018 at 4:27 PM, Satish Saley 
> wrote:
>
> > Hi,
> >
> > I have created a build for Oozie 4.3.1, candidate 2.
> >
> > It includes all the changes decided earlier except OOZIE-3018 and
> > OOZIE-3072. OOZIE-3018 makes changes to SchemaCheckerService which we are
> > not picking. OOZIE-3072 makes changes to files created in OOZIE-1770.
> >
> > 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/~satishsaley/oozie-4.3.1-rc-2/
> >
> >
> > The release, md5 signature, gpg signature, and rat report can be found at
> > the above address.
> >
> > Vote closes on 01/26/2018 11:59 PM PT.
> >
>


[jira] [Assigned] (OOZIE-3025) move distcp-log4j.properties out of the root of core into more appropriate location

2018-01-03 Thread Artem Ervits (JIRA)

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

Artem Ervits reassigned OOZIE-3025:
---

Assignee: Julia Kinga Marton  (was: Artem Ervits)

> move distcp-log4j.properties out of the root of core into more appropriate 
> location
> ---
>
> Key: OOZIE-3025
> URL: https://issues.apache.org/jira/browse/OOZIE-3025
> Project: Oozie
>  Issue Type: Bug
>  Components: core
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Julia Kinga Marton
>
> distcp-log4j.properties file gets created in the root of core library. I 
> think it should be moved to a more appropriate location.
> https://github.com/apache/oozie/blob/master/sharelib/distcp/src/main/java/org/apache/oozie/action/hadoop/DistcpMain.java#L145



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3025) move distcp-log4j.properties out of the root of core into more appropriate location

2018-01-03 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3025:
-

[~kmarton] please go ahead, I reassigned to you. I don't have cycles to work on 
the issue.

> move distcp-log4j.properties out of the root of core into more appropriate 
> location
> ---
>
> Key: OOZIE-3025
> URL: https://issues.apache.org/jira/browse/OOZIE-3025
> Project: Oozie
>  Issue Type: Bug
>  Components: core
>Affects Versions: 4.3.0
>Reporter: Artem Ervits
>Assignee: Julia Kinga Marton
>
> distcp-log4j.properties file gets created in the root of core library. I 
> think it should be moved to a more appropriate location.
> https://github.com/apache/oozie/blob/master/sharelib/distcp/src/main/java/org/apache/oozie/action/hadoop/DistcpMain.java#L145



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


Re: Oozie 5.0.0-beta1

2017-12-18 Thread Artem Ervits
just uploaded patch for OOZIE-2231.

On Mon, Dec 18, 2017 at 10:04 AM, Peter Cseh  wrote:

> Hey Attila,
>
> I won't be able to work on the release for a couple weeks now.
> Thanks for getting the release rolling!
>
> Cheers,
> gp
>
>
> On Mon, Dec 18, 2017 at 4:00 PM, Attila Sasvari 
> wrote:
>
> > Hi everyone,
> >
> > I would like to create the release branch, branch-5.0.0-beta1 (following
> > Hadoop release versioning), earlier.
> >
> > Looking at https://issues.apache.org/jira/projects/OOZIE/versions/
> 12342048
> > there are 3 issues in progress (OOZIE-2231, OOZIE-2942, OOZIE-2974) and 3
> > issues to do (OOZIE-2600, OOZIE-3093, OOZIE-1987). I will push those out
> to
> > 5.0.0 if there are no objections.
> >
> > At the same time, I am volunteering to be the release manager if Peter
> Cseh
> > does not mind.
> >
> > Regards,
> > Attila
> >
> > On Wed, Dec 6, 2017 at 8:28 PM, Robert Kanter 
> > wrote:
> >
> > > Sounds good to me!
> > >
> > > On Wed, Dec 6, 2017 at 5:17 AM, Andras Piros <
> andras.pi...@cloudera.com>
> > > wrote:
> > >
> > > > Good idea Gezapeti!
> > > >
> > > > Time to wrap things up towards a stable 5.0.0 - a release candidate
> on
> > > > 5.0.0b1 is a good first step.
> > > >
> > > > Since other components that Oozie uses like Pig and Hive do not
> (fully)
> > > > support Hadoop 3, we have to wait with OOZIE-2973
> > > > .
> > > >
> > > > Thanks,
> > > >
> > > > Andras
> > > >
> > > > On Wed, Dec 6, 2017 at 1:50 PM, Peter Cseh 
> > > wrote:
> > > >
> > > > > Hi everyone!
> > > > >
> > > > > Now that OOZIE-2969  > jira/browse/OOZIE-2969>
> > > > is
> > > > > committed I'd like to start the process of creating the branch for
> > > > 5.0.0b1
> > > > > and building a release from there.
> > > > > It's unfortunate that we won't be able to support Hadoop 3 in the
> > beta
> > > > for
> > > > > reasons described in OOZIE-2973
> > > > > 
> > > > > I don't see any more blockers for the beta1 and I hope we won't
> find
> > > > > hard-to-fix major issues so we can release Oozie 5.0.0 in early
> 2018.
> > > > > Please let me know if you have any suggestions.
> > > > > Thanks
> > > > > gp
> > > > >
> > > > > --
> > > > > Peter Cseh
> > > > > Software Engineer
> > > > > 
> > > > >
> > > >
> > >
> >
> >
> >
> > --
> > --
> > Attila Sasvari
> > Software Engineer
> > 
> >
>
>
>
> --
> Peter Cseh
> Software Engineer
> 
>


[jira] [Updated] (OOZIE-2231) Upgrade curator to latest version 2.12.0

2017-12-18 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2231:

Attachment: OOZIE-2231-06.patch

attached rebased patch

> Upgrade curator to latest version 2.12.0
> 
>
> Key: OOZIE-2231
> URL: https://issues.apache.org/jira/browse/OOZIE-2231
> Project: Oozie
>  Issue Type: Bug
>  Components: HA
>Reporter: Purshotam Shah
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2231-00.patch, OOZIE-2231-01.patch, 
> OOZIE-2231-02.patch, OOZIE-2231-02.patch, OOZIE-2231-03.patch, 
> OOZIE-2231-04.patch, OOZIE-2231-05.patch, OOZIE-2231-06.patch
>
>
> It have some fix related to InterProcessReadWriteLock, ChildReaper, 
> LeaderSelector which we use.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


Re: Welcoming new Oozie PMC member Satish Saley

2017-12-11 Thread Artem Ervits
Well deserved, congratulations Satish!

On Dec 11, 2017 2:49 PM, "Robert Kanter"  wrote:

> Hello Oozie community,
>
> It's my pleasure to announce that Satish Saley has become the newest
> addition to the Oozie PMC.
>
> Please join me congratulating him.
> Congrats!
>
>
> - Robert, on behalf of the Oozie PMC
>


[jira] [Commented] (OOZIE-3071) Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 than Spark 2.2.0

2017-12-05 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3071:
-

[~rangu] no I meant 3.5, the concern was that 3.5 would break the Spark action 
for Spark 2.2 and only fix for 1.6. I see that branch 1.6 is on 3.3.2 
https://github.com/apache/spark/blob/branch-1.6/pom.xml#L179
branch 2.0 is on 3.3.2 
https://github.com/apache/spark/blob/branch-2.0/pom.xml#L173
branch 2.1 and 2.2 are on 3.5 
https://github.com/apache/spark/blob/branch-2.1/pom.xml#L171 and 
https://github.com/apache/spark/blob/branch-2.2/pom.xml#L171 respectively

so we either wait or take risk updating to 3.6.

> Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 than 
> Spark 2.2.0
> 
>
> Key: OOZIE-3071
> URL: https://issues.apache.org/jira/browse/OOZIE-3071
> Project: Oozie
>  Issue Type: Bug
>  Components: core
>Affects Versions: 4.3.0
>Reporter: Ran Gu
>Assignee: Artem Ervits
>  Labels: patch
> Attachments: OOZIE-3071-1.patch, OOZIE-3071.patch
>
>
> Currently Oozie 4.3.0 uses commons-lang3 version 3.3.2 in Spark sharelib.
> Spark 2.2.0 uses commons-lang3 version 3.5. 
> This causes Oozie(/Spark) job failures on EMR-5.8.0 clusters.
> Error message:
> 17/08/22 00:22:43 ERROR ApplicationMaster: User class threw exception: 
> java.lang.IllegalArgumentException: Illegal pattern component: XXX
> java.lang.IllegalArgumentException: Illegal pattern component: XXX
> at 
> org.apache.commons.lang3.time.FastDatePrinter.parsePattern(FastDatePrinter.java:282)
> at 
> org.apache.commons.lang3.time.FastDatePrinter.init(FastDatePrinter.java:149)
> at 
> org.apache.commons.lang3.time.FastDatePrinter.(FastDatePrinter.java:142)
> at 
> org.apache.commons.lang3.time.FastDateFormat.(FastDateFormat.java:384)
> at 
> org.apache.commons.lang3.time.FastDateFormat.(FastDateFormat.java:369)
> at 
> org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:91)
> at 
> org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:88)
> at org.apache.commons.lang3.time.FormatCache.getInstance(FormatCache.java:82) 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (OOZIE-3071) Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 than Spark 2.2.0

2017-12-05 Thread Artem Ervits (JIRA)

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

Artem Ervits reassigned OOZIE-3071:
---

Assignee: Artem Ervits

> Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 than 
> Spark 2.2.0
> 
>
> Key: OOZIE-3071
> URL: https://issues.apache.org/jira/browse/OOZIE-3071
> Project: Oozie
>  Issue Type: Bug
>  Components: core
>Affects Versions: 4.3.0
>Reporter: Ran Gu
>Assignee: Artem Ervits
>  Labels: patch
> Attachments: OOZIE-3071-1.patch, OOZIE-3071.patch
>
>
> Currently Oozie 4.3.0 uses commons-lang3 version 3.3.2 in Spark sharelib.
> Spark 2.2.0 uses commons-lang3 version 3.5. 
> This causes Oozie(/Spark) job failures on EMR-5.8.0 clusters.
> Error message:
> 17/08/22 00:22:43 ERROR ApplicationMaster: User class threw exception: 
> java.lang.IllegalArgumentException: Illegal pattern component: XXX
> java.lang.IllegalArgumentException: Illegal pattern component: XXX
> at 
> org.apache.commons.lang3.time.FastDatePrinter.parsePattern(FastDatePrinter.java:282)
> at 
> org.apache.commons.lang3.time.FastDatePrinter.init(FastDatePrinter.java:149)
> at 
> org.apache.commons.lang3.time.FastDatePrinter.(FastDatePrinter.java:142)
> at 
> org.apache.commons.lang3.time.FastDateFormat.(FastDateFormat.java:384)
> at 
> org.apache.commons.lang3.time.FastDateFormat.(FastDateFormat.java:369)
> at 
> org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:91)
> at 
> org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:88)
> at org.apache.commons.lang3.time.FormatCache.getInstance(FormatCache.java:82) 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3071) Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 than Spark 2.2.0

2017-12-05 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3071:
-

[~rangu] it's really up to the community to decide and get +1s. [~gezapeti] 
what did you think about my comment on 3.5 being the version in both 1.6 and 
2.2 branches?



> Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 than 
> Spark 2.2.0
> 
>
> Key: OOZIE-3071
> URL: https://issues.apache.org/jira/browse/OOZIE-3071
> Project: Oozie
>  Issue Type: Bug
>  Components: core
>Affects Versions: 4.3.0
>Reporter: Ran Gu
>  Labels: patch
> Attachments: OOZIE-3071-1.patch, OOZIE-3071.patch
>
>
> Currently Oozie 4.3.0 uses commons-lang3 version 3.3.2 in Spark sharelib.
> Spark 2.2.0 uses commons-lang3 version 3.5. 
> This causes Oozie(/Spark) job failures on EMR-5.8.0 clusters.
> Error message:
> 17/08/22 00:22:43 ERROR ApplicationMaster: User class threw exception: 
> java.lang.IllegalArgumentException: Illegal pattern component: XXX
> java.lang.IllegalArgumentException: Illegal pattern component: XXX
> at 
> org.apache.commons.lang3.time.FastDatePrinter.parsePattern(FastDatePrinter.java:282)
> at 
> org.apache.commons.lang3.time.FastDatePrinter.init(FastDatePrinter.java:149)
> at 
> org.apache.commons.lang3.time.FastDatePrinter.(FastDatePrinter.java:142)
> at 
> org.apache.commons.lang3.time.FastDateFormat.(FastDateFormat.java:384)
> at 
> org.apache.commons.lang3.time.FastDateFormat.(FastDateFormat.java:369)
> at 
> org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:91)
> at 
> org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:88)
> at org.apache.commons.lang3.time.FormatCache.getInstance(FormatCache.java:82) 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3114) fix for warning: no @return

2017-11-17 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3114:

Attachment: OOZIE-3114-4.patch

[~gezapeti] please review, the lists return attributes of a coordinator job.

> fix for warning: no @return
> ---
>
> Key: OOZIE-3114
> URL: https://issues.apache.org/jira/browse/OOZIE-3114
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3114-3.patch, OOZIE-3114-4.patch, OOZIE-3114.patch
>
>
> there are a few instances of warning "warning: no @return"
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
>  warning: no @return
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
>  warning: no @return
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3129) Fix test TestConfigurationService.testOozieConfig

2017-11-15 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3129:

Attachment: OOZIE-3129.patch

[~satishsaley] I had a patch for this issue ready. Please review

> Fix test TestConfigurationService.testOozieConfig
> -
>
> Key: OOZIE-3129
> URL: https://issues.apache.org/jira/browse/OOZIE-3129
> Project: Oozie
>  Issue Type: Bug
>Reporter: Satish Subhashrao Saley
>Assignee: Satish Subhashrao Saley
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3129.patch
>
>
> Test is failing on 
> https://github.com/apache/oozie/blob/master/core/src/test/java/org/apache/oozie/service/TestConfigurationService.java#L201



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3118) fix for error: self-closing element not allowed

2017-11-15 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3118:

Attachment: OOZIE-3118-2.patch

[~asasvari] please view the new patch, I was not able to find the last three 
instances of the error you specified

{noformat}
/tools/src/main/java/org/apache/oozie/tools/OozieDBExportCLI.java:49: error: 
self-closing element not allowed
/tools/src/main/java/org/apache/oozie/tools/OozieDBImportCLI.java:82: error: 
self-closing element not allowed
/tools/src/main/java/org/apache/oozie/tools/OozieDBImportCLI.java:88: error: 
self-closing element not allowed
{noformat}

> fix for error: self-closing element not allowed
> ---
>
> Key: OOZIE-3118
> URL: https://issues.apache.org/jira/browse/OOZIE-3118
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
> mvn: 3.5.2
> jdk: 1.8.0.144
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3118-2.patch, OOZIE-3118.patch
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PasswordMasker.java:30:
>  error: self-closing element not allowed
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3119) fix for Could not resolve dependencies for project org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find org.apache.oozie:oozie-sharelib-oozie:jar:5

2017-11-14 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3119:
-

[~gezapeti] you're right, it was something wrong with my environment, I ran mvn 
install and then findbugs and it was good. I will close this jira.

> fix for Could not resolve dependencies for project 
> org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find 
> org.apache.oozie:oozie-sharelib-oozie:jar:5.0.0-beta1 in 
> http://repo1.maven.org/maven2 was cached in the local repositor
> -
>
> Key: OOZIE-3119
> URL: https://issues.apache.org/jira/browse/OOZIE-3119
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> Command line was: 
> /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/../bin/javadoc
>  @options @packages
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine 
> (AbstractJavadocMojo.java:5188)
> at org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport 
> (AbstractJavadocMojo.java:2075)
> at org.apache.maven.plugin.javadoc.JavadocReport.generate 
> (JavadocReport.java:130)
> at org.apache.maven.plugin.javadoc.JavadocReport.execute 
> (JavadocReport.java:318)
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
> (DefaultBuildPluginManager.java:134)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:208)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:154)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:51)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute (MavenCli.java:955)
> at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:290)
> at org.apache.maven.cli.MavenCli.main (MavenCli.java:194)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode 
> (Launcher.java:415)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main 
> (Launcher.java:356)
> [INFO]
> [INFO] 
> 
> [INFO] Building Apache Oozie Share Lib HCatalog 5.0.0-beta1
> [INFO] 
> 
> [INFO]
> [INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > 
> generate-sources @ oozie-sharelib-hcatalog >>>
> [INFO]
> [INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < 
> generate-sources @ oozie-sharelib-hcatalog <<<
> [INFO]
> [INFO] 
> 
> [INFO] Reactor Summary:

[jira] [Resolved] (OOZIE-3119) fix for Could not resolve dependencies for project org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find org.apache.oozie:oozie-sharelib-oozie:jar:5.

2017-11-14 Thread Artem Ervits (JIRA)

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

Artem Ervits resolved OOZIE-3119.
-
Resolution: Invalid

> fix for Could not resolve dependencies for project 
> org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find 
> org.apache.oozie:oozie-sharelib-oozie:jar:5.0.0-beta1 in 
> http://repo1.maven.org/maven2 was cached in the local repositor
> -
>
> Key: OOZIE-3119
> URL: https://issues.apache.org/jira/browse/OOZIE-3119
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> Command line was: 
> /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/../bin/javadoc
>  @options @packages
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine 
> (AbstractJavadocMojo.java:5188)
> at org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport 
> (AbstractJavadocMojo.java:2075)
> at org.apache.maven.plugin.javadoc.JavadocReport.generate 
> (JavadocReport.java:130)
> at org.apache.maven.plugin.javadoc.JavadocReport.execute 
> (JavadocReport.java:318)
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
> (DefaultBuildPluginManager.java:134)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:208)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:154)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:51)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute (MavenCli.java:955)
> at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:290)
> at org.apache.maven.cli.MavenCli.main (MavenCli.java:194)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode 
> (Launcher.java:415)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main 
> (Launcher.java:356)
> [INFO]
> [INFO] 
> 
> [INFO] Building Apache Oozie Share Lib HCatalog 5.0.0-beta1
> [INFO] 
> 
> [INFO]
> [INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > 
> generate-sources @ oozie-sharelib-hcatalog >>>
> [INFO]
> [INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < 
> generate-sources @ oozie-sharelib-hcatalog <<<
> [INFO]
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO]
> [INFO] Apache Oozie Main .. SUCCESS [  0.544 
> s]
> [INFO] Apache Oozie Client  SUCCESS [  2.133 

[jira] [Commented] (OOZIE-3119) fix for Could not resolve dependencies for project org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find org.apache.oozie:oozie-sharelib-oozie:jar:5

2017-11-14 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3119:
-

the failure is sporadic and happens at different stages, just rebased to master 
and executed findbugs goal.

git: 567ce9fd2aa1da2da24f7941b218e1ef1ae0f09b

{noformat}
[INFO] --- findbugs-maven-plugin:3.0.1:findbugs (default-cli) @ 
oozie-sharelib-sqoop ---
[INFO] Fork Value is true
 [java] The following classes needed for analysis were missing:
 [java]   org.apache.oozie.action.hadoop.SqoopActionExecutor
[INFO] Done FindBugs Analysis
[INFO]
[INFO] 
[INFO] Building Apache Oozie Examples 5.0.0-beta1
[INFO] 
[INFO] 
[INFO] Reactor Summary:
[INFO]
[INFO] Apache Oozie Main .. SUCCESS [  0.892 s]
[INFO] Apache Oozie Client  SUCCESS [  9.502 s]
[INFO] Apache Oozie Share Lib Oozie ... SUCCESS [  6.988 s]
[INFO] Apache Oozie Share Lib HCatalog  SUCCESS [  3.873 s]
[INFO] Apache Oozie Share Lib Distcp .. SUCCESS [  3.639 s]
[INFO] Apache Oozie Core .. SUCCESS [ 48.198 s]
[INFO] Apache Oozie Share Lib Streaming ... SUCCESS [  3.574 s]
[INFO] Apache Oozie Share Lib Pig . SUCCESS [  4.183 s]
[INFO] Apache Oozie Share Lib Hive  SUCCESS [  4.145 s]
[INFO] Apache Oozie Share Lib Hive 2 .. SUCCESS [  4.377 s]
[INFO] Apache Oozie Share Lib Sqoop ... SUCCESS [  3.636 s]
[INFO] Apache Oozie Examples .. FAILURE [  0.120 s]
[INFO] Apache Oozie Share Lib Spark ... SKIPPED
[INFO] Apache Oozie Share Lib . SKIPPED
[INFO] Apache Oozie Docs .. SKIPPED
[INFO] Apache Oozie WebApp  SKIPPED
[INFO] Apache Oozie Tools . SKIPPED
[INFO] Apache Oozie MiniOozie . SKIPPED
[INFO] Apache Oozie Server  SKIPPED
[INFO] Apache Oozie Distro  SKIPPED
[INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
[INFO] 
[INFO] BUILD FAILURE
[INFO] 
[INFO] Total time: 01:33 min
[INFO] Finished at: 2017-11-14T11:47:17-05:00
[INFO] Final Memory: 63M/994M
[INFO] 
[ERROR] Failed to execute goal on project oozie-examples: Could not resolve 
dependencies for project org.apache.oozie:oozie-examples:jar:5.0.0-beta1: 
Failure to find org.apache.oozie:oozie-sharelib-pig:jar:5.0.0-beta1 in 
http://repo1.maven.org/maven2 was cached in the local repository, resolution 
will not be reattempted until the update interval of central has elapsed or 
updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please 
read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn  -rf :oozie-examples
{noformat}

> fix for Could not resolve dependencies for project 
> org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find 
> org.apache.oozie:oozie-sharelib-oozie:jar:5.0.0-beta1 in 
> http://repo1.maven.org/maven2 was cached in the local repositor
> -
>
> Key: OOZIE-3119
> URL: https://issues.apache.org/jira/browse/OOZIE-3119
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> Command line was: 
>

[jira] [Comment Edited] (OOZIE-3119) fix for Could not resolve dependencies for project org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find org.apache.oozie:oozie-sharelib-oozie:

2017-11-14 Thread Artem Ervits (JIRA)

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

Artem Ervits edited comment on OOZIE-3119 at 11/14/17 4:46 PM:
---

[~gezapeti] I filled out in the environment section


mvn: 3.5.2
jdk: 1.8.0.144
git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899

command I used was

{code}
mvn findbugs:findbugs
{/code}

if you still can't reproduce, try clearing your mvn cache. I reproduced this 
issue a couple of different ways including findbugs goal, let me check how else 
I can reproduce and update the thread.


was (Author: dbist13):
[~gezapeti] I filled out in the environment section


mvn: 3.5.2
jdk: 1.8.0.144
git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899

command I used was

{code}mvn findbugs:findbugs{/code}
if you still can't reproduce, try clearing your mvn cache. I reproduced this 
issue a couple of different ways including findbugs goal, let me check how else 
I can reproduce and update the thread.

> fix for Could not resolve dependencies for project 
> org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find 
> org.apache.oozie:oozie-sharelib-oozie:jar:5.0.0-beta1 in 
> http://repo1.maven.org/maven2 was cached in the local repositor
> -
>
> Key: OOZIE-3119
> URL: https://issues.apache.org/jira/browse/OOZIE-3119
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> Command line was: 
> /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/../bin/javadoc
>  @options @packages
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine 
> (AbstractJavadocMojo.java:5188)
> at org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport 
> (AbstractJavadocMojo.java:2075)
> at org.apache.maven.plugin.javadoc.JavadocReport.generate 
> (JavadocReport.java:130)
> at org.apache.maven.plugin.javadoc.JavadocReport.execute 
> (JavadocReport.java:318)
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
> (DefaultBuildPluginManager.java:134)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:208)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:154)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:51)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute (MavenCli.java:955)
> at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:290)
> at org.apache.maven.cli.MavenCli.main (MavenCli.java:194)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode 
> (Launcher.java:415)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main 
> (Launcher.java:356)

[jira] [Commented] (OOZIE-3119) fix for Could not resolve dependencies for project org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find org.apache.oozie:oozie-sharelib-oozie:jar:5

2017-11-14 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3119:
-

[~gezapeti] I filled out in the environment section


mvn: 3.5.2
jdk: 1.8.0.144
git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899

command I used was

{code}mvn findbugs:findbugs{/code}
if you still can't reproduce, try clearing your mvn cache. I reproduced this 
issue a couple of different ways including findbugs goal, let me check how else 
I can reproduce and update the thread.

> fix for Could not resolve dependencies for project 
> org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find 
> org.apache.oozie:oozie-sharelib-oozie:jar:5.0.0-beta1 in 
> http://repo1.maven.org/maven2 was cached in the local repositor
> -
>
> Key: OOZIE-3119
> URL: https://issues.apache.org/jira/browse/OOZIE-3119
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> Command line was: 
> /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/../bin/javadoc
>  @options @packages
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine 
> (AbstractJavadocMojo.java:5188)
> at org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport 
> (AbstractJavadocMojo.java:2075)
> at org.apache.maven.plugin.javadoc.JavadocReport.generate 
> (JavadocReport.java:130)
> at org.apache.maven.plugin.javadoc.JavadocReport.execute 
> (JavadocReport.java:318)
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
> (DefaultBuildPluginManager.java:134)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:208)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:154)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:51)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute (MavenCli.java:955)
> at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:290)
> at org.apache.maven.cli.MavenCli.main (MavenCli.java:194)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode 
> (Launcher.java:415)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main 
> (Launcher.java:356)
> [INFO]
> [INFO] 
> 
> [INFO] Building Apache Oozie Share Lib HCatalog 5.0.0-beta1
> [INFO] 
> 
> [INFO]
> [INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > 
> generate-sources @ oozie-sharelib-hcatalog >>>
> [INFO]
> [INFO] <<< maven-javadoc-p

[jira] [Updated] (OOZIE-3107) org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky

2017-11-14 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3107:

Attachment: OOZIE-3107-2.patch

[~pbacsko] please review, also, found many tabs in main pom, perhaps tackle 
those in a separate jira?

> org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky
> -
>
> Key: OOZIE-3107
> URL: https://issues.apache.org/jira/browse/OOZIE-3107
> Project: Oozie
>  Issue Type: Sub-task
>  Components: tests
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3107-2.patch, OOZIE-3107.patch
>
>
> running testMain test in isolation fails and all subsequent runs of the test 
> will fail.
> {code}
> mvn clean -Dtest=org.apache.oozie.action.hadoop.TestHiveMain#testMain test
> {code}
> {noformat}
> [INFO] Running org.apache.oozie.action.hadoop.TestHiveMain
> [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 
> 29.209 s <<< FAILURE! - in org.apache.oozie.action.hadoop.TestHiveMain
> [ERROR] testMain(org.apache.oozie.action.hadoop.TestHiveMain)  Time elapsed: 
> 29.209 s  <<< ERROR!
> java.lang.RuntimeException: java.net.ConnectException: Call From 
> hw12107.local/192.168.201.6 to localhost:60427 failed on connection 
> exception: java.net.ConnectException: Connection refused; For more details 
> see:  http://wiki.apache.org/hadoop/ConnectionRefused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> Caused by: java.net.ConnectException: Call From hw12107.local/192.168.201.6 
> to localhost:60427 failed on connection exception: java.net.ConnectException: 
> Connection refused; For more details see:  
> http://wiki.apache.org/hadoop/ConnectionRefused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> Caused by: java.net.ConnectException: Connection refused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> [INFO]
> [INFO] Results:
> [INFO]
> [ERROR] Errors:
> [ERROR]   
> TestHiveMain>MainTestCase.testMain:40->MainTestCase.execute:31->call:39->call:146
>  » Runtime
> [INFO]
> [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0
> [INFO]
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO]
> [INFO] Apache Oozie Main .. SUCCESS [  0.529 
> s]
> [INFO] Apache Oozie Client  SUCCESS [  3.296 
> s]
> [INFO] Apache Oozie Share Lib Oozie ... SUCCESS [  3.961 
> s]
> [INFO] Apache Oozie Share Lib HCatalog  SUCCESS [  1.638 
> s]
> [INFO] Apache Oozie Share Lib Distcp .. SUCCESS [  0.558 
> s]
> [INFO] Apache Oozie Core .. SUCCESS [ 16.664 
> s]
> [INFO] Apache Oozie Share Lib Streaming ... SUCCESS [  4.166 
> s]
> [INFO] Apache Oozie Share Lib Pig . SUCCESS [  2.235 
> s]
> [INFO] Apache Oozie Share Lib Hive  FAILURE [ 32.805 
> s]
> [INFO] Apache Oozie Share Lib Hive 2 .. SKIPPED
> [INFO] Apache Oozie Share Lib Sqoop ... SKIPPED
> [INFO] Apache Oozie Examples .. SKIPPED
> [INFO] Apache Oozie Share Lib Spark ... SKIPPED
> [INFO] Apache Oozie Share Lib . SKIPPED
> [INFO] Apache Oozie Docs .. SKIPPED
> [INFO] Apache Oozie WebApp  SKIPPED
> [INFO] Apache Oozie Tools . SKIPPED
> [INFO] Apache Oozie MiniOozie . SKIPPED
> [INFO] Apache Oozie Server  SKIPPED
> [INFO] Apache Oozie Distro  SKIPPED
> [INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 

[jira] [Updated] (OOZIE-3107) org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky

2017-11-13 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3107:

Attachment: OOZIE-3107.patch

[~pbacsko] and [~andras.piros]  this fixes flaky test for 
TestHiveMain#testMain, please review

> org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky
> -
>
> Key: OOZIE-3107
> URL: https://issues.apache.org/jira/browse/OOZIE-3107
> Project: Oozie
>  Issue Type: Sub-task
>  Components: tests
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3107.patch
>
>
> running testMain test in isolation fails and all subsequent runs of the test 
> will fail.
> {code}
> mvn clean -Dtest=org.apache.oozie.action.hadoop.TestHiveMain#testMain test
> {code}
> {noformat}
> [INFO] Running org.apache.oozie.action.hadoop.TestHiveMain
> [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 
> 29.209 s <<< FAILURE! - in org.apache.oozie.action.hadoop.TestHiveMain
> [ERROR] testMain(org.apache.oozie.action.hadoop.TestHiveMain)  Time elapsed: 
> 29.209 s  <<< ERROR!
> java.lang.RuntimeException: java.net.ConnectException: Call From 
> hw12107.local/192.168.201.6 to localhost:60427 failed on connection 
> exception: java.net.ConnectException: Connection refused; For more details 
> see:  http://wiki.apache.org/hadoop/ConnectionRefused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> Caused by: java.net.ConnectException: Call From hw12107.local/192.168.201.6 
> to localhost:60427 failed on connection exception: java.net.ConnectException: 
> Connection refused; For more details see:  
> http://wiki.apache.org/hadoop/ConnectionRefused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> Caused by: java.net.ConnectException: Connection refused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> [INFO]
> [INFO] Results:
> [INFO]
> [ERROR] Errors:
> [ERROR]   
> TestHiveMain>MainTestCase.testMain:40->MainTestCase.execute:31->call:39->call:146
>  » Runtime
> [INFO]
> [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0
> [INFO]
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO]
> [INFO] Apache Oozie Main .. SUCCESS [  0.529 
> s]
> [INFO] Apache Oozie Client  SUCCESS [  3.296 
> s]
> [INFO] Apache Oozie Share Lib Oozie ... SUCCESS [  3.961 
> s]
> [INFO] Apache Oozie Share Lib HCatalog  SUCCESS [  1.638 
> s]
> [INFO] Apache Oozie Share Lib Distcp .. SUCCESS [  0.558 
> s]
> [INFO] Apache Oozie Core .. SUCCESS [ 16.664 
> s]
> [INFO] Apache Oozie Share Lib Streaming ... SUCCESS [  4.166 
> s]
> [INFO] Apache Oozie Share Lib Pig . SUCCESS [  2.235 
> s]
> [INFO] Apache Oozie Share Lib Hive  FAILURE [ 32.805 
> s]
> [INFO] Apache Oozie Share Lib Hive 2 .. SKIPPED
> [INFO] Apache Oozie Share Lib Sqoop ... SKIPPED
> [INFO] Apache Oozie Examples .. SKIPPED
> [INFO] Apache Oozie Share Lib Spark ... SKIPPED
> [INFO] Apache Oozie Share Lib . SKIPPED
> [INFO] Apache Oozie Docs .. SKIPPED
> [INFO] Apache Oozie WebApp  SKIPPED
> [INFO] Apache Oozie Tools . SKIPPED
> [INFO] Apache Oozie MiniOozie . SKIPPED
> [INFO] Apache Oozie Server  SKIPPED
> [INFO] Apache Oozie Distro  SKIPPED
> [INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] To

[jira] [Commented] (OOZIE-3121) bump all maven plugins to latest versions

2017-11-13 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3121:
-

all tests pass locally, will address findbug issues in a separate jira.

> bump all maven plugins to latest versions
> -
>
> Key: OOZIE-3121
> URL: https://issues.apache.org/jira/browse/OOZIE-3121
> Project: Oozie
>  Issue Type: Improvement
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3121.patch
>
>
> bump all maven plugins to latest



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (OOZIE-3124) address findbugs warnings

2017-11-13 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3124:
---

 Summary: address findbugs warnings
 Key: OOZIE-3124
 URL: https://issues.apache.org/jira/browse/OOZIE-3124
 Project: Oozie
  Issue Type: Bug
Reporter: Artem Ervits
 Fix For: trunk, 5.0.0


{noformat}
-1 There are [125] new bugs found below threshold in total that must be fixed.
. -1 There are [67] new bugs found below threshold in [core] that must be 
fixed, listing only the first [5] ones.
. You can find the FindBugs diff here (look for the red and orange ones): 
core/findbugs-new.html
. The top [5] most important FindBugs errors are:
. At EmailActionExecutor.java:[line 267]: 
java/io/File.(Ljava/lang/String;)V reads a file whose location might be 
specified by user input
. At EmailActionExecutor.java:[line 162]: At EmailActionExecutor.java:[line 160]
. At EmailActionExecutor.java:[line 176]: At EmailActionExecutor.java:[line 171]
. At SshActionExecutor.java:[line 134]: This usage of 
java/lang/Runtime.exec([Ljava/lang/String;)Ljava/lang/Process; can be 
vulnerable to Command Injection
. At SshActionExecutor.java:[line 131]: At SshActionExecutor.java:[line 130]
. -1 There are [1] new bugs found below threshold in [server] that must be 
fixed.
. You can find the FindBugs diff here (look for the red and orange ones): 
server/findbugs-new.html
. The most important FindBugs errors are:
. At JspHandlerProvider.java:[line 43]: 
java/io/File.(Ljava/lang/String;Ljava/lang/String;)V reads a file whose 
location might be specified by user input
. At JspHandlerProvider.java:[line 43]
. -1 There are [8] new bugs found below threshold in [client] that must be 
fixed, listing only the first [5] ones.
. You can find the FindBugs diff here (look for the red and orange ones): 
client/findbugs-new.html
. The top [5] most important FindBugs errors are:
. At OozieCLI.java:[line 841]: java/io/File.(Ljava/lang/String;)V reads a 
file whose location might be specified by user input
. java/io/FileInputStream.(Ljava/lang/String;)V reads a file whose 
location might be specified by user input: At OozieCLI.java:[line 839]
. At OozieCLI.java:[line 839]: At OozieCLI.java:[line 849]
. At OozieCLI.java:[line 876]: java/io/File.(Ljava/lang/String;)V reads a 
file whose location might be specified by user input
. java/io/File.(Ljava/lang/String;)V reads a file whose location might be 
specified by user input: At OozieCLI.java:[line 871]
. +1 There are no new bugs found in [docs].
. -1 There are [2] new bugs found below threshold in [examples] that must be 
fixed.
. You can find the FindBugs diff here (look for the red and orange ones): 
examples/findbugs-new.html
. The most important FindBugs errors are:
. At LocalOozieExample.java:[line 47]: java/io/File.(Ljava/lang/String;)V 
reads a file whose location might be specified by user input
. java/io/FileInputStream.(Ljava/lang/String;)V reads a file whose 
location might be specified by user input: At LocalOozieExample.java:[line 35]
. At LocalOozieExample.java:[line 35]: At LocalOozieExample.java:[line 72]
. -1 There are [2] new bugs found below threshold in [sharelib/hive] that must 
be fixed.
. You can find the FindBugs diff here (look for the red and orange ones): 
sharelib/hive/findbugs-new.html
. The most important FindBugs errors are:
. At HiveMain.java:[line 317]: 
java/io/FileInputStream.(Ljava/lang/String;)V reads a file whose location 
might be specified by user input
. At HiveMain.java:[line 226]: At HiveMain.java:[line 207]
. At HiveMain.java:[line 210]: java/io/File.(Ljava/lang/String;)V reads a 
file whose location might be specified by user input
. At HiveMain.java:[line 207]
. -1 There are [3] new bugs found below threshold in [sharelib/pig] that must 
be fixed.
. You can find the FindBugs diff here (look for the red and orange ones): 
sharelib/pig/findbugs-new.html
. The most important FindBugs errors are:
. At PigMain.java:[line 258]: java/io/File.(Ljava/lang/String;)V reads a 
file whose location might be specified by user input
. At PigMain.java:[line 141]: At PigMain.java:[line 131]
. At PigMain.java:[line 245]: At PigMain.java:[line 199]
. At PigMain.java:[line 137]: java/io/File.(Ljava/lang/String;)V reads a 
file whose location might be specified by user input
. java/io/File.(Ljava/lang/String;)V reads a file whose location might be 
specified by user input: At PigMain.java:[line 131]
. +1 There are no new bugs found in [sharelib/distcp].
. +1 There are no new bugs found in [sharelib/streaming].
. -1 There are [2] new bugs found below threshold in [sharelib/spark] that must 
be fixed.
. You can find the FindBugs diff here (look for the red and orange ones): 
sharelib/spark/findbugs-new.html
. The most important FindBugs errors are:
. At SparkMain.java:[line 128]: 
java/io/File.(Ljava/io/File;Ljava/lang/String;)V reads a file whose 
location might be specified by user input
. java/io/File.(Ljava/lang/String

[jira] [Commented] (OOZIE-2945) Update SpotBugs to stable version after GA

2017-11-13 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-2945:
-

[~gezapeti] all failing tests pass locally.

> Update SpotBugs to stable version after GA
> --
>
> Key: OOZIE-2945
> URL: https://issues.apache.org/jira/browse/OOZIE-2945
> Project: Oozie
>  Issue Type: Task
>  Components: build
>Reporter: Jan Hentschel
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2945.patch
>
>
> Currently Oozie uses an RC version of SpotBugs. As soon as SpotBugs has a GA 
> version the current version should be raised to the GA version.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2681) fix javadoc to compile on JDK8 again

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2681:

Issue Type: Sub-task  (was: Bug)
Parent: OOZIE-2969

> fix javadoc to compile on JDK8 again
> 
>
> Key: OOZIE-2681
> URL: https://issues.apache.org/jira/browse/OOZIE-2681
> Project: Oozie
>  Issue Type: Sub-task
>  Components: build
>Affects Versions: 4.3.0
>Reporter: Robert Kanter
>Assignee: Abhishek Bafna
>Priority: Critical
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2681-00.patch, OOZIE-2681-01.patch, 
> OOZIE-2681-02.patch, OOZIE-2681-03.patch, OOZIE-2681-04.patch
>
>
> We have a lot of Javadoc build failures, which causes Oozie to fail to build 
> on Java 8, which is more strict than Java 6 or 7 was.  OOZIE-2178 fixed all 
> of these that existed at that time, but we've since introduced a lot more.  
> OOZIE-2487 made a workaround to prevent this from causing the build to fail, 
> but we should fix these (again) and remove the OOZIE-2487 workaround.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2945) Update SpotBugs to stable version after GA

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2945:

Attachment: OOZIE-2945.patch

[~rkanter] please review

> Update SpotBugs to stable version after GA
> --
>
> Key: OOZIE-2945
> URL: https://issues.apache.org/jira/browse/OOZIE-2945
> Project: Oozie
>  Issue Type: Task
>  Components: build
>Reporter: Jan Hentschel
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2945.patch
>
>
> Currently Oozie uses an RC version of SpotBugs. As soon as SpotBugs has a GA 
> version the current version should be raised to the GA version.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (OOZIE-3120) maven-assembly-plugin fails when bumped from 2.2.1

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits reassigned OOZIE-3120:
---

Assignee: Artem Ervits

> maven-assembly-plugin fails when bumped from 2.2.1
> --
>
> Key: OOZIE-3120
> URL: https://issues.apache.org/jira/browse/OOZIE-3120
> Project: Oozie
>  Issue Type: Task
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>
> maven-assembly plugin 3.1.0 is available, version 2.2.1 is old, with upgrade 
> to even 2.2.2 build fails with
> {noformat}
> [INFO] --- maven-assembly-plugin:3.1.0:single (default-cli) @ oozie-main ---
> [INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO]
> [INFO] Apache Oozie Main .. FAILURE [  0.972 
> s]
> [INFO] Apache Oozie Client  SKIPPED
> [INFO] Apache Oozie Share Lib Oozie ... SKIPPED
> [INFO] Apache Oozie Share Lib HCatalog  SKIPPED
> [INFO] Apache Oozie Share Lib Distcp .. SKIPPED
> [INFO] Apache Oozie Core .. SKIPPED
> [INFO] Apache Oozie Share Lib Streaming ... SKIPPED
> [INFO] Apache Oozie Share Lib Pig . SKIPPED
> [INFO] Apache Oozie Share Lib Hive  SKIPPED
> [INFO] Apache Oozie Share Lib Hive 2 .. SKIPPED
> [INFO] Apache Oozie Share Lib Sqoop ... SKIPPED
> [INFO] Apache Oozie Examples .. SKIPPED
> [INFO] Apache Oozie Share Lib Spark ... SKIPPED
> [INFO] Apache Oozie Share Lib . SKIPPED
> [INFO] Apache Oozie Docs .. SKIPPED
> [INFO] Apache Oozie WebApp  SKIPPED
> [INFO] Apache Oozie Tools . SKIPPED
> [INFO] Apache Oozie MiniOozie . SKIPPED
> [INFO] Apache Oozie Server  SKIPPED
> [INFO] Apache Oozie Distro  SKIPPED
> [INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 1.872 s
> [INFO] Finished at: 2017-11-10T13:38:17-05:00
> [INFO] Final Memory: 31M/437M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> org.apache.maven.plugins:maven-assembly-plugin:3.1.0:single (default-cli) on 
> project oozie-main: No formats specified in the execution parameters or the 
> assembly descriptor. -> [Help 1]
> [ERROR]
> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
> switch.
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
> [ERROR] For more information about the errors and possible solutions, please 
> read the following articles:
> [ERROR] [Help 1] 
> http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
> ERROR, Oozie distro creation failed
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3121) bump all maven plugins to latest versions

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3121:

Attachment: OOZIE-3121.patch

> bump all maven plugins to latest versions
> -
>
> Key: OOZIE-3121
> URL: https://issues.apache.org/jira/browse/OOZIE-3121
> Project: Oozie
>  Issue Type: Improvement
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3121.patch
>
>
> bump all maven plugins to latest



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (OOZIE-3121) bump all maven plugins to latest versions

2017-11-10 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3121:
---

 Summary: bump all maven plugins to latest versions
 Key: OOZIE-3121
 URL: https://issues.apache.org/jira/browse/OOZIE-3121
 Project: Oozie
  Issue Type: Improvement
Affects Versions: 4.3.0
Reporter: Artem Ervits
Assignee: Artem Ervits
 Fix For: 5.0.0b1


bump all maven plugins to latest



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (OOZIE-3120) maven-assembly-plugin fails when bumped from 2.2.1

2017-11-10 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3120:
---

 Summary: maven-assembly-plugin fails when bumped from 2.2.1
 Key: OOZIE-3120
 URL: https://issues.apache.org/jira/browse/OOZIE-3120
 Project: Oozie
  Issue Type: Task
Affects Versions: 4.3.0
Reporter: Artem Ervits


maven-assembly plugin 3.1.0 is available, version 2.2.1 is old, with upgrade to 
even 2.2.2 build fails with

{noformat}
[INFO] --- maven-assembly-plugin:3.1.0:single (default-cli) @ oozie-main ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] Reactor Summary:
[INFO]
[INFO] Apache Oozie Main .. FAILURE [  0.972 s]
[INFO] Apache Oozie Client  SKIPPED
[INFO] Apache Oozie Share Lib Oozie ... SKIPPED
[INFO] Apache Oozie Share Lib HCatalog  SKIPPED
[INFO] Apache Oozie Share Lib Distcp .. SKIPPED
[INFO] Apache Oozie Core .. SKIPPED
[INFO] Apache Oozie Share Lib Streaming ... SKIPPED
[INFO] Apache Oozie Share Lib Pig . SKIPPED
[INFO] Apache Oozie Share Lib Hive  SKIPPED
[INFO] Apache Oozie Share Lib Hive 2 .. SKIPPED
[INFO] Apache Oozie Share Lib Sqoop ... SKIPPED
[INFO] Apache Oozie Examples .. SKIPPED
[INFO] Apache Oozie Share Lib Spark ... SKIPPED
[INFO] Apache Oozie Share Lib . SKIPPED
[INFO] Apache Oozie Docs .. SKIPPED
[INFO] Apache Oozie WebApp  SKIPPED
[INFO] Apache Oozie Tools . SKIPPED
[INFO] Apache Oozie MiniOozie . SKIPPED
[INFO] Apache Oozie Server  SKIPPED
[INFO] Apache Oozie Distro  SKIPPED
[INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
[INFO] 
[INFO] BUILD FAILURE
[INFO] 
[INFO] Total time: 1.872 s
[INFO] Finished at: 2017-11-10T13:38:17-05:00
[INFO] Final Memory: 31M/437M
[INFO] 
[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-assembly-plugin:3.1.0:single (default-cli) on 
project oozie-main: No formats specified in the execution parameters or the 
assembly descriptor. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please 
read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

ERROR, Oozie distro creation failed
{noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2945) Update SpotBugs to stable version after GA

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2945:

Fix Version/s: 5.0.0b1

> Update SpotBugs to stable version after GA
> --
>
> Key: OOZIE-2945
> URL: https://issues.apache.org/jira/browse/OOZIE-2945
> Project: Oozie
>  Issue Type: Task
>  Components: build
>Reporter: Jan Hentschel
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: 5.0.0b1
>
>
> Currently Oozie uses an RC version of SpotBugs. As soon as SpotBugs has a GA 
> version the current version should be raised to the GA version.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (OOZIE-2945) Update SpotBugs to stable version after GA

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits reassigned OOZIE-2945:
---

Assignee: Artem Ervits

> Update SpotBugs to stable version after GA
> --
>
> Key: OOZIE-2945
> URL: https://issues.apache.org/jira/browse/OOZIE-2945
> Project: Oozie
>  Issue Type: Task
>  Components: build
>Reporter: Jan Hentschel
>Assignee: Artem Ervits
>Priority: Minor
>
> Currently Oozie uses an RC version of SpotBugs. As soon as SpotBugs has a GA 
> version the current version should be raised to the GA version.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-1987) Fix existing findbugs warnings

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-1987:

Fix Version/s: 5.0.0b1

> Fix existing findbugs warnings
> --
>
> Key: OOZIE-1987
> URL: https://issues.apache.org/jira/browse/OOZIE-1987
> Project: Oozie
>  Issue Type: Bug
>Reporter: Robert Kanter
> Fix For: 5.0.0b1
>
>
> Now that we have OOZIE-1793, we should actually fix the warnings that 
> findbugs finds in the existing codebase.  It may be a good idea to split this 
> into subtasks or multiple patches as there are a lot of warnings: over 500 in 
> oozie-core alone!
> If we think something is ok, but findbugs complains, we should exclude it.  
> There's a way to create a file that lists exclusions (Hadoop does this).



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (OOZIE-1987) Fix existing findbugs warnings

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits reassigned OOZIE-1987:
---

Assignee: Jan Hentschel

> Fix existing findbugs warnings
> --
>
> Key: OOZIE-1987
> URL: https://issues.apache.org/jira/browse/OOZIE-1987
> Project: Oozie
>  Issue Type: Bug
>Reporter: Robert Kanter
>Assignee: Jan Hentschel
> Fix For: 5.0.0b1
>
>
> Now that we have OOZIE-1793, we should actually fix the warnings that 
> findbugs finds in the existing codebase.  It may be a good idea to split this 
> into subtasks or multiple patches as there are a lot of warnings: over 500 in 
> oozie-core alone!
> If we think something is ok, but findbugs complains, we should exclude it.  
> There's a way to create a file that lists exclusions (Hadoop does this).



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2942) Fix Findbugs warnings in oozie-examples

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2942:

Fix Version/s: 5.0.0b1

> Fix Findbugs warnings in oozie-examples
> ---
>
> Key: OOZIE-2942
> URL: https://issues.apache.org/jira/browse/OOZIE-2942
> Project: Oozie
>  Issue Type: Sub-task
>  Components: build
>Reporter: Jan Hentschel
>Assignee: Jan Hentschel
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2942-1.patch, OOZIE-2942-2.patch
>
>
> Currently Findbugs complains about the following warnings in the 
> *oozie-examples* module:
> {code}
> [INFO] org.apache.oozie.example.DateList.main(String[]) may fail to close 
> stream on exception [org.apache.oozie.example.DateList] At 
> DateList.java:[line 69]
> [INFO] Nullcheck of date at line 55 of value previously dereferenced in 
> org.apache.oozie.example.DateList.main(String[]) 
> [org.apache.oozie.example.DateList, org.apache.oozie.example.DateList] At 
> DateList.java:[line 55]Redundant null check at DateList.java:[line 62]
> [INFO] Private method 
> org.apache.oozie.example.DateList.formatDateUTC(Calendar) is never called 
> [org.apache.oozie.example.DateList] At DateList.java:[line 97]
> [INFO] org.apache.oozie.example.LocalOozieExample.execute(String[]) may fail 
> to clean up java.io.InputStream [org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample, 
> org.apache.oozie.example.LocalOozieExample] Obligation to clean up resource 
> created at LocalOozieExample.java:[line 72] is not dischargedPath continues 
> at LocalOozieExample.java:[line 76]Path continues at 
> LocalOozieExample.java:[line 77]Path continues at 
> LocalOozieExample.java:[line 78]Path continues at 
> LocalOozieExample.java:[line 81]Path continues at 
> LocalOozieExample.java:[line 88]Path continues at 
> LocalOozieExample.java:[line 89]Path continues at 
> LocalOozieExample.java:[line 91]Path continues at 
> LocalOozieExample.java:[line 100]
> [INFO] org.apache.oozie.example.LocalOozieExample.execute(String[]) may fail 
> to close stream [org.apache.oozie.example.LocalOozieExample] At 
> LocalOozieExample.java:[line 72]
> [INFO] org.apache.oozie.example.Repeatable.getBaseline() may expose internal 
> representation by returning Repeatable.baseline 
> [org.apache.oozie.example.Repeatable] At Repeatable.java:[line 168]
> [INFO] org.apache.oozie.example.Repeatable.setBaseline(Date) may expose 
> internal representation by storing an externally mutable object into 
> Repeatable.baseline [org.apache.oozie.example.Repeatable] At 
> Repeatable.java:[line 172]
> {code}
> They should be fixed to get the code more reliable.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3116) fix for warning: no description for @throws

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3116:
-

test is unrelated, passes locally.

> fix for warning: no description for @throws
> ---
>
> Key: OOZIE-3116
> URL: https://issues.apache.org/jira/browse/OOZIE-3116
> Project: Oozie
>  Issue Type: Sub-task
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3116-0.patch
>
>
> steps to reproduce
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:526:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:544:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:545:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1074:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1132:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1158:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1204:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1247:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1259:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1818:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1836:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1851:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2030:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2498:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:65:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:66:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/MessageDeserializer.java:42:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/EventMessage.java:96:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/SLAMessage.java:371:
>  warning: no description for @throws
> Exit code: 1 - 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:37:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:49:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/JavaMain.java:32:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/o

[jira] [Commented] (OOZIE-3115) fix for javadoc warning: empty tag

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3115:
-

failing tests are unrelated, they pass locally.

> fix for javadoc warning: empty  tag
> --
>
> Key: OOZIE-3115
> URL: https://issues.apache.org/jira/browse/OOZIE-3115
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3115.patch
>
>
> after enabling javadoc doclint, there are warnings for 
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
>  warning: empty  tag
> /Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
>  warning: empty  tag
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3117) fix for warning: no @throws for

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3117:
-

so many tests failing can't be right.

> fix for warning: no @throws for
> ---
>
> Key: OOZIE-3117
> URL: https://issues.apache.org/jira/browse/OOZIE-3117
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3117-0.patch
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
>  warning: no @throws for java.io.IOException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
>  warning: no @throws for java.lang.InterruptedException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for java.io.IOException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for org.xml.sax.SAXException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for javax.xml.parsers.ParserConfigurationException
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2905) fix for warning no description for @param

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2905:

Description: 
I ran {code}mvn javadoc:javadoc{code} and found 

{noformat}
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/CLIParser.java:67:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/OozieCLI.java:550:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:259:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:523:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:524:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:541:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:542:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1130:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1131:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1156:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1157:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1243:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1244:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1245:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1246:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1256:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1257:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1258:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1834:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2029:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3089:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3090:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3106:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3107:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3108:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/Job.java:116:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:62:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/MessageDeserializer.java:39:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/CoordinatorActionMessage.java:84:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache

[jira] [Updated] (OOZIE-3116) fix for warning: no description for @throws

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3116:

Attachment: OOZIE-3116-0.patch

[~andras.piros] please review, let me know if you want me to add this to review 
board.

> fix for warning: no description for @throws
> ---
>
> Key: OOZIE-3116
> URL: https://issues.apache.org/jira/browse/OOZIE-3116
> Project: Oozie
>  Issue Type: Sub-task
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3116-0.patch
>
>
> steps to reproduce
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:526:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:544:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:545:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1074:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1132:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1158:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1204:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1247:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1259:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1818:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1836:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1851:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2030:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2498:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:65:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:66:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/MessageDeserializer.java:42:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/EventMessage.java:96:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/SLAMessage.java:371:
>  warning: no description for @throws
> Exit code: 1 - 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:37:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:49:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/JavaMain.java:32:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/s

[jira] [Updated] (OOZIE-3116) fix for warning: no description for @throws

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3116:

Description: 
steps to reproduce
{code}
mvn javadoc:javadoc
{code}

{noformat}
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:526:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:544:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:545:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1074:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1132:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1158:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1204:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1247:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1259:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1818:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1836:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1851:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2030:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2498:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:65:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:66:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/MessageDeserializer.java:42:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/EventMessage.java:96:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/SLAMessage.java:371:
 warning: no description for @throws
Exit code: 1 - 
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:37:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:49:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/JavaMain.java:32:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherMain.java:323:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherMain.java:367:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherAMCallbackNotifier.java:139:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandlerFactory.java:38:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LocalFsOperations.java:50:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/OozieActionConfigurator.java:34:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org

[jira] [Created] (OOZIE-3119) fix for Could not resolve dependencies for project org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find org.apache.oozie:oozie-sharelib-oozie:jar:5.0

2017-11-10 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3119:
---

 Summary: fix for Could not resolve dependencies for project 
org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find 
org.apache.oozie:oozie-sharelib-oozie:jar:5.0.0-beta1 in 
http://repo1.maven.org/maven2 was cached in the local repositor
 Key: OOZIE-3119
 URL: https://issues.apache.org/jira/browse/OOZIE-3119
 Project: Oozie
  Issue Type: Task
Affects Versions: 4.3.0
 Environment: mvn: 3.5.2
jdk: 1.8.0.144
git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
Reporter: Artem Ervits
Assignee: Artem Ervits
Priority: Blocker
 Fix For: 5.0.0b1


{code}
mvn javadoc:javadoc
{code}

{noformat}
Command line was: 
/Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/../bin/javadoc
 @options @packages

Refer to the generated Javadoc files in 
'/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/target/site/apidocs'
 dir.

at 
org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine 
(AbstractJavadocMojo.java:5188)
at org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport 
(AbstractJavadocMojo.java:2075)
at org.apache.maven.plugin.javadoc.JavadocReport.generate 
(JavadocReport.java:130)
at org.apache.maven.plugin.javadoc.JavadocReport.execute 
(JavadocReport.java:318)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
(DefaultBuildPluginManager.java:134)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:208)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:154)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:146)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
(LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
(LifecycleModuleBuilder.java:81)
at 
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
 (SingleThreadedBuilder.java:51)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:309)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:194)
at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:107)
at org.apache.maven.cli.MavenCli.execute (MavenCli.java:955)
at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:290)
at org.apache.maven.cli.MavenCli.main (MavenCli.java:194)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke 
(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke 
(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:498)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode 
(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main 
(Launcher.java:356)
[INFO]
[INFO] 
[INFO] Building Apache Oozie Share Lib HCatalog 5.0.0-beta1
[INFO] 
[INFO]
[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources 
@ oozie-sharelib-hcatalog >>>
[INFO]
[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources 
@ oozie-sharelib-hcatalog <<<
[INFO]
[INFO] 
[INFO] Reactor Summary:
[INFO]
[INFO] Apache Oozie Main .. SUCCESS [  0.544 s]
[INFO] Apache Oozie Client  SUCCESS [  2.133 s]
[INFO] Apache Oozie Share Lib Oozie ... SUCCESS [  1.708 s]
[INFO] Apache Oozie Share Lib HCatalog  FAILURE [  0.134 s]
[INFO] Apache Oozie Share Lib Distcp .. SKIPPED
[INFO] Apache Oozie Core .. SKIPPED
[INFO] Apache Oozie Share Lib Streaming ... SKIPPED
[INFO] Apache Oozie Share Lib Pig . SKIPPED
[INFO] Apache Oozie Share Lib Hive  SKIPPED
[INFO] Apache Oozie Share Lib Hive 2 .. SKIPPED
[INFO] Apache Oozie Share Lib Sqoop ... SKIPPED
[INFO] Apache Oozie Examples .. SKIPPED
[INFO] Apache Oozie Share Lib Spark ... SKIPPED
[INFO] Apache Oozie Share Lib . SKIPPED
[INFO] Apache Oozie D

[jira] [Updated] (OOZIE-3119) fix for Could not resolve dependencies for project org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find org.apache.oozie:oozie-sharelib-oozie:jar:5.0

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3119:

Issue Type: Sub-task  (was: Task)
Parent: OOZIE-2969

> fix for Could not resolve dependencies for project 
> org.apache.oozie:oozie-sharelib-hcatalog:jar:5.0.0-beta1: Failure to find 
> org.apache.oozie:oozie-sharelib-oozie:jar:5.0.0-beta1 in 
> http://repo1.maven.org/maven2 was cached in the local repositor
> -
>
> Key: OOZIE-3119
> URL: https://issues.apache.org/jira/browse/OOZIE-3119
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> Command line was: 
> /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/../bin/javadoc
>  @options @packages
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine 
> (AbstractJavadocMojo.java:5188)
> at org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport 
> (AbstractJavadocMojo.java:2075)
> at org.apache.maven.plugin.javadoc.JavadocReport.generate 
> (JavadocReport.java:130)
> at org.apache.maven.plugin.javadoc.JavadocReport.execute 
> (JavadocReport.java:318)
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
> (DefaultBuildPluginManager.java:134)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:208)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:154)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
> (MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
> (LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build
>  (SingleThreadedBuilder.java:51)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute 
> (LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute (MavenCli.java:955)
> at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:290)
> at org.apache.maven.cli.MavenCli.main (MavenCli.java:194)
> at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke 
> (NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke 
> (DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke (Method.java:498)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced 
> (Launcher.java:289)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch 
> (Launcher.java:229)
> at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode 
> (Launcher.java:415)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main 
> (Launcher.java:356)
> [INFO]
> [INFO] 
> 
> [INFO] Building Apache Oozie Share Lib HCatalog 5.0.0-beta1
> [INFO] 
> 
> [INFO]
> [INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > 
> generate-sources @ oozie-sharelib-hcatalog >>>
> [INFO]
> [INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < 
> generate-sources @ oozie-sharelib-hcatalog <<<
> [INFO]
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO]
> [INFO] Apache Oozie Main .. SUCCESS [  0.544 
> s]
> [IN

[jira] [Updated] (OOZIE-3118) fix for error: self-closing element not allowed

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3118:

Issue Type: Sub-task  (was: Task)
Parent: OOZIE-2969

> fix for error: self-closing element not allowed
> ---
>
> Key: OOZIE-3118
> URL: https://issues.apache.org/jira/browse/OOZIE-3118
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
> mvn: 3.5.2
> jdk: 1.8.0.144
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3118.patch
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PasswordMasker.java:30:
>  error: self-closing element not allowed
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3118) fix for error: self-closing element not allowed

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3118:

Attachment: OOZIE-3118.patch

this is the only instance across the board at this git checksum.

> fix for error: self-closing element not allowed
> ---
>
> Key: OOZIE-3118
> URL: https://issues.apache.org/jira/browse/OOZIE-3118
> Project: Oozie
>  Issue Type: Task
>Affects Versions: 4.3.0
> Environment: git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
> mvn: 3.5.2
> jdk: 1.8.0.144
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3118.patch
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PasswordMasker.java:30:
>  error: self-closing element not allowed
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (OOZIE-3118) fix for error: self-closing element not allowed

2017-11-10 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3118:
---

 Summary: fix for error: self-closing element not allowed
 Key: OOZIE-3118
 URL: https://issues.apache.org/jira/browse/OOZIE-3118
 Project: Oozie
  Issue Type: Task
Affects Versions: 4.3.0
 Environment: git: 5d9c6a5c9951455e6cb29a097de5f53b0fdbe899
mvn: 3.5.2
jdk: 1.8.0.144
Reporter: Artem Ervits
Assignee: Artem Ervits
 Fix For: 5.0.0b1


{code}
mvn javadoc:javadoc
{code}

{noformat}
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PasswordMasker.java:30:
 error: self-closing element not allowed
{noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3115) fix for javadoc warning: empty tag

2017-11-10 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3115:

Attachment: OOZIE-3115.patch

> fix for javadoc warning: empty  tag
> --
>
> Key: OOZIE-3115
> URL: https://issues.apache.org/jira/browse/OOZIE-3115
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3115.patch
>
>
> after enabling javadoc doclint, there are warnings for 
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
>  warning: empty  tag
> /Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
>  warning: empty  tag
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-2061) Remove CoordJobDeleteJPAExecutor

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-2061:
-

tests pass locally

> Remove CoordJobDeleteJPAExecutor
> 
>
> Key: OOZIE-2061
> URL: https://issues.apache.org/jira/browse/OOZIE-2061
> Project: Oozie
>  Issue Type: Task
>Affects Versions: 4.3.0
>Reporter: Shwetha G S
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2061-0.patch
>
>
> Looks like CoordJobDeleteJPAExecutor is not used anywhere. Remove if not 
> required



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3114) fix for warning: no @return

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3114:
-

test passes locally

> fix for warning: no @return
> ---
>
> Key: OOZIE-3114
> URL: https://issues.apache.org/jira/browse/OOZIE-3114
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3114-3.patch, OOZIE-3114.patch
>
>
> there are a few instances of warning "warning: no @return"
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
>  warning: no @return
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
>  warning: no @return
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2905) fix for warning no description for @param

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2905:

Fix Version/s: 5.0.0b1

> fix for warning no description for @param
> -
>
> Key: OOZIE-2905
> URL: https://issues.apache.org/jira/browse/OOZIE-2905
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> I ran {code}mvn javadoc:javadoc{code} and found 
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/CLIParser.java:67:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/OozieCLI.java:550:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:259:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:523:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:524:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:541:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:542:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1130:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1131:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1156:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1157:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1243:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1244:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1245:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1246:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1256:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1257:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1258:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1834:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2029:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3089:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3090:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3106:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3107:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/ma

[jira] [Updated] (OOZIE-3115) fix for javadoc warning: empty tag

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3115:

Summary: fix for javadoc warning: empty  tag  (was: fix for javadoc 
warning: empty  ta)

> fix for javadoc warning: empty  tag
> --
>
> Key: OOZIE-3115
> URL: https://issues.apache.org/jira/browse/OOZIE-3115
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> after enabling javadoc doclint, there are warnings for 
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
>  warning: empty  tag
> /Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
>  warning: empty  tag
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2905) fix for warning no description for @param

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2905:

Summary: fix for warning no description for @param  (was: when running 
./bin/mkdistro.sh there are many instances of warnings for no description for 
@param)

> fix for warning no description for @param
> -
>
> Key: OOZIE-2905
> URL: https://issues.apache.org/jira/browse/OOZIE-2905
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
>
> I ran {code}mvn javadoc:javadoc{code} and found 
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/CLIParser.java:67:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/OozieCLI.java:550:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:259:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:523:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:524:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:541:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:542:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1130:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1131:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1156:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1157:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1243:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1244:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1245:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1246:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1256:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1257:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1258:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1834:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2029:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3089:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3090:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3106:
>  warning: no description for @param
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3107:
>  warning: no descripti

[jira] [Updated] (OOZIE-2905) when running ./bin/mkdistro.sh there are many instances of warnings for no description for @param

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2905:

Description: 
I ran {code}mvn javadoc:javadoc{code} and found 

{noformat}
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/CLIParser.java:67:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/cli/OozieCLI.java:550:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:259:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:523:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:524:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:541:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:542:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1130:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1131:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1156:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1157:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1243:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1244:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1245:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1246:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1256:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1257:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1258:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1834:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2029:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3089:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3090:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3106:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3107:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:3108:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/Job.java:116:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:62:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/MessageDeserializer.java:39:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/CoordinatorActionMessage.java:84:
 warning: no description for @param
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache

[jira] [Updated] (OOZIE-3117) fix for warning: no @throws for

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3117:

Issue Type: Sub-task  (was: Task)
Parent: OOZIE-2969

> fix for warning: no @throws for
> ---
>
> Key: OOZIE-3117
> URL: https://issues.apache.org/jira/browse/OOZIE-3117
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3117-0.patch
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
>  warning: no @throws for java.io.IOException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
>  warning: no @throws for java.lang.InterruptedException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for java.io.IOException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for org.xml.sax.SAXException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for javax.xml.parsers.ParserConfigurationException
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3117) fix for warning: no @throws for

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3117:

Attachment: OOZIE-3117-0.patch

> fix for warning: no @throws for
> ---
>
> Key: OOZIE-3117
> URL: https://issues.apache.org/jira/browse/OOZIE-3117
> Project: Oozie
>  Issue Type: Task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3117-0.patch
>
>
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
>  warning: no @throws for java.io.IOException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
>  warning: no @throws for java.lang.InterruptedException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for java.io.IOException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for org.xml.sax.SAXException
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
>  warning: no @throws for javax.xml.parsers.ParserConfigurationException
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (OOZIE-3117) fix for warning: no @throws for

2017-11-09 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3117:
---

 Summary: fix for warning: no @throws for
 Key: OOZIE-3117
 URL: https://issues.apache.org/jira/browse/OOZIE-3117
 Project: Oozie
  Issue Type: Task
Affects Versions: 4.3.0
 Environment: mvn: 3.5.2
jdk: 1.8.0.144
git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
Reporter: Artem Ervits
Assignee: Artem Ervits
 Fix For: 5.0.0b1


{code}
mvn javadoc:javadoc
{code}

{noformat}
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
 warning: no @throws for java.io.IOException
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/HdfsOperations.java:51:
 warning: no @throws for java.lang.InterruptedException
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
 warning: no @throws for java.io.IOException
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
 warning: no @throws for org.xml.sax.SAXException
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/PrepareActionsHandler.java:44:
 warning: no @throws for javax.xml.parsers.ParserConfigurationException
{noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3116) fix for warning: no description for @throws

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3116:

Issue Type: Sub-task  (was: Task)
Parent: OOZIE-2969

> fix for warning: no description for @throws
> ---
>
> Key: OOZIE-3116
> URL: https://issues.apache.org/jira/browse/OOZIE-3116
> Project: Oozie
>  Issue Type: Sub-task
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> steps to reproduce
> {code}
> mvn javadoc:javadoc
> {code}
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:526:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:544:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:545:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1074:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1132:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1158:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1204:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1247:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1259:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1818:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1836:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1851:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2030:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2498:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:65:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:66:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/MessageDeserializer.java:42:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/EventMessage.java:96:
>  warning: no description for @throws
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/SLAMessage.java:371:
>  warning: no description for @throws
> Exit code: 1 - 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:37:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:49:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/JavaMain.java:32:
>  warning: no description for @throws
> /Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherMain.java:323:
>  warning: no descripti

[jira] [Created] (OOZIE-3116) fix for warning: no description for @throws

2017-11-09 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3116:
---

 Summary: fix for warning: no description for @throws
 Key: OOZIE-3116
 URL: https://issues.apache.org/jira/browse/OOZIE-3116
 Project: Oozie
  Issue Type: Task
 Environment: mvn: 3.5.2
jdk: 1.8.0.144
git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
Reporter: Artem Ervits
Assignee: Artem Ervits
Priority: Trivial
 Fix For: 5.0.0b1


steps to reproduce
{code}
mvn javadoc:javadoc
{code}

{noformat}
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:526:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:544:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:545:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1074:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1132:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1158:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1204:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1247:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1259:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1818:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1836:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1851:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2030:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:2498:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:65:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/JMSMessagingUtils.java:66:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/jms/MessageDeserializer.java:42:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/EventMessage.java:96:
 warning: no description for @throws
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/event/message/SLAMessage.java:371:
 warning: no description for @throws
Exit code: 1 - 
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:37:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandler.java:49:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/JavaMain.java:32:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherMain.java:323:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherMain.java:367:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherAMCallbackNotifier.java:139:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherURIHandlerFactory.java:38:
 warning: no description for @throws
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop

[jira] [Updated] (OOZIE-3114) fix for warning: no @return

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3114:

Attachment: OOZIE-3114-3.patch

[~satishsaley] I stand corrected, after running

{code}
mvn javadoc:javadoc
{code}

found three more classes
{noformat}
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
 warning: no @return
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
 warning: no @return
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherMain.java:304:
 warning: no @return
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherAMCallbackNotifier.java:106:
 warning: no @return
/Users/aervits/NetBeansProjects/OOZIE/oozie/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LocalFsOperations.java:97:
 warning: no @return
{noformat}

OOZIE-3114-3.patch addresses all of them.

> fix for warning: no @return
> ---
>
> Key: OOZIE-3114
> URL: https://issues.apache.org/jira/browse/OOZIE-3114
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3114-3.patch, OOZIE-3114.patch
>
>
> there are a few instances of warning "warning: no @return"
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
>  warning: no @return
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
>  warning: no @return
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3115) fix for javadoc warning: empty ta

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3115:

Description: 
after enabling javadoc doclint, there are warnings for 

{noformat}
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
 warning: empty  tag
/Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
 warning: empty  tag
{noformat}

  was:
after enabling javadoc doclint, there are warnings for 

{noformat}
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
 warning: empty  tag
 * 
 
/Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
 warning: empty  tag
 * Ssh action executor.   Execute the shell commands on the remote 
host Copies the base and wrapper
 * 
{noformat}


> fix for javadoc warning: empty  ta
> -
>
> Key: OOZIE-3115
> URL: https://issues.apache.org/jira/browse/OOZIE-3115
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> after enabling javadoc doclint, there are warnings for 
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
>  warning: empty  tag
> /Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
>  warning: empty  tag
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3114) fix for warning: no @return

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3114:
-

[~satishsaley] thanks for review, I actually addressed all other @return tag 
issues in https://issues.apache.org/jira/browse/OOZIE-2960 before. These are 
the last two since then. I'm working from output of ./bin/mkdistro.sh script. I 
haven't seen other issues with @return tag here.

> fix for warning: no @return
> ---
>
> Key: OOZIE-3114
> URL: https://issues.apache.org/jira/browse/OOZIE-3114
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3114.patch
>
>
> there are a few instances of warning "warning: no @return"
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
>  warning: no @return
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
>  warning: no @return
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (OOZIE-3115) fix for javadoc warning: empty ta

2017-11-09 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3115:
---

 Summary: fix for javadoc warning: empty  ta
 Key: OOZIE-3115
 URL: https://issues.apache.org/jira/browse/OOZIE-3115
 Project: Oozie
  Issue Type: Task
Affects Versions: 4.3.0
 Environment: mvn: 3.5.2
jdk: 1.8.0.144
git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
Reporter: Artem Ervits
Assignee: Artem Ervits
Priority: Trivial
 Fix For: 5.0.0b1


after enabling javadoc doclint, there are warnings for 

{noformat}
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
 warning: empty  tag
 * 
 
/Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
 warning: empty  tag
 * Ssh action executor.   Execute the shell commands on the remote 
host Copies the base and wrapper
 * 
{noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3115) fix for javadoc warning: empty ta

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3115:

Issue Type: Sub-task  (was: Task)
Parent: OOZIE-2969

> fix for javadoc warning: empty  ta
> -
>
> Key: OOZIE-3115
> URL: https://issues.apache.org/jira/browse/OOZIE-3115
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> after enabling javadoc doclint, there are warnings for 
> {noformat}
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:77:
>  warning: empty  tag
>  * 
>  
> /Users/aervits/NetBeansProjects/OOZIE/oozie/core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java:49:
>  warning: empty  tag
>  * Ssh action executor.   Execute the shell commands on the remote 
> host Copies the base and wrapper
>  * 
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3114) fix for warning: no @return

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3114:

Attachment: OOZIE-3114.patch

[~andras.piros] please review, first of many javadoc jiras, this was a quick 
fix, others will take a lot more time.

> fix for warning: no @return
> ---
>
> Key: OOZIE-3114
> URL: https://issues.apache.org/jira/browse/OOZIE-3114
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3114.patch
>
>
> there are a few instances of warning "warning: no @return"
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
>  warning: no @return
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
>  warning: no @return
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3114) fix for warning: no @return

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3114:

Description: 
there are a few instances of warning "warning: no @return"

{noformat}
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
 warning: no @return
[WARNING] 
/Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
 warning: no @return
{noformat}

  was:there are a few instances of warning "warning: no @return"


> fix for warning: no @return
> ---
>
> Key: OOZIE-3114
> URL: https://issues.apache.org/jira/browse/OOZIE-3114
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> there are a few instances of warning "warning: no @return"
> {noformat}
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:972:
>  warning: no @return
> [WARNING] 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/client/src/main/java/org/apache/oozie/client/OozieClient.java:1820:
>  warning: no @return
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3114) fix for warning: no @return

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3114:

Issue Type: Sub-task  (was: Task)
Parent: OOZIE-2969

> fix for warning: no @return
> ---
>
> Key: OOZIE-3114
> URL: https://issues.apache.org/jira/browse/OOZIE-3114
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
> git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> there are a few instances of warning "warning: no @return"



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (OOZIE-3114) fix for warning: no @return

2017-11-09 Thread Artem Ervits (JIRA)
Artem Ervits created OOZIE-3114:
---

 Summary: fix for warning: no @return
 Key: OOZIE-3114
 URL: https://issues.apache.org/jira/browse/OOZIE-3114
 Project: Oozie
  Issue Type: Task
Affects Versions: 4.3.0
 Environment: mvn: 3.5.2
jdk: 1.8.0.144
git: cb8f582b4756789f7a7869b6cc5e27f8783886d8
Reporter: Artem Ervits
Assignee: Artem Ervits
Priority: Trivial
 Fix For: 5.0.0b1


there are a few instances of warning "warning: no @return"



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2061) Remove CoordJobDeleteJPAExecutor

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2061:

Fix Version/s: (was: 5.0.0)
   (was: trunk)
   5.0.0b1

> Remove CoordJobDeleteJPAExecutor
> 
>
> Key: OOZIE-2061
> URL: https://issues.apache.org/jira/browse/OOZIE-2061
> Project: Oozie
>  Issue Type: Task
>Affects Versions: 4.3.0
>Reporter: Shwetha G S
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2061-0.patch
>
>
> Looks like CoordJobDeleteJPAExecutor is not used anywhere. Remove if not 
> required



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2921) Document FS move action can copy files only, i.e. /parentdir/childdir/* /targetdir

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2921:

Fix Version/s: 5.0.0b1

> Document FS move action can copy files only, i.e. /parentdir/childdir/* 
> /targetdir
> --
>
> Key: OOZIE-2921
> URL: https://issues.apache.org/jira/browse/OOZIE-2921
> Project: Oozie
>  Issue Type: Task
>  Components: docs
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
>
> It is not widely documented that you can do move command on the files within 
> directory rather than directory where files are located. Provide examples



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2905) when running ./bin/mkdistro.sh there are many instances of warnings for no description for @param

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2905:

Issue Type: Sub-task  (was: Improvement)
Parent: OOZIE-2969

> when running ./bin/mkdistro.sh there are many instances of warnings for no 
> description for @param
> -
>
> Key: OOZIE-2905
> URL: https://issues.apache.org/jira/browse/OOZIE-2905
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
>Reporter: Artem Ervits
>    Assignee: Artem Ervits
>Priority: Trivial
>
> I ran {code}./bin/mkdistro.sh -DskipTests=true{code} and found 135 instances 
> of warning {code}warning: no description for @param{code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2975) code clean up in pig sharelib, replace Exception with more explicit, add try with resources, StringBuilder instead of StringBuffer

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2975:

Fix Version/s: (was: trunk)
   5.0.0b1

> code clean up in pig sharelib, replace Exception with more explicit, add try 
> with resources, StringBuilder instead of StringBuffer
> --
>
> Key: OOZIE-2975
> URL: https://issues.apache.org/jira/browse/OOZIE-2975
> Project: Oozie
>  Issue Type: Improvement
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
>  Labels: newbie
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2975-0.patch
>
>
> 1. Replaced StringBuffer with StringBuilder
> 2. Replaced Exception with IOException and ExecException
> 3. Replaced old Hashmap notation with diamond notation
> 4. Added try-with-resources notation



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2997) files contain trailing white spaces in client lib

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2997:

Fix Version/s: 5.0.0b1

> files contain trailing white spaces in client lib
> -
>
> Key: OOZIE-2997
> URL: https://issues.apache.org/jira/browse/OOZIE-2997
> Project: Oozie
>  Issue Type: Bug
>  Components: client
>Affects Versions: 4.3.0
> Environment: java 8
> Mac OS 10.12.5
> latest commit 18694b616f419ed958230cedb2dc0431a9f9cb5d
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>  Labels: trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2997-1.patch
>
>
> running the following command for oozie minitest reports trailing white 
> spaces in client
> {code}
> mvn clean install -DskipTests -DtestJarSimple
> {code}
> affected files
> /Users/aervits/NetBeansProjects/oozie/client/src/main/java/org/apache/oozie/client/rest/JsonUtils.java:59:
>  warning: Line has trailing spaces.
> /Users/aervits/NetBeansProjects/oozie/client/src/main/java/org/apache/oozie/client/WorkflowAction.java:65:
>  warning: Line has trailing spaces.
> /Users/aervits/NetBeansProjects/oozie/client/src/main/java/org/apache/oozie/client/WorkflowAction.java:94:
>  warning: Line has trailing spaces.
> /Users/aervits/NetBeansProjects/oozie/client/src/main/java/org/apache/oozie/client/WorkflowAction.java:101:
>  warning: Line has trailing spaces.
> /Users/aervits/NetBeansProjects/oozie/client/src/main/java/org/apache/oozie/client/WorkflowAction.java:108:
>  warning: Line has trailing spaces.
> /Users/aervits/NetBeansProjects/oozie/client/src/main/java/org/apache/oozie/client/WorkflowJob.java:138:
>  warning: Line has trailing spaces.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2964) Add -Xdoclint:none to javadoc opts to avoid warnings

2017-11-09 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2964:

Attachment: OOZIE-2964-3.patch

[~andras.piros] experimenting with the flags convinced me that we should enable 
doclint:all and address the individual issues in the follow up jiras. The patch 
works for JDK7 and 8 but this being last subtask jira for 
https://issues.apache.org/jira/browse/OOZIE-2969 maybe we can merge that and 
drop jdk7? I'll file jiras and try to address the reported issues by doclint in 
upcoming run.

> Add -Xdoclint:none to javadoc opts to avoid warnings
> 
>
> Key: OOZIE-2964
> URL: https://issues.apache.org/jira/browse/OOZIE-2964
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: java version "1.8.0_51"
> Java(TM) SE Runtime Environment (build 1.8.0_51-b16)
> Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
> Mac OSX 10.12.5
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: trunk, 5.0.0
>
> Attachments: OOZIE-2964-0.patch, OOZIE-2964-2.patch, 
> OOZIE-2964-3.patch
>
>
> steps to reproduce
> {noformat}
> ./bin/mkdistro.sh -DskipTests=true -DtargetJavaVersion=1.8 -DjavaVersion=1.8
> {noformat}
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE-AbstractJavadocMojo/oozie/core/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:5163)
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport(AbstractJavadocMojo.java:2075)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.generate(JavadocReport.java:130)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.execute(JavadocReport.java:318)
> at 
> org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
> at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3001) core library has many instances of warnings with trailing spaces and lines longer than 132 chars

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3001:

Attachment: OOZIE-3001-4.patch

[~andras.piros] I actually had an error in one class, I created a new patch 
combining all commits. I tested that it compiles.

> core library has many instances of warnings with trailing spaces and lines 
> longer than 132 chars
> 
>
> Key: OOZIE-3001
> URL: https://issues.apache.org/jira/browse/OOZIE-3001
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
>Reporter: Artem Ervits
>    Assignee: Artem Ervits
>  Labels: newbie
> Attachments: OOZIE-3001-2.patch, OOZIE-3001-3.patch, 
> OOZIE-3001-4.patch
>
>
> {noformat}
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java:219:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java:297:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java:40:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java:45:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java:35:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java:51:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java:643:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/BundleActionBean.java:46:
>  warning: Line is longer than 132 characters.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3001) core library has many instances of warnings with trailing spaces and lines longer than 132 chars

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3001:

Attachment: OOZIE-3001-3.patch

[~andras.piros] I uploaded new patch to review board and addressed your raised 
issues. Please review.

> core library has many instances of warnings with trailing spaces and lines 
> longer than 132 chars
> 
>
> Key: OOZIE-3001
> URL: https://issues.apache.org/jira/browse/OOZIE-3001
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
>Reporter: Artem Ervits
>    Assignee: Artem Ervits
>  Labels: newbie
> Attachments: OOZIE-3001-2.patch, OOZIE-3001-3.patch
>
>
> {noformat}
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java:219:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java:297:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java:40:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java:45:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java:35:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java:51:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java:643:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/BundleActionBean.java:46:
>  warning: Line is longer than 132 characters.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


Re: Review Request 63626: OOZIE-3001 core library has many instances of warnings with trailing spaces and lines longer than 132 chars

2017-11-08 Thread Artem Ervits

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/63626/
---

(Updated Nov. 8, 2017, 2:53 p.m.)


Review request for oozie and András Piros.


Repository: oozie-git


Description
---

OOZIE-3001 core library has many instances of warnings with trailing spaces and 
lines longer than 132 chars


Diffs (updated)
-

  core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java 
d9417535 
  core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java 
47b2407d 
  core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java 
bc87f294 
  core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java 
6a25e5c8 
  core/src/main/java/org/apache/oozie/command/bundle/BundleJobException.java 
05e526ed 
  
core/src/main/java/org/apache/oozie/command/bundle/BundleJobResumeXCommand.java 
2e3671df 
  core/src/main/java/org/apache/oozie/command/bundle/BundleKillXCommand.java 
1516ec32 


Diff: https://reviews.apache.org/r/63626/diff/2/

Changes: https://reviews.apache.org/r/63626/diff/1-2/


Testing
---

yes


File Attachments


new patch
  
https://reviews.apache.org/media/uploaded/files/2017/11/08/48daa130-a49c-4348-9fd0-48268a4e2977__OOZIE-3001-3.patch


Thanks,

Artem Ervits



Re: Review Request 63626: OOZIE-3001 core library has many instances of warnings with trailing spaces and lines longer than 132 chars

2017-11-08 Thread Artem Ervits

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/63626/
---

(Updated Nov. 8, 2017, 2:52 p.m.)


Review request for oozie and András Piros.


Repository: oozie-git


Description
---

OOZIE-3001 core library has many instances of warnings with trailing spaces and 
lines longer than 132 chars


Diffs
-

  core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java 
d9417535 
  core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java 
52abbf17 
  core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java 
22b6dc9f 
  core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java 
23e1f69e 
  core/src/main/java/org/apache/oozie/command/bundle/BundleJobException.java 
05e526ed 
  
core/src/main/java/org/apache/oozie/command/bundle/BundleJobResumeXCommand.java 
2e3671df 
  core/src/main/java/org/apache/oozie/command/bundle/BundleKillXCommand.java 
1516ec32 


Diff: https://reviews.apache.org/r/63626/diff/1/


Testing
---

yes


File Attachments (updated)


new patch
  
https://reviews.apache.org/media/uploaded/files/2017/11/08/48daa130-a49c-4348-9fd0-48268a4e2977__OOZIE-3001-3.patch


Thanks,

Artem Ervits



[jira] [Updated] (OOZIE-2996) add option for -UseGCOverheadLimit to maven opts as sometimes local testing fails

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2996:

Attachment: OOZIE-2996-1.patch

[~andras.piros] thanks for review, I no longer can reproduce the issue but I 
applied your recommendations into a new patch and rebased to master. 

> add option for -UseGCOverheadLimit to maven opts as sometimes local testing 
> fails
> -
>
> Key: OOZIE-2996
> URL: https://issues.apache.org/jira/browse/OOZIE-2996
> Project: Oozie
>  Issue Type: Sub-task
>  Components: build
>Affects Versions: 4.3.0
> Environment: Java 8
> Maven 3.5
> Oozie master branch commit 50b92932f54d46e342403acaa33b7ae1a524328c
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: 5.0.0
>
> Attachments: OOZIE-2996-0.patch, OOZIE-2996-1.patch
>
>
> steps to reproduce
> {code}
> mvn clean -Dtest=org.apache.oozie.service.TestAuthorizationService test 
> -DtargetJavaVersion=1.8 -DjavaVersion=1.8
> {code}
> {noformat}
> [INFO] Apache Oozie Main .. SUCCESS [  0.635 
> s]
> [INFO] Apache Oozie Client  SUCCESS [  3.648 
> s]
> [INFO] Apache Oozie Share Lib Oozie ... SUCCESS [  4.660 
> s]
> [INFO] Apache Oozie Share Lib HCatalog  SUCCESS [  1.762 
> s]
> [INFO] Apache Oozie Share Lib Distcp .. SUCCESS [  1.012 
> s]
> [INFO] Apache Oozie Core .. SUCCESS [02:28 
> min]
> [INFO] Apache Oozie Share Lib Streaming ... SUCCESS [  4.101 
> s]
> [INFO] Apache Oozie Share Lib Pig . SUCCESS [  3.101 
> s]
> [INFO] Apache Oozie Share Lib Hive  SUCCESS [  3.129 
> s]
> [INFO] Apache Oozie Share Lib Hive 2 .. SUCCESS [  4.354 
> s]
> [INFO] Apache Oozie Share Lib Sqoop ... SUCCESS [  3.280 
> s]
> [INFO] Apache Oozie Examples .. SUCCESS [  7.110 
> s]
> [INFO] Apache Oozie Share Lib Spark ... SUCCESS [  8.048 
> s]
> [INFO] Apache Oozie Share Lib . SUCCESS [  0.018 
> s]
> [INFO] Apache Oozie Docs .. SUCCESS [  0.284 
> s]
> [INFO] Apache Oozie WebApp  FAILURE [ 24.500 
> s]
> [INFO] Apache Oozie Tools . SKIPPED
> [INFO] Apache Oozie MiniOozie . SKIPPED
> [INFO] Apache Oozie Server  SKIPPED
> [INFO] Apache Oozie Distro  SKIPPED
> [INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 03:39 min
> [INFO] Finished at: 2017-07-17T16:39:33-04:00
> [INFO] Final Memory: 239M/455M
> [INFO] 
> 
> [ERROR] GC overhead limit exceeded -> [Help 1]
> [ERROR]
> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
> switch.
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
> [ERROR] For more information about the errors and possible solutions, please 
> read the following articles:
> [ERROR] [Help 1] 
> http://cwiki.apache.org/confluence/display/MAVEN/OutOfMemoryError
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-2964) Add -Xdoclint:none to javadoc opts to avoid warnings

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-2964:
-

the test is flaky, 
https://issues.apache.org/jira/browse/OOZIE-2726


> Add -Xdoclint:none to javadoc opts to avoid warnings
> 
>
> Key: OOZIE-2964
> URL: https://issues.apache.org/jira/browse/OOZIE-2964
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: java version "1.8.0_51"
> Java(TM) SE Runtime Environment (build 1.8.0_51-b16)
> Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
> Mac OSX 10.12.5
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: trunk, 5.0.0
>
> Attachments: OOZIE-2964-0.patch, OOZIE-2964-2.patch
>
>
> steps to reproduce
> {noformat}
> ./bin/mkdistro.sh -DskipTests=true -DtargetJavaVersion=1.8 -DjavaVersion=1.8
> {noformat}
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE-AbstractJavadocMojo/oozie/core/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:5163)
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport(AbstractJavadocMojo.java:2075)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.generate(JavadocReport.java:130)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.execute(JavadocReport.java:318)
> at 
> org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
> at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3022) fix for warning has no file and won't be listed in dependency files details

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3022:
-

both failing tests are flaky
https://issues.apache.org/jira/browse/OOZIE-2726
https://issues.apache.org/jira/browse/OOZIE-3105

> fix for warning has no file and won't be listed in dependency files details
> ---
>
> Key: OOZIE-3022
> URL: https://issues.apache.org/jira/browse/OOZIE-3022
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: Maven: 3.5.0
> Java: 1.8.0_141
> latest commit: 01826102302e8c62f7b5bf2156aa2c0bb1c84c9e
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3022-2.patch, OOZIE-3022.patch
>
>
> during build getting warning
> {noformat}
> Artifact com.sun:tools:jar:1.7 has no file and won't be listed in dependency 
> files details
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2726) Flaky test due to daylight saving changes

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2726:

Fix Version/s: 5.0.0b1

> Flaky test due to daylight saving changes
> -
>
> Key: OOZIE-2726
> URL: https://issues.apache.org/jira/browse/OOZIE-2726
> Project: Oozie
>  Issue Type: Sub-task
>Reporter: Satish Subhashrao Saley
>Assignee: Satish Subhashrao Saley
>Priority: Blocker
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2726-1.patch, OOZIE-2726-2.patch, 
> OOZIE-2726-3.patch, OOZIE-2726-4.patch, OOZIE-2726-5.patch
>
>
> org.apache.oozie.command.coord.TestCoordMaterializeTransitionXCommand.testMaterizationLookup
> {code}
> Error Message
> expected: but was:
> Stacktrace
> junit.framework.AssertionFailedError: expected: 
> but was:
>   at junit.framework.Assert.fail(Assert.java:50)
>   at junit.framework.Assert.failNotEquals(Assert.java:287)
>   at junit.framework.Assert.assertEquals(Assert.java:67)
>   at junit.framework.Assert.assertEquals(Assert.java:74)
>   at 
> org.apache.oozie.command.coord.TestCoordMaterializeTransitionXCommand.testMaterizationLookup(TestCoordMaterializeTransitionXCommand.java:582)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:483)
>   at junit.framework.TestCase.runTest(TestCase.java:168)
>   at junit.framework.TestCase.runBare(TestCase.java:134)
>   at junit.framework.TestResult$1.protect(TestResult.java:110)
>   at junit.framework.TestResult.runProtected(TestResult.java:128)
>   at junit.framework.TestResult.run(TestResult.java:113)
>   at junit.framework.TestCase.run(TestCase.java:124)
>   at junit.framework.TestSuite.runTest(TestSuite.java:243)
>   at junit.framework.TestSuite.run(TestSuite.java:238)
>   at 
> org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
>   at org.junit.runners.Suite.runChild(Suite.java:128)
>   at org.junit.runners.Suite.runChild(Suite.java:24)
>   at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
>   at 
> java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
>   at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>   at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
>   at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
>   at java.lang.Thread.run(Thread.java:745)
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2726) Flaky test due to daylight saving changes

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2726:

Fix Version/s: (was: 5.0.0)

> Flaky test due to daylight saving changes
> -
>
> Key: OOZIE-2726
> URL: https://issues.apache.org/jira/browse/OOZIE-2726
> Project: Oozie
>  Issue Type: Sub-task
>Reporter: Satish Subhashrao Saley
>Assignee: Satish Subhashrao Saley
>Priority: Blocker
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2726-1.patch, OOZIE-2726-2.patch, 
> OOZIE-2726-3.patch, OOZIE-2726-4.patch, OOZIE-2726-5.patch
>
>
> org.apache.oozie.command.coord.TestCoordMaterializeTransitionXCommand.testMaterizationLookup
> {code}
> Error Message
> expected: but was:
> Stacktrace
> junit.framework.AssertionFailedError: expected: 
> but was:
>   at junit.framework.Assert.fail(Assert.java:50)
>   at junit.framework.Assert.failNotEquals(Assert.java:287)
>   at junit.framework.Assert.assertEquals(Assert.java:67)
>   at junit.framework.Assert.assertEquals(Assert.java:74)
>   at 
> org.apache.oozie.command.coord.TestCoordMaterializeTransitionXCommand.testMaterizationLookup(TestCoordMaterializeTransitionXCommand.java:582)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:483)
>   at junit.framework.TestCase.runTest(TestCase.java:168)
>   at junit.framework.TestCase.runBare(TestCase.java:134)
>   at junit.framework.TestResult$1.protect(TestResult.java:110)
>   at junit.framework.TestResult.runProtected(TestResult.java:128)
>   at junit.framework.TestResult.run(TestResult.java:113)
>   at junit.framework.TestCase.run(TestCase.java:124)
>   at junit.framework.TestSuite.runTest(TestSuite.java:243)
>   at junit.framework.TestSuite.run(TestSuite.java:238)
>   at 
> org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
>   at org.junit.runners.Suite.runChild(Suite.java:128)
>   at org.junit.runners.Suite.runChild(Suite.java:24)
>   at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
>   at 
> java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
>   at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>   at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
>   at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
>   at java.lang.Thread.run(Thread.java:745)
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2726) Flaky test due to daylight saving changes

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2726:

Issue Type: Sub-task  (was: Bug)
Parent: OOZIE-3111

> Flaky test due to daylight saving changes
> -
>
> Key: OOZIE-2726
> URL: https://issues.apache.org/jira/browse/OOZIE-2726
> Project: Oozie
>  Issue Type: Sub-task
>Reporter: Satish Subhashrao Saley
>Assignee: Satish Subhashrao Saley
>Priority: Blocker
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-2726-1.patch, OOZIE-2726-2.patch, 
> OOZIE-2726-3.patch, OOZIE-2726-4.patch, OOZIE-2726-5.patch
>
>
> org.apache.oozie.command.coord.TestCoordMaterializeTransitionXCommand.testMaterizationLookup
> {code}
> Error Message
> expected: but was:
> Stacktrace
> junit.framework.AssertionFailedError: expected: 
> but was:
>   at junit.framework.Assert.fail(Assert.java:50)
>   at junit.framework.Assert.failNotEquals(Assert.java:287)
>   at junit.framework.Assert.assertEquals(Assert.java:67)
>   at junit.framework.Assert.assertEquals(Assert.java:74)
>   at 
> org.apache.oozie.command.coord.TestCoordMaterializeTransitionXCommand.testMaterizationLookup(TestCoordMaterializeTransitionXCommand.java:582)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:483)
>   at junit.framework.TestCase.runTest(TestCase.java:168)
>   at junit.framework.TestCase.runBare(TestCase.java:134)
>   at junit.framework.TestResult$1.protect(TestResult.java:110)
>   at junit.framework.TestResult.runProtected(TestResult.java:128)
>   at junit.framework.TestResult.run(TestResult.java:113)
>   at junit.framework.TestCase.run(TestCase.java:124)
>   at junit.framework.TestSuite.runTest(TestSuite.java:243)
>   at junit.framework.TestSuite.run(TestSuite.java:238)
>   at 
> org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
>   at org.junit.runners.Suite.runChild(Suite.java:128)
>   at org.junit.runners.Suite.runChild(Suite.java:24)
>   at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
>   at 
> java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
>   at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>   at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
>   at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
>   at java.lang.Thread.run(Thread.java:745)
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3107) org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3107:

Issue Type: Sub-task  (was: Test)
Parent: OOZIE-3111

> org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky
> -
>
> Key: OOZIE-3107
> URL: https://issues.apache.org/jira/browse/OOZIE-3107
> Project: Oozie
>  Issue Type: Sub-task
>  Components: tests
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.2
> jdk: 1.8.0.144
>Reporter: Artem Ervits
>Assignee: Artem Ervits
> Fix For: trunk, 5.0.0
>
>
> running testMain test in isolation fails and all subsequent runs of the test 
> will fail.
> {code}
> mvn clean -Dtest=org.apache.oozie.action.hadoop.TestHiveMain#testMain test
> {code}
> {noformat}
> [INFO] Running org.apache.oozie.action.hadoop.TestHiveMain
> [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 
> 29.209 s <<< FAILURE! - in org.apache.oozie.action.hadoop.TestHiveMain
> [ERROR] testMain(org.apache.oozie.action.hadoop.TestHiveMain)  Time elapsed: 
> 29.209 s  <<< ERROR!
> java.lang.RuntimeException: java.net.ConnectException: Call From 
> hw12107.local/192.168.201.6 to localhost:60427 failed on connection 
> exception: java.net.ConnectException: Connection refused; For more details 
> see:  http://wiki.apache.org/hadoop/ConnectionRefused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> Caused by: java.net.ConnectException: Call From hw12107.local/192.168.201.6 
> to localhost:60427 failed on connection exception: java.net.ConnectException: 
> Connection refused; For more details see:  
> http://wiki.apache.org/hadoop/ConnectionRefused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> Caused by: java.net.ConnectException: Connection refused
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:146)
>   at 
> org.apache.oozie.action.hadoop.TestHiveMain.call(TestHiveMain.java:39)
> [INFO]
> [INFO] Results:
> [INFO]
> [ERROR] Errors:
> [ERROR]   
> TestHiveMain>MainTestCase.testMain:40->MainTestCase.execute:31->call:39->call:146
>  » Runtime
> [INFO]
> [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0
> [INFO]
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO]
> [INFO] Apache Oozie Main .. SUCCESS [  0.529 
> s]
> [INFO] Apache Oozie Client  SUCCESS [  3.296 
> s]
> [INFO] Apache Oozie Share Lib Oozie ... SUCCESS [  3.961 
> s]
> [INFO] Apache Oozie Share Lib HCatalog  SUCCESS [  1.638 
> s]
> [INFO] Apache Oozie Share Lib Distcp .. SUCCESS [  0.558 
> s]
> [INFO] Apache Oozie Core .. SUCCESS [ 16.664 
> s]
> [INFO] Apache Oozie Share Lib Streaming ... SUCCESS [  4.166 
> s]
> [INFO] Apache Oozie Share Lib Pig . SUCCESS [  2.235 
> s]
> [INFO] Apache Oozie Share Lib Hive  FAILURE [ 32.805 
> s]
> [INFO] Apache Oozie Share Lib Hive 2 .. SKIPPED
> [INFO] Apache Oozie Share Lib Sqoop ... SKIPPED
> [INFO] Apache Oozie Examples .. SKIPPED
> [INFO] Apache Oozie Share Lib Spark ... SKIPPED
> [INFO] Apache Oozie Share Lib . SKIPPED
> [INFO] Apache Oozie Docs .. SKIPPED
> [INFO] Apache Oozie WebApp  SKIPPED
> [INFO] Apache Oozie Tools . SKIPPED
> [INFO] Apache Oozie MiniOozie . SKIPPED
> [INFO] Apache Oozie Server  SKIPPED
> [INFO] Apache Oozie Distro  SKIPPED
> [INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 01:06 min
> [INFO] Finished at: 2017-11-01T10:22:57-04:00
> [INFO] Final Memory: 296M/1606M
&

[jira] [Updated] (OOZIE-3105) testJMXInstrumentation from the org.apache.oozie.util.TestMetricsInstrumentation class is flaky

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3105:

Issue Type: Sub-task  (was: Bug)
Parent: OOZIE-3111

> testJMXInstrumentation from the 
> org.apache.oozie.util.TestMetricsInstrumentation class is flaky
> ---
>
> Key: OOZIE-3105
> URL: https://issues.apache.org/jira/browse/OOZIE-3105
> Project: Oozie
>  Issue Type: Sub-task
>  Components: tests
>Affects Versions: 4.3.0
> Environment: mvn: 3.5.0
> java: 1.8.0.144
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Blocker
> Fix For: 5.0.0b1
>
> Attachments: OOZIE-3105-00.patch
>
>
> I'm able to reproduce the test failure consistently by running test in 
> isolation with the following command
> {code}
> mvn clean 
> -Dtest=org.apache.oozie.util.TestMetricsInstrumentation#testJMXInstrumentation
>  test
> {code}
> the test succeeds consistently with the following
> {code}
> mvn clean -Dtest=org.apache.oozie.util.TestMetricsInstrumentation test
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-3108) org.apache.oozie.tools.TestDBLoadDump#testImportInvalidDataLeavesTablesEmpty is flaky

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3108:

Issue Type: Sub-task  (was: Test)
Parent: OOZIE-3111

> org.apache.oozie.tools.TestDBLoadDump#testImportInvalidDataLeavesTablesEmpty 
> is flaky
> -
>
> Key: OOZIE-3108
> URL: https://issues.apache.org/jira/browse/OOZIE-3108
> Project: Oozie
>  Issue Type: Sub-task
>  Components: tests
>Affects Versions: 4.3.0
>    Reporter: Artem Ervits
>
> {code}
> mvn clean -Dtest=org.apache.oozie.tools.TestDBLoadDump test
> {code}
> passes
> {code}
> mvn clean 
> -Dtest=org.apache.oozie.tools.TestDBLoadDump#testImportInvalidDataLeavesTablesEmpty
>  test
> {code}
> fails on individual run.
> {code}
> mvn clean 
> -Dtest=org.apache.oozie.tools.TestDBLoadDump#testImportInvalidDataLeavesTablesEmpty
>  test
> {noformat}
> Running org.apache.oozie.tools.TestDBLoadDump
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 22.625 sec 
> <<< FAILURE!
> Results :
> Failed tests:   
> testImportInvalidDataLeavesTablesEmpty(org.apache.oozie.tools.TestDBLoadDump):
>  import should have been ended prematurely
> Tests run: 1, Failures: 1, Errors: 0, Skipped: 0
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO]
> [INFO] Apache Oozie Main .. SUCCESS [  0.604 
> s]
> [INFO] Apache Oozie Client  SUCCESS [  2.634 
> s]
> [INFO] Apache Oozie Share Lib Oozie ... SUCCESS [  3.449 
> s]
> [INFO] Apache Oozie Share Lib HCatalog  SUCCESS [  1.468 
> s]
> [INFO] Apache Oozie Share Lib Distcp .. SUCCESS [  0.550 
> s]
> [INFO] Apache Oozie Core .. SUCCESS [ 15.741 
> s]
> [INFO] Apache Oozie Share Lib Streaming ... SUCCESS [  3.544 
> s]
> [INFO] Apache Oozie Share Lib Pig . SUCCESS [  2.476 
> s]
> [INFO] Apache Oozie Share Lib Hive  SUCCESS [  2.439 
> s]
> [INFO] Apache Oozie Share Lib Hive 2 .. SUCCESS [  3.954 
> s]
> [INFO] Apache Oozie Share Lib Sqoop ... SUCCESS [  1.552 
> s]
> [INFO] Apache Oozie Examples .. SUCCESS [  2.189 
> s]
> [INFO] Apache Oozie Share Lib Spark ... SUCCESS [  3.243 
> s]
> [INFO] Apache Oozie Share Lib . SUCCESS [  0.010 
> s]
> [INFO] Apache Oozie Docs .. SUCCESS [  0.248 
> s]
> [INFO] Apache Oozie WebApp  SUCCESS [  2.731 
> s]
> [INFO] Apache Oozie Tools . FAILURE [ 26.358 
> s]
> [INFO] Apache Oozie MiniOozie . SKIPPED
> [INFO] Apache Oozie Server  SKIPPED
> [INFO] Apache Oozie Distro  SKIPPED
> [INFO] Apache Oozie ZooKeeper Security Tests .. SKIPPED
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 01:13 min
> [INFO] Finished at: 2017-11-01T10:49:22-04:00
> [INFO] Final Memory: 552M/1955M
> [INFO] 
> 
> [ERROR] Failed to execute goal 
> org.apache.maven.plugins:maven-surefire-plugin:2.12.2:test (default-test) on 
> project oozie-tools: There are test failures.
> [ERROR]
> [ERROR] Please refer to 
> /Users/aervits/NetBeansProjects/OOZIE/oozie/tools/target/surefire-reports for 
> the individual test results.
> [ERROR] -> [Help 1]
> [ERROR]
> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
> switch.
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
> [ERROR] For more information about the errors and possible solutions, please 
> read the following articles:
> [ERROR] [Help 1] 
> http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
> [ERROR]
> [ERROR] After correcting the problems, you can resume the build with the 
> command
> [ERROR]   mvn  -rf :oozie-tools
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3091) Oozie Sqoop Avro Import fails with "java.lang.NoClassDefFoundError: org/apache/avro/mapred/AvroWrapper"

2017-11-08 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3091:
-

[~Prabhu Joseph] not yet, have to stand up an environment to test this.

> Oozie Sqoop Avro Import fails with "java.lang.NoClassDefFoundError: 
> org/apache/avro/mapred/AvroWrapper"
> ---
>
> Key: OOZIE-3091
> URL: https://issues.apache.org/jira/browse/OOZIE-3091
> Project: Oozie
>  Issue Type: Bug
>  Components: action
>Affects Versions: 4.2.0
>Reporter: Prabhu Joseph
>Assignee: Prabhu Joseph
> Attachments: OOZIE-3091.1.patch, OOZIE-3091.2.patch, 
> Oozie_Sqoop_Avro_import
>
>
> Oozie Sqoop Action which does Import as avro fails with below. 
> avro-mapred-1.8.0-hadoop2.jar need to be included in Oozie Sqoop Sharelib
> {code}
> 2017-10-19 09:45:25,349 WARN [main] org.apache.hadoop.mapred.YarnChild: 
> Exception running child : java.lang.RuntimeException: 
> java.lang.reflect.InvocationTargetException
> at 
> org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:134)
> at org.apache.hadoop.mapred.MapTask.runNewMapper(MapTask.java:745)
> at org.apache.hadoop.mapred.MapTask.run(MapTask.java:341)
> at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.java:170)
> at java.security.AccessController.doPrivileged(Native Method)
> at javax.security.auth.Subject.doAs(Subject.java:422)
> at 
> org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1866)
> at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:164)
> Caused by: java.lang.reflect.InvocationTargetException
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
> Method)
> at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
> at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
> at 
> org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:132)
> ... 7 more
> Caused by: java.lang.NoClassDefFoundError: org/apache/avro/mapred/AvroWrapper
> at 
> org.apache.sqoop.mapreduce.AvroImportMapper.(AvroImportMapper.java:43)
> ... 12 more
> Caused by: java.lang.ClassNotFoundException: 
> org.apache.avro.mapred.AvroWrapper
> at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
> at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
> ... 13 more
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2964) Add -Xdoclint:none to javadoc opts to avoid warnings

2017-11-07 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2964:

Attachment: OOZIE-2964-2.patch

> Add -Xdoclint:none to javadoc opts to avoid warnings
> 
>
> Key: OOZIE-2964
> URL: https://issues.apache.org/jira/browse/OOZIE-2964
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: java version "1.8.0_51"
> Java(TM) SE Runtime Environment (build 1.8.0_51-b16)
> Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
> Mac OSX 10.12.5
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: trunk, 5.0.0
>
> Attachments: OOZIE-2964-0.patch, OOZIE-2964-2.patch
>
>
> steps to reproduce
> {noformat}
> ./bin/mkdistro.sh -DskipTests=true -DtargetJavaVersion=1.8 -DjavaVersion=1.8
> {noformat}
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE-AbstractJavadocMojo/oozie/core/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:5163)
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport(AbstractJavadocMojo.java:2075)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.generate(JavadocReport.java:130)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.execute(JavadocReport.java:318)
> at 
> org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
> at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (OOZIE-2964) Add -Xdoclint:none to javadoc opts to avoid warnings

2017-11-07 Thread Artem Ervits (JIRA)

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

Artem Ervits edited comment on OOZIE-2964 at 11/7/17 3:47 PM:
--

[~andras.piros] thanks for review, I added your properties and the patch did 
not fix the apidoc error above. I agree that with my patch we lose a lot of 
visibility and better to address the original issue than hide everything. I am 
strapped for time now and cannot work on this but I will dig deeper into what 
is going on. I am attaching my patch with rebase just for continuity.


was (Author: dbist13):
[~andras.piros] thanks for review, attaching new patch based on latest master

> Add -Xdoclint:none to javadoc opts to avoid warnings
> 
>
> Key: OOZIE-2964
> URL: https://issues.apache.org/jira/browse/OOZIE-2964
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: java version "1.8.0_51"
> Java(TM) SE Runtime Environment (build 1.8.0_51-b16)
> Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
> Mac OSX 10.12.5
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: trunk, 5.0.0
>
> Attachments: OOZIE-2964-0.patch
>
>
> steps to reproduce
> {noformat}
> ./bin/mkdistro.sh -DskipTests=true -DtargetJavaVersion=1.8 -DjavaVersion=1.8
> {noformat}
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE-AbstractJavadocMojo/oozie/core/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:5163)
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport(AbstractJavadocMojo.java:2075)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.generate(JavadocReport.java:130)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.execute(JavadocReport.java:318)
> at 
> org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
> at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2964) Add -Xdoclint:none to javadoc opts to avoid warnings

2017-11-07 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2964:

Attachment: (was: OOZIE-2964-1.patch)

> Add -Xdoclint:none to javadoc opts to avoid warnings
> 
>
> Key: OOZIE-2964
> URL: https://issues.apache.org/jira/browse/OOZIE-2964
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: java version "1.8.0_51"
> Java(TM) SE Runtime Environment (build 1.8.0_51-b16)
> Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
> Mac OSX 10.12.5
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: trunk, 5.0.0
>
> Attachments: OOZIE-2964-0.patch
>
>
> steps to reproduce
> {noformat}
> ./bin/mkdistro.sh -DskipTests=true -DtargetJavaVersion=1.8 -DjavaVersion=1.8
> {noformat}
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE-AbstractJavadocMojo/oozie/core/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:5163)
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport(AbstractJavadocMojo.java:2075)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.generate(JavadocReport.java:130)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.execute(JavadocReport.java:318)
> at 
> org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
> at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (OOZIE-2964) Add -Xdoclint:none to javadoc opts to avoid warnings

2017-11-07 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-2964:

Attachment: OOZIE-2964-1.patch

[~andras.piros] thanks for review, attaching new patch based on latest master

> Add -Xdoclint:none to javadoc opts to avoid warnings
> 
>
> Key: OOZIE-2964
> URL: https://issues.apache.org/jira/browse/OOZIE-2964
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: java version "1.8.0_51"
> Java(TM) SE Runtime Environment (build 1.8.0_51-b16)
> Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
> Mac OSX 10.12.5
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Minor
> Fix For: trunk, 5.0.0
>
> Attachments: OOZIE-2964-0.patch, OOZIE-2964-1.patch
>
>
> steps to reproduce
> {noformat}
> ./bin/mkdistro.sh -DskipTests=true -DtargetJavaVersion=1.8 -DjavaVersion=1.8
> {noformat}
> Refer to the generated Javadoc files in 
> '/Users/aervits/NetBeansProjects/OOZIE-AbstractJavadocMojo/oozie/core/target/site/apidocs'
>  dir.
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeJavadocCommandLine(AbstractJavadocMojo.java:5163)
> at 
> org.apache.maven.plugin.javadoc.AbstractJavadocMojo.executeReport(AbstractJavadocMojo.java:2075)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.generate(JavadocReport.java:130)
> at 
> org.apache.maven.plugin.javadoc.JavadocReport.execute(JavadocReport.java:318)
> at 
> org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
> at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
> at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
> at 
> org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
> at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
> at 
> org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (OOZIE-3001) core library has many instances of warnings with trailing spaces and lines longer than 132 chars

2017-11-07 Thread Artem Ervits (JIRA)

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

Artem Ervits commented on OOZIE-3001:
-

[~andras.piros] please review https://reviews.apache.org/r/63626/

> core library has many instances of warnings with trailing spaces and lines 
> longer than 132 chars
> 
>
> Key: OOZIE-3001
> URL: https://issues.apache.org/jira/browse/OOZIE-3001
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
>Reporter: Artem Ervits
>Assignee: Artem Ervits
>  Labels: newbie
> Attachments: OOZIE-3001-2.patch
>
>
> {noformat}
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java:219:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java:297:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java:40:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java:45:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java:35:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java:51:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java:643:
>  warning: Line is longer than 132 characters.
> /Users/aervits/NetBeansProjects/minioozie/oozie/core/src/main/java/org/apache/oozie/BundleActionBean.java:46:
>  warning: Line is longer than 132 characters.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


Review Request 63626: OOZIE-3001 core library has many instances of warnings with trailing spaces and lines longer than 132 chars

2017-11-07 Thread Artem Ervits

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/63626/
---

Review request for oozie and András Piros.


Repository: oozie-git


Description
---

OOZIE-3001 core library has many instances of warnings with trailing spaces and 
lines longer than 132 chars


Diffs
-

  core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java 
d9417535 
  core/src/main/java/org/apache/oozie/action/hadoop/HCatCredentials.java 
52abbf17 
  core/src/main/java/org/apache/oozie/action/hadoop/HbaseCredentials.java 
22b6dc9f 
  core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java 
23e1f69e 
  core/src/main/java/org/apache/oozie/command/bundle/BundleJobException.java 
05e526ed 
  
core/src/main/java/org/apache/oozie/command/bundle/BundleJobResumeXCommand.java 
2e3671df 
  core/src/main/java/org/apache/oozie/command/bundle/BundleKillXCommand.java 
1516ec32 


Diff: https://reviews.apache.org/r/63626/diff/1/


Testing
---

yes


Thanks,

Artem Ervits



[jira] [Updated] (OOZIE-3022) fix for warning has no file and won't be listed in dependency files details

2017-11-07 Thread Artem Ervits (JIRA)

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

Artem Ervits updated OOZIE-3022:

Attachment: OOZIE-3022-2.patch

[~andras.piros] and [~gezapeti] thanks for your mentorship, the exclusion 
worked, the other option didn't. I don't see a message with the attached patch.

> fix for warning has no file and won't be listed in dependency files details
> ---
>
> Key: OOZIE-3022
> URL: https://issues.apache.org/jira/browse/OOZIE-3022
> Project: Oozie
>  Issue Type: Sub-task
>Affects Versions: 4.3.0
> Environment: Maven: 3.5.0
> Java: 1.8.0_141
> latest commit: 01826102302e8c62f7b5bf2156aa2c0bb1c84c9e
>    Reporter: Artem Ervits
>Assignee: Artem Ervits
>Priority: Trivial
> Fix For: 5.0.0
>
> Attachments: OOZIE-3022-2.patch, OOZIE-3022.patch
>
>
> during build getting warning
> {noformat}
> Artifact com.sun:tools:jar:1.7 has no file and won't be listed in dependency 
> files details
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


<    1   2   3   4   5   6   >