Re: Review Request 64808: OOZIE-3085 - Improve logging in ActionExecutors

2018-01-12 Thread András Piros via Review Board

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


Ship it!




Ship It!

- András Piros


On Jan. 11, 2018, 4:02 p.m., Kinga Marton wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/64808/
> ---
> 
> (Updated Jan. 11, 2018, 4:02 p.m.)
> 
> 
> Review request for oozie and Attila Sasvari.
> 
> 
> Repository: oozie-git
> 
> 
> Description
> ---
> 
> Decision, ForkJoin, Email and FS ActionExecutors are producing no or very 
> little logs on info level. This makes it hard to gather usage information and 
> help with troubleshooting in the case of any issues. Please improve logging 
> in these classes.
> Several subtasks can be separated out from this one
> 
> 
> Diffs
> -
> 
>   
> core/src/main/java/org/apache/oozie/action/control/ControlNodeActionExecutor.java
>  cc1b6108 
>   
> core/src/main/java/org/apache/oozie/action/decision/DecisionActionExecutor.java
>  8c235bda 
>   core/src/main/java/org/apache/oozie/action/email/EmailActionExecutor.java 
> d59f1d76 
>   core/src/main/java/org/apache/oozie/action/hadoop/FsActionExecutor.java 
> 63f6104d 
>   core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java 
> 5c8acae5 
>   
> core/src/main/java/org/apache/oozie/action/oozie/SubWorkflowActionExecutor.java
>  d62cf686 
>   core/src/main/java/org/apache/oozie/action/ssh/SshActionExecutor.java 
> 5890b8c1 
> 
> 
> Diff: https://reviews.apache.org/r/64808/diff/3/
> 
> 
> Testing
> ---
> 
> Manually tested the log entries for each affected ActionExecutor.
> The log messages look like: 
> 
> `2018-01-11 16:24:06,967  INFO ForkActionExecutor:520 - 
> SERVER[kmarton-MBP.local] USER[martonjuliakinga] GROUP[-] TOKEN[] 
> APP[Fork_workflow] JOB[001-18055450212-oozie-mart-W] 
> ACTION[001-18055450212-oozie-mart-W@fs-paralel] Starting action
> `
> 
> `2018-01-11 14:40:22,770  INFO FsActionExecutor:520 - 
> SERVER[kmarton-MBP.local] USER[martonjuliakinga] GROUP[-] TOKEN[] 
> APP[one-op-wf] JOB[006-18034310829-oozie-mart-W] 
> ACTION[006-18034310829-oozie-mart-W@action1] Action ended with 
> external status [OK]
> `
> 
> 
> Thanks,
> 
> Kinga Marton
> 
>



[jira] [Commented] (OOZIE-3145) TestDistcpMain shall remove created files after test execution

2018-01-12 Thread Peter Cseh (JIRA)

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

Peter Cseh commented on OOZIE-3145:
---

These files are generated by the LauncherAM and the *Main classes. They assume 
that they are running in a Yarn container so they just write to ./ as it will 
be cleaned up by Yarn. I think the easiest way to solve this is to clean up the 
log4j-*.properties, *.log and propagetion-conf.xml files int the XTestCase's 
tearDown() method.
Also, where it's possible use a temporaryFolder rule to target distCP and other 
action's output to somewhere else so the dist2.txt-like files are not there.


> TestDistcpMain shall remove created files after test execution
> --
>
> Key: OOZIE-3145
> URL: https://issues.apache.org/jira/browse/OOZIE-3145
> Project: Oozie
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 5.0.0b1
>Reporter: Attila Sasvari
>Assignee: Julia Kinga Marton
> Attachments: Oozie_test_garbage.png
>
>
> After running TestDistcpMain, local files created are not removed. Subsequent 
> test runs will reuse those files and fail:
> {code}
> $ ls -lrt /home/asasvari/workspace/oozie/core/distcp*
> -rw-rw-r-- 1 asasvari asasvari 1025 Dec 21 18:25 
> /home/asasvari/workspace/oozie/core/distcp-log4j.properties
> -rw-rw-r-- 1 asasvari asasvari 5756 Dec 21 18:26 
> /home/asasvari/workspace/oozie/core/distcp-oozie-1513876931701.log
> {code}
> Those files should be removed after test execution. It would be better to use 
> the oozie/core/target directory so that mvn could clean it.



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


[jira] [Comment Edited] (OOZIE-3145) TestDistcpMain shall remove created files after test execution

2018-01-12 Thread Peter Cseh (JIRA)

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

Peter Cseh edited comment on OOZIE-3145 at 1/12/18 9:33 AM:


These files are generated by the LauncherAM and the \*Main classes. They assume 
that they are running in a Yarn container so they just write to ./ as it will 
be cleaned up by Yarn. I think the easiest way to solve this is to clean up the 
log4j-\*.properties, \*.log and propagetion-conf.xml files int the XTestCase's 
tearDown() method.
Also, where it's possible use a temporaryFolder rule to target distCP and other 
action's output to somewhere else so the dist2.txt-like files are not there.



was (Author: gezapeti):
These files are generated by the LauncherAM and the *Main classes. They assume 
that they are running in a Yarn container so they just write to ./ as it will 
be cleaned up by Yarn. I think the easiest way to solve this is to clean up the 
log4j-*.properties, *.log and propagetion-conf.xml files int the XTestCase's 
tearDown() method.
Also, where it's possible use a temporaryFolder rule to target distCP and other 
action's output to somewhere else so the dist2.txt-like files are not there.


> TestDistcpMain shall remove created files after test execution
> --
>
> Key: OOZIE-3145
> URL: https://issues.apache.org/jira/browse/OOZIE-3145
> Project: Oozie
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 5.0.0b1
>Reporter: Attila Sasvari
>Assignee: Julia Kinga Marton
> Attachments: Oozie_test_garbage.png
>
>
> After running TestDistcpMain, local files created are not removed. Subsequent 
> test runs will reuse those files and fail:
> {code}
> $ ls -lrt /home/asasvari/workspace/oozie/core/distcp*
> -rw-rw-r-- 1 asasvari asasvari 1025 Dec 21 18:25 
> /home/asasvari/workspace/oozie/core/distcp-log4j.properties
> -rw-rw-r-- 1 asasvari asasvari 5756 Dec 21 18:26 
> /home/asasvari/workspace/oozie/core/distcp-oozie-1513876931701.log
> {code}
> Those files should be removed after test execution. It would be better to use 
> the oozie/core/target directory so that mvn could clean it.



--
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-12 Thread Peter Cseh (JIRA)

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

Peter Cseh commented on OOZIE-3025:
---

I don't think this should be moved out from root as the DistCPMain normally 
operates in a YARN container. I'd like it better if the XTestCase would do the 
cleanup afterwards. See my comment about it in OOZIE-3145.



> 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-3145) TestDistcpMain shall remove created files after test execution

2018-01-12 Thread Peter Cseh (JIRA)

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

Peter Cseh commented on OOZIE-3145:
---

I'd like to rename this jira to something like ">git status< should be clean 
after >mvn test< was called".
Also, I'd file a follow-up jira that adds a check to our pre-commit check that 
ensures that mvn test won't create junk again.

> TestDistcpMain shall remove created files after test execution
> --
>
> Key: OOZIE-3145
> URL: https://issues.apache.org/jira/browse/OOZIE-3145
> Project: Oozie
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 5.0.0b1
>Reporter: Attila Sasvari
>Assignee: Julia Kinga Marton
> Attachments: Oozie_test_garbage.png
>
>
> After running TestDistcpMain, local files created are not removed. Subsequent 
> test runs will reuse those files and fail:
> {code}
> $ ls -lrt /home/asasvari/workspace/oozie/core/distcp*
> -rw-rw-r-- 1 asasvari asasvari 1025 Dec 21 18:25 
> /home/asasvari/workspace/oozie/core/distcp-log4j.properties
> -rw-rw-r-- 1 asasvari asasvari 5756 Dec 21 18:26 
> /home/asasvari/workspace/oozie/core/distcp-oozie-1513876931701.log
> {code}
> Those files should be removed after test execution. It would be better to use 
> the oozie/core/target directory so that mvn could clean it.



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


[jira] [Commented] (OOZIE-3061) Kill only those child jobs which are not already killed

2018-01-12 Thread Mate Juhasz (JIRA)

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

Mate Juhasz commented on OOZIE-3061:


What do you think of this solution?

{noformat}
if 
(YarnApplicationState.KILLED.equals(yarnClient.getApplicationReport(app).getYarnApplicationState()))
 {
   System.out.println("Application [" + app + "] already killed.");
} else {
   yarnClient.killApplication(app);
System.out.println("Done");
}
{noformat}


> Kill only those child jobs which are not already killed
> ---
>
> Key: OOZIE-3061
> URL: https://issues.apache.org/jira/browse/OOZIE-3061
> Project: Oozie
>  Issue Type: Bug
>Reporter: Satish Subhashrao Saley
>Priority: Trivial
>  Labels: newbie, newbiee
>
> Here we kill all child jobs. 
> https://github.com/apache/oozie/blob/master/sharelib/oozie/src/main/java/org/apache/oozie/action/hadoop/LauncherMain.java#L265
> We should check before killing for already killed application.



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


Re: [VOTE] Release Oozie 5.0.0-beta1 (candidate 1)

2018-01-12 Thread Attila Sasvari
Kinga, Robert, Peter, Andras, Harsh: many thanks for reviewing release
candidate 1. I would like to give some more time for the Oozie community to
review the release.

The vote is extended to Tuesday, 01/16/2018 11:59 AM CEST.

Thanks,
Attila Sasvari


On Fri, Jan 12, 2018 at 7:43 AM, Harsh J  wrote:

> +1 (binding)
>
> - Verified the md5 and sig (asc) against the tar
> - Executed a build with tests
>
> On Fri, Jan 12, 2018 at 12:09 AM Andras Piros 
> wrote:
>
> > Hi Attila,
> >
> > thanks for building the new RC1 and caring about the process.
> >
> > I've built Oozie against Hadoop 2.6.5 and tried some examples out, graph
> > generation, log streaming etc.
> >
> > +1 (non-binding).
> >
> > Andras
> >
> > On Thu, Jan 11, 2018 at 5:01 PM, Peter Cseh 
> wrote:
> >
> > > Thanks Attila for building the RC1!
> > >
> > > 1) md5, gpg and rat report checks out.
> > > 2) distro builds fine
> > > 3) ran some examples, verified they are working as they should
> > >
> > > I'll try to verify the rc1 against a secure cluster soon, but +1
> > > (non-binding) in the meantime
> > >
> > > gp
> > >
> > > On Tue, Jan 9, 2018 at 5:53 PM, Attila Sasvári 
> > > wrote:
> > >
> > > > It is release candidate 1.
> > > >
> > > > On Tue, Jan 9, 2018 at 5:50 PM, Attila Sasvári  >
> > > > wrote:
> > > >
> > > > > Hi,
> > > > >
> > > > > I have created a build for Oozie 5.0.0-beta1, release candidate 0.
> > > > >
> > > > > This release introduces major changes:
> > > > > - moving launcher from MapReduce AM to Oozie AM,
> > > > > - dropped support for Hadoop 1.x,
> > > > > - added new 1.0 workflow schemas,
> > > > > - switching from Tomcat to embedded Jetty,
> > > > > - completely rewritten graph generator,
> > > > > - local sharelib,
> > > > > - JDK 8 support.
> > > > >
> > > > > It also includes OOZIE-3083.
> > > > >
> > > > > 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/~asasvari/oozie-5.0.0-beta1-rc1/
> > > > >
> > > > > The release, md5 signature, gpg signature, and rat report can all
> be
> > > > found
> > > > > at the above address.
> > > > >
> > > > > The vote is open until Friday, January 12, 2018 at 18:00 CEST.
> > > > >
> > > > > Thanks,
> > > > > Attila Sasvari
> > > > >
> > > >
> > >
> > >
> > >
> > > --
> > > Peter Cseh
> > > Software Engineer
> > > 
> > >
> >
>



-- 
-- 
Attila Sasvari
Software Engineer



[jira] [Created] (OOZIE-3158) Find a replacement for Xerces

2018-01-12 Thread Robert Kanter (JIRA)
Robert Kanter created OOZIE-3158:


 Summary: Find a replacement for Xerces
 Key: OOZIE-3158
 URL: https://issues.apache.org/jira/browse/OOZIE-3158
 Project: Oozie
  Issue Type: Improvement
Affects Versions: trunk
Reporter: Robert Kanter


Oozie currently relies on Apache Xerces for XML validation and related tasks.  
The current version of Xerces-J is 2.11.0, which Oozie is using.  However, it 
was released in *2010*!  It might be a good idea to look into an alternative 
library that is being actively maintained to make sure we continue to get bug, 
security, performance, etc fixes.  



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


[jira] [Created] (OOZIE-3159) Spark Action fails because of absence of hadoop mapreduce jar(s)

2018-01-12 Thread Satish Subhashrao Saley (JIRA)
Satish Subhashrao Saley created OOZIE-3159:
--

 Summary: Spark Action fails because of absence of hadoop mapreduce 
jar(s)
 Key: OOZIE-3159
 URL: https://issues.apache.org/jira/browse/OOZIE-3159
 Project: Oozie
  Issue Type: Bug
Reporter: Satish Subhashrao Saley
Priority: Blocker
 Fix For: 5.0.0b1


OOZIE-2869 removed map reduce dependencies from getting added to Spark action. 
Spark action uses 
org.apache.hadoop.filecache.DistributedCache. It is not available anymore in 
Spack action's classpath, causing it to fail.

{code}
java.lang.reflect.InvocationTargetException
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.apache.oozie.action.hadoop.LauncherAM.runActionMain(LauncherAM.java:412)
at 
org.apache.oozie.action.hadoop.LauncherAM.access$300(LauncherAM.java:56)
at org.apache.oozie.action.hadoop.LauncherAM$2.run(LauncherAM.java:225)
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:1628)
at org.apache.oozie.action.hadoop.LauncherAM.run(LauncherAM.java:219)
at org.apache.oozie.action.hadoop.LauncherAM$1.run(LauncherAM.java:155)
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:1628)
at org.apache.oozie.action.hadoop.LauncherAM.main(LauncherAM.java:142)
Caused by: java.lang.NoClassDefFoundError: 
org/apache/hadoop/filecache/DistributedCache
at 
org.apache.oozie.action.hadoop.SparkArgsExtractor.extract(SparkArgsExtractor.java:309)
at org.apache.oozie.action.hadoop.SparkMain.run(SparkMain.java:74)
at 
org.apache.oozie.action.hadoop.LauncherMain.run(LauncherMain.java:101)
at org.apache.oozie.action.hadoop.SparkMain.main(SparkMain.java:60)
... 16 more
Caused by: java.lang.ClassNotFoundException: 
org.apache.hadoop.filecache.DistributedCache
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)
... 20 more
Failing Oozie Launcher, org/apache/hadoop/filecache/DistributedCache
java.lang.NoClassDefFoundError: org/apache/hadoop/filecache/DistributedCache
at 
org.apache.oozie.action.hadoop.SparkArgsExtractor.extract(SparkArgsExtractor.java:309)
at org.apache.oozie.action.hadoop.SparkMain.run(SparkMain.java:74)
at 
org.apache.oozie.action.hadoop.LauncherMain.run(LauncherMain.java:101)
at org.apache.oozie.action.hadoop.SparkMain.main(SparkMain.java:60)
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.apache.oozie.action.hadoop.LauncherAM.runActionMain(LauncherAM.java:412)
at 
org.apache.oozie.action.hadoop.LauncherAM.access$300(LauncherAM.java:56)
at org.apache.oozie.action.hadoop.LauncherAM$2.run(LauncherAM.java:225)
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:1628)
at org.apache.oozie.action.hadoop.LauncherAM.run(LauncherAM.java:219)
at org.apache.oozie.action.hadoop.LauncherAM$1.run(LauncherAM.java:155)
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:1628)
at org.apache.oozie.action.hadoop.LauncherAM.main(LauncherAM.java:142)
Caused by: java.lang.ClassNotFoundException: 
org.apache.hadoop.filecache.DistributedCache
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)
... 20 more
Oozie Launcher, uploading action data to HDFS sequenc

[jira] Subscription: Oozie Patch Available

2018-01-12 Thread jira
Issue Subscription
Filter: Oozie Patch Available (111 issues)

Subscriber: ooziedaily

Key Summary
OOZIE-3129  Fix test TestConfigurationService.testOozieConfig
https://issues-test.apache.org/jira/browse/OOZIE-3129
OOZIE-3127  Remove redundant check for user
https://issues-test.apache.org/jira/browse/OOZIE-3127
OOZIE-3126  Add option to allow list of users to access system config
https://issues-test.apache.org/jira/browse/OOZIE-3126
OOZIE-3121  bump all maven plugins to latest versions
https://issues-test.apache.org/jira/browse/OOZIE-3121
OOZIE-3118  fix for error: self-closing element not allowed
https://issues-test.apache.org/jira/browse/OOZIE-3118
OOZIE-3117  fix for warning: no @throws for
https://issues-test.apache.org/jira/browse/OOZIE-3117
OOZIE-3116  fix for warning: no description for @throws
https://issues-test.apache.org/jira/browse/OOZIE-3116
OOZIE-3115  fix for javadoc warning: empty  tag
https://issues-test.apache.org/jira/browse/OOZIE-3115
OOZIE-3113  Retry for ZK lock release
https://issues-test.apache.org/jira/browse/OOZIE-3113
OOZIE-3112  SparkConfigrationService overwrites properties provided via 
--properties-file option in SparkAction
https://issues-test.apache.org/jira/browse/OOZIE-3112
OOZIE-3105  testJMXInstrumentation from the 
org.apache.oozie.util.TestMetricsInstrumentation class is flaky
https://issues-test.apache.org/jira/browse/OOZIE-3105
OOZIE-3094  fix for grammar mistake
https://issues-test.apache.org/jira/browse/OOZIE-3094
OOZIE-3091  Oozie Sqoop Avro Import fails with "java.lang.NoClassDefFoundError: 
org/apache/avro/mapred/AvroWrapper"
https://issues-test.apache.org/jira/browse/OOZIE-3091
OOZIE-3083  Make improved version Info backward compatible
https://issues-test.apache.org/jira/browse/OOZIE-3083
OOZIE-3071  Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 
than Spark 2.2.0
https://issues-test.apache.org/jira/browse/OOZIE-3071
OOZIE-3063  Sanitizing variables that are part of openjpa.ConnectionProperties
https://issues-test.apache.org/jira/browse/OOZIE-3063
OOZIE-3062  Set HADOOP_CONF_DIR for spark action
https://issues-test.apache.org/jira/browse/OOZIE-3062
OOZIE-3002  address findbugs errors in client lib
https://issues-test.apache.org/jira/browse/OOZIE-3002
OOZIE-2975  code clean up in pig sharelib, replace Exception with more 
explicit, add try with resources, StringBuilder instead of StringBuffer
https://issues-test.apache.org/jira/browse/OOZIE-2975
OOZIE-2973  Make sure Oozie works with Hadoop 3 
https://issues-test.apache.org/jira/browse/OOZIE-2973
OOZIE-2969  Drop support for Java 1.7
https://issues-test.apache.org/jira/browse/OOZIE-2969
OOZIE-2957  Documentation states that starting a coordinator is possible
https://issues-test.apache.org/jira/browse/OOZIE-2957
OOZIE-2956  Fix Findbugs warnings related to reliance on default encoding in 
oozie-core
https://issues-test.apache.org/jira/browse/OOZIE-2956
OOZIE-2955  Fix Findbugs warnings related to reliance on default encoding in 
oozie-client
https://issues-test.apache.org/jira/browse/OOZIE-2955
OOZIE-2954  Fix Checkstyle issues in oozie-client
https://issues-test.apache.org/jira/browse/OOZIE-2954
OOZIE-2953  Fix Checkstyle issues in oozie-tools
https://issues-test.apache.org/jira/browse/OOZIE-2953
OOZIE-2952  Fix Findbugs warnings in oozie-sharelib-oozie
https://issues-test.apache.org/jira/browse/OOZIE-2952
OOZIE-2949  Escape quotes whitespaces in Sqoop  field
https://issues-test.apache.org/jira/browse/OOZIE-2949
OOZIE-2942  Fix Findbugs warnings in oozie-examples
https://issues-test.apache.org/jira/browse/OOZIE-2942
OOZIE-2937  Remove redundant groupId from the child pom's
https://issues-test.apache.org/jira/browse/OOZIE-2937
OOZIE-2934  Fix "Exceptional return value of java.io.File.mkdirs() ignored" 
Findbugs error in oozie-sharelib-spark
https://issues-test.apache.org/jira/browse/OOZIE-2934
OOZIE-2927  Append new line character for Hive2 query using query tag
https://issues-test.apache.org/jira/browse/OOZIE-2927
OOZIE-2914  Consolidate Trim 
https://issues-test.apache.org/jira/browse/OOZIE-2914
OOZIE-2883  OOZIE throw the error "Missing 
[oozie.service.ProxyUserService.proxyuser.oozie.service.ProxyUserService.proxyuser.mr.groups]
 property"
https://issues-test.apache.org/jira/browse/OOZIE-2883
OOZIE-2877  Oozie Git Action
https://issues-test.apache.org/jira/browse/OOZIE-2877
OOZIE-2867  Timezone handling for Coordinators: emphasize "Continent/City" 
format
https://issues-test.apache.org/jira/browse/OOZIE-2867
OOZIE-2834  ParameterVerifier logging non-useful

[jira] Subscription: Oozie Patch Available

2018-01-12 Thread jira
Issue Subscription
Filter: Oozie Patch Available (102 issues)

Subscriber: ooziedaily

Key Summary
OOZIE-3135  Configure log4j2 in SqoopMain
https://issues.apache.org/jira/browse/OOZIE-3135
OOZIE-3121  bump all maven plugins to latest versions
https://issues.apache.org/jira/browse/OOZIE-3121
OOZIE-3105  testJMXInstrumentation from the 
org.apache.oozie.util.TestMetricsInstrumentation class is flaky
https://issues.apache.org/jira/browse/OOZIE-3105
OOZIE-3094  fix for grammar mistake
https://issues.apache.org/jira/browse/OOZIE-3094
OOZIE-3091  Oozie Sqoop Avro Import fails with "java.lang.NoClassDefFoundError: 
org/apache/avro/mapred/AvroWrapper"
https://issues.apache.org/jira/browse/OOZIE-3091
OOZIE-3085  Improve logging in ActionExecutors
https://issues.apache.org/jira/browse/OOZIE-3085
OOZIE-3071  Oozie 4.3 Spark sharelib ueses a different version of commons-lang3 
than Spark 2.2.0
https://issues.apache.org/jira/browse/OOZIE-3071
OOZIE-3063  Sanitizing variables that are part of openjpa.ConnectionProperties
https://issues.apache.org/jira/browse/OOZIE-3063
OOZIE-3062  Set HADOOP_CONF_DIR for spark action
https://issues.apache.org/jira/browse/OOZIE-3062
OOZIE-3002  address findbugs errors in client lib
https://issues.apache.org/jira/browse/OOZIE-3002
OOZIE-2975  code clean up in pig sharelib, replace Exception with more 
explicit, add try with resources, StringBuilder instead of StringBuffer
https://issues.apache.org/jira/browse/OOZIE-2975
OOZIE-2973  Make sure Oozie works with Hadoop 3 
https://issues.apache.org/jira/browse/OOZIE-2973
OOZIE-2957  Documentation states that starting a coordinator is possible
https://issues.apache.org/jira/browse/OOZIE-2957
OOZIE-2956  Fix Findbugs warnings related to reliance on default encoding in 
oozie-core
https://issues.apache.org/jira/browse/OOZIE-2956
OOZIE-2955  Fix Findbugs warnings related to reliance on default encoding in 
oozie-client
https://issues.apache.org/jira/browse/OOZIE-2955
OOZIE-2954  Fix Checkstyle issues in oozie-client
https://issues.apache.org/jira/browse/OOZIE-2954
OOZIE-2953  Fix Checkstyle issues in oozie-tools
https://issues.apache.org/jira/browse/OOZIE-2953
OOZIE-2952  Fix Findbugs warnings in oozie-sharelib-oozie
https://issues.apache.org/jira/browse/OOZIE-2952
OOZIE-2949  Escape quotes whitespaces in Sqoop  field
https://issues.apache.org/jira/browse/OOZIE-2949
OOZIE-2942  Fix Findbugs warnings in oozie-examples
https://issues.apache.org/jira/browse/OOZIE-2942
OOZIE-2937  Remove redundant groupId from the child pom's
https://issues.apache.org/jira/browse/OOZIE-2937
OOZIE-2934  Fix "Exceptional return value of java.io.File.mkdirs() ignored" 
Findbugs error in oozie-sharelib-spark
https://issues.apache.org/jira/browse/OOZIE-2934
OOZIE-2927  Append new line character for Hive2 query using query tag
https://issues.apache.org/jira/browse/OOZIE-2927
OOZIE-2914  Consolidate Trim 
https://issues.apache.org/jira/browse/OOZIE-2914
OOZIE-2883  OOZIE throw the error "Missing 
[oozie.service.ProxyUserService.proxyuser.oozie.service.ProxyUserService.proxyuser.mr.groups]
 property"
https://issues.apache.org/jira/browse/OOZIE-2883
OOZIE-2877  Oozie Git Action
https://issues.apache.org/jira/browse/OOZIE-2877
OOZIE-2867  Timezone handling for Coordinators: emphasize "Continent/City" 
format
https://issues.apache.org/jira/browse/OOZIE-2867
OOZIE-2834  ParameterVerifier logging non-useful warning for workflow definition
https://issues.apache.org/jira/browse/OOZIE-2834
OOZIE-2833  when using uber mode the regex pattern used in the 
extractHeapSizeMB method does not allow heap sizes specified in bytes.
https://issues.apache.org/jira/browse/OOZIE-2833
OOZIE-2829  Improve sharelib upload to accept multiple source folders
https://issues.apache.org/jira/browse/OOZIE-2829
OOZIE-2826  Falcon feed fails to aws s3; Oozie joda time version does not meet 
required jar version 2.2 or later
https://issues.apache.org/jira/browse/OOZIE-2826
OOZIE-2812  SparkConfigurationService should support loading configurations 
from multiple Spark versions
https://issues.apache.org/jira/browse/OOZIE-2812
OOZIE-2795  Create lib directory or symlink for Oozie CLI during packaging
https://issues.apache.org/jira/browse/OOZIE-2795
OOZIE-2791  ShareLib installation may fail on busy Hadoop clusters
https://issues.apache.org/jira/browse/OOZIE-2791
OOZIE-2784  Include WEEK as a parameter in the Coordinator Expression Language 
Evaulator
https://issues.apache.org/jira/browse/OOZIE-2784
OOZIE-2779  Mask Hive2 action Beeline JDBC password
https://issues.apache.org/jira