[jira] [Commented] (OOZIE-1581) Workflow performance optimizations

2014-08-25 Thread Shwetha G S (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1581?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14108996#comment-14108996
 ] 

Shwetha G S commented on OOZIE-1581:


In SignalXCommand:
{code}
// Changing to synchronous call from asynchronous queuing to prevent
// undue delay from between end of previous and start of next action
if (wfJob.getStatus() != WorkflowJob.Status.RUNNING
 wfJob.getStatus() != WorkflowJob.Status.SUSPENDED) {
// only for asynchronous actions, parent coord action's external id 
will
// persisted and following update will succeed.
updateParentIfNecessary(wfJob);
new WfEndXCommand(wfJob).call(); // To delete the WF temp dir
}
{code}
[~chitnis], why is there check on status while updating parent?

For the usecase where coord action and the workflow is killed, a re-run of the 
workflow moves the status to running, but coord action remains in killed state 
because of this?

 Workflow performance optimizations
 --

 Key: OOZIE-1581
 URL: https://issues.apache.org/jira/browse/OOZIE-1581
 Project: Oozie
  Issue Type: Improvement
  Components: workflow
Affects Versions: trunk
Reporter: Mona Chitnis
Assignee: Mona Chitnis
 Fix For: 4.1.0

 Attachments: OOZIE-1581-2.patch, OOZIE-1581-final.patch, 
 OOZIE-1581-r6.patch, OOZIE-1581-r6.patch, OOZIE-1581-r7.patch, 
 OOZIE-1581.patch


 Creating a combo JIRA for small performance optimizations.
 1. changing from asynchronous action start to a synchronous one, to overcome 
 the undue delay in transitioning from ::start:: control node to the actual 
 first node, owing to a loaded queue. This delay has been observed to be close 
 to 30 min at times in stress conditions.



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


Review Request 25041: OOZIE-1457: Create a Hive Server 2 action

2014-08-25 Thread Robert Kanter

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

Review request for oozie.


Bugs: OOZIE-1457
https://issues.apache.org/jira/browse/OOZIE-1457


Repository: oozie-git


Description
---

See https://issues.apache.org/jira/browse/OOZIE-1457


Diffs
-

  client/src/main/java/org/apache/oozie/cli/OozieCLI.java 33935d3 
  client/src/main/resources/hiveserver2-action-0.1.xsd PRE-CREATION 
  core/pom.xml 5b2eedc 
  core/src/main/conf/oozie-site.xml 32f87f5 
  core/src/main/java/org/apache/oozie/action/hadoop/Hive2Credentials.java 
PRE-CREATION 
  
core/src/main/java/org/apache/oozie/action/hadoop/HiveServer2ActionExecutor.java
 PRE-CREATION 
  core/src/test/java/org/apache/oozie/test/XTestCase.java f48fff2 
  core/src/test/java/org/apache/oozie/test/hive/AbstractHiveService.java 
PRE-CREATION 
  core/src/test/java/org/apache/oozie/test/hive/MiniHS2.java PRE-CREATION 
  docs/src/site/twiki/DG_HiveServer2ActionExtension.twiki PRE-CREATION 
  docs/src/site/twiki/DG_UnifiedCredentialsModule.twiki 7c52970 
  docs/src/site/twiki/index.twiki f078bf5 
  pom.xml 835ec19 
  sharelib/hive2/pom.xml PRE-CREATION 
  
sharelib/hive2/src/main/java/org/apache/oozie/action/hadoop/HiveServer2Main.java
 PRE-CREATION 
  
sharelib/hive2/src/test/java/org/apache/oozie/action/hadoop/TestHiveServer2ActionExecutor.java
 PRE-CREATION 
  sharelib/pom.xml 1d6e4bd 
  src/main/assemblies/sharelib.xml 891d9dc 
  webapp/pom.xml ec6d836 

Diff: https://reviews.apache.org/r/25041/diff/


Testing
---

TestHiveServer2ActionExecutor will fail against Hadoop 1 until we update to 
Hadoop 1.2.1; though I've tested it and it should pass once we do.  I've also 
tested the action in an actual cluster.  


Thanks,

Robert Kanter



[jira] [Updated] (OOZIE-1457) Create a Hive Server 2 action

2014-08-25 Thread Robert Kanter (JIRA)

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

Robert Kanter updated OOZIE-1457:
-

Attachment: OOZIE-1457.patch

I've attached the patch and posted it on 
[ReviewBoard|https://reviews.apache.org/r/25041/] too.  
TestHiveServer2ActionExecutor will fail against Hadoop 1 until we update to 
Hadoop 1.2.1; though I've tested it and it should pass once we do.  I've also 
tested the action in an actual cluster.  


 Create a Hive Server 2 action
 -

 Key: OOZIE-1457
 URL: https://issues.apache.org/jira/browse/OOZIE-1457
 Project: Oozie
  Issue Type: New Feature
  Components: action
Affects Versions: trunk
Reporter: Robert Kanter
Assignee: Robert Kanter
Priority: Minor
 Attachments: OOZIE-1457.patch


 We should update the Hive action to support Hive Server 2 (Beeline); we'll 
 also need to add a new {{Credentials}} implementation to get the delegation 
 token (unlike the Hive Metastore, the existing {{HCatCredentials}} cannot be 
 reused for Hive Server 2 because of the JDBC connection).  We may need to 
 bump up the Hive version to support this.  
 We should create a Hive Server 2 action that uses Beeline to connect to 
 Hive Server 2.  We'll also need to add a new {{Credentials}} implementation 
 to get the delegation token (unlike the Hive Metastore, the existing 
 {{HCatCredentials}} cannot be reused for Hive Server 2 because of the JDBC 
 connection).  
 This will definitely work with Hive 0.13 (which hasn't been released) but may 
 also work with Hive 0.12, though probably not with Kerberos.  I believe the 
 delegation token work required isn't in Hive 0.12.  



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


[jira] [Updated] (OOZIE-1457) Create a Hive Server 2 action

2014-08-25 Thread Robert Kanter (JIRA)

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

Robert Kanter updated OOZIE-1457:
-

Attachment: OOZIE-1457.patch

Minor change to the patch; forgot to fix some imports.

 Create a Hive Server 2 action
 -

 Key: OOZIE-1457
 URL: https://issues.apache.org/jira/browse/OOZIE-1457
 Project: Oozie
  Issue Type: New Feature
  Components: action
Affects Versions: trunk
Reporter: Robert Kanter
Assignee: Robert Kanter
Priority: Minor
 Attachments: OOZIE-1457.patch, OOZIE-1457.patch


 We should update the Hive action to support Hive Server 2 (Beeline); we'll 
 also need to add a new {{Credentials}} implementation to get the delegation 
 token (unlike the Hive Metastore, the existing {{HCatCredentials}} cannot be 
 reused for Hive Server 2 because of the JDBC connection).  We may need to 
 bump up the Hive version to support this.  
 We should create a Hive Server 2 action that uses Beeline to connect to 
 Hive Server 2.  We'll also need to add a new {{Credentials}} implementation 
 to get the delegation token (unlike the Hive Metastore, the existing 
 {{HCatCredentials}} cannot be reused for Hive Server 2 because of the JDBC 
 connection).  
 This will definitely work with Hive 0.13 (which hasn't been released) but may 
 also work with Hive 0.12, though probably not with Kerberos.  I believe the 
 delegation token work required isn't in Hive 0.12.  



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


Re: Review Request 25041: OOZIE-1457: Create a Hive Server 2 action

2014-08-25 Thread Robert Kanter

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

(Updated Aug. 25, 2014, 10:57 p.m.)


Review request for oozie.


Changes
---

Minor change to the patch; forgot to fix some imports.


Bugs: OOZIE-1457
https://issues.apache.org/jira/browse/OOZIE-1457


Repository: oozie-git


Description
---

See https://issues.apache.org/jira/browse/OOZIE-1457


Diffs (updated)
-

  client/src/main/java/org/apache/oozie/cli/OozieCLI.java 33935d3 
  client/src/main/resources/hiveserver2-action-0.1.xsd PRE-CREATION 
  core/pom.xml 5b2eedc 
  core/src/main/conf/oozie-site.xml 32f87f5 
  core/src/main/java/org/apache/oozie/action/hadoop/Hive2Credentials.java 
PRE-CREATION 
  
core/src/main/java/org/apache/oozie/action/hadoop/HiveServer2ActionExecutor.java
 PRE-CREATION 
  core/src/test/java/org/apache/oozie/test/XTestCase.java f48fff2 
  core/src/test/java/org/apache/oozie/test/hive/AbstractHiveService.java 
PRE-CREATION 
  core/src/test/java/org/apache/oozie/test/hive/MiniHS2.java PRE-CREATION 
  docs/src/site/twiki/DG_HiveServer2ActionExtension.twiki PRE-CREATION 
  docs/src/site/twiki/DG_UnifiedCredentialsModule.twiki 7c52970 
  docs/src/site/twiki/index.twiki f078bf5 
  pom.xml 835ec19 
  sharelib/hive2/pom.xml PRE-CREATION 
  
sharelib/hive2/src/main/java/org/apache/oozie/action/hadoop/HiveServer2Main.java
 PRE-CREATION 
  
sharelib/hive2/src/test/java/org/apache/oozie/action/hadoop/TestHiveServer2ActionExecutor.java
 PRE-CREATION 
  sharelib/pom.xml 1d6e4bd 
  src/main/assemblies/sharelib.xml 891d9dc 
  webapp/pom.xml ec6d836 

Diff: https://reviews.apache.org/r/25041/diff/


Testing
---

TestHiveServer2ActionExecutor will fail against Hadoop 1 until we update to 
Hadoop 1.2.1; though I've tested it and it should pass once we do.  I've also 
tested the action in an actual cluster.  


Thanks,

Robert Kanter



Build failed in Jenkins: oozie-trunk-precommit-build #1678

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1678/

--
[...truncated 8622 lines...]
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources 

Build failed in Jenkins: oozie-trunk-precommit-build #1677

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1677/

--
[...truncated 8832 lines...]
[INFO] Building tar : 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target/oozie-sharelib-4.2.0-SNAPSHOT.tar.gz
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 

[jira] [Updated] (OOZIE-1457) Create a Hive Server 2 action

2014-08-25 Thread Robert Kanter (JIRA)

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

Robert Kanter updated OOZIE-1457:
-

Attachment: OOZIE-1457.patch

The new patch gets rid of the tab.  The javac warnings are actually maven 
warnings and are expected.

I'm not sure why it says the patch doesn't compile for the tests when earlier 
it said that the HEAD and patch compile.  Plus the console output says it was 
successful and some of the tests did run.  Perhaps this is due to the recent 
problems with the build machines.

 Create a Hive Server 2 action
 -

 Key: OOZIE-1457
 URL: https://issues.apache.org/jira/browse/OOZIE-1457
 Project: Oozie
  Issue Type: New Feature
  Components: action
Affects Versions: trunk
Reporter: Robert Kanter
Assignee: Robert Kanter
Priority: Minor
 Attachments: OOZIE-1457.patch, OOZIE-1457.patch, OOZIE-1457.patch


 We should update the Hive action to support Hive Server 2 (Beeline); we'll 
 also need to add a new {{Credentials}} implementation to get the delegation 
 token (unlike the Hive Metastore, the existing {{HCatCredentials}} cannot be 
 reused for Hive Server 2 because of the JDBC connection).  We may need to 
 bump up the Hive version to support this.  
 We should create a Hive Server 2 action that uses Beeline to connect to 
 Hive Server 2.  We'll also need to add a new {{Credentials}} implementation 
 to get the delegation token (unlike the Hive Metastore, the existing 
 {{HCatCredentials}} cannot be reused for Hive Server 2 because of the JDBC 
 connection).  
 This will definitely work with Hive 0.13 (which hasn't been released) but may 
 also work with Hive 0.12, though probably not with Kerberos.  I believe the 
 delegation token work required isn't in Hive 0.12.  



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


Build failed in Jenkins: oozie-trunk-precommit-build #1680

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1680/

--
[...truncated 2776 lines...]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 7 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie WorkflowGenerator 4.2.0-SNAPSHOT
[INFO] 
Downloading: 
http://gwt-links.googlecode.com/svn/repository/com/orange/links/gwt-links/1.3-SNAPSHOT/maven-metadata.xml
Downloading: 
https://repository.apache.org/content/groups/snapshots/com/orange/links/gwt-links/1.3-SNAPSHOT/maven-metadata.xml


Downloading: 
https://repository.apache.org/content/groups/snapshots/com/orange/links/gwt-links-parent/1.3-SNAPSHOT/maven-metadata.xml
Downloading: 
http://gwt-links.googlecode.com/svn/repository/com/orange/links/gwt-links-parent/1.3-SNAPSHOT/maven-metadata.xml
605/605 B   
   

[jira] [Updated] (OOZIE-1940) StatusTransitService has race condition

2014-08-25 Thread Purshotam Shah (JIRA)

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

Purshotam Shah updated OOZIE-1940:
--

Attachment: OOZIE-1940-V1.patch

 StatusTransitService has race condition
 ---

 Key: OOZIE-1940
 URL: https://issues.apache.org/jira/browse/OOZIE-1940
 Project: Oozie
  Issue Type: Bug
Reporter: Purshotam Shah
 Attachments: OOZIE-1940-V1.patch


 StatusTransitService doesn't acquire lock while updating DB. 
 We noticed one such issue while doing HA testing, thanks to [~mchiang]
 We issue a change command to change pause time, which got executed on one 
 server. While change command was running on one server, other server started 
 executing StatusTransitService.
 Server 1 log
 {code}
 2014-07-16 17:28:05,268  INFO StatusTransitService$StatusTransitRunnable:539 
 [pool-1-thread-13] - USER[-] GROUP[-] Acquired lock for 
 [org.apache.oozie.service.StatusTransitService]
 2014-07-16 17:28:09,694  INFO StatusTransitService$StatusTransitRunnable:539 
 [pool-1-thread-13] - USER[-] GROUP[-] Set coordinator job 
 [0011385-140716042555-oozie-oozi-C] status to 'SUCCEEDED' from 'RUNNING' 
 2014-07-16 17:28:15,416  INFO StatusTransitService$StatusTransitRunnable:539 
 [pool-1-thread-13] - USER[-] GROUP[-] Released lock for 
 [org.apache.oozie.service.StatusTransitService]
 {code}
 Server 2 log
 {code}
 2014-07-16 17:28:06,499 DEBUG CoordChangeXCommand:545 [http-0.0.0.0-4443-5] - 
 USER[hadoopqa] GROUP[users] TOKEN[] APP[coordB180] 
 JOB[0011385-140716042555-oozie-oozi-C] ACTION[-] New pause/end date is : Wed 
 Jul 16 17:30:00 UTC 2014 and last action number is : 3
 2014-07-16 17:28:06,508  INFO CoordChangeXCommand:539 [http-0.0.0.0-4443-5] - 
 USER[hadoopqa] GROUP[users] TOKEN[] APP[coordB180] 
 JOB[0011385-140716042555-oozie-oozi-C] ACTION[-] ENDED CoordChangeXCommand 
 for jobId=0011385-140716042555-oozie-oozi-C
 {code}
 CoordMaterializeTransitionXCommand has created all actions( few were in 
 waiting and few were in running state) and set doneMaterialization to true.
 Change command deletes all waiting coords, except 3 running/SUCCEEDED action 
 and reset doneMaterialization.
 StatusTransitService first loads a set of pending jobs and for each job it 
 make DB calls to check coord action status. Coord jobs are loaded only once 
 in beginning.
 This is what happened.
 1.StatusTransitService loads the coord job which doneMaterialization is set 
 to true at 17:28:05,268 (server 1)
 2.Change command deletes waiting cation and reset  doneMaterialization at  
 17:28:06,508 (server 2)
 3.StatusTransitService load actions for job, only 3 and in SUCCEEDED status. 
 It never reload the doneMaterialization at 17:28:09,694 (server 1)
 StatusTransitService overrides set job status to SUCCEEDED, bcz it's 
 doneMaterialization and all action are SUCCEEDED.



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


[jira] [Updated] (OOZIE-1940) StatusTransitService has race condition

2014-08-25 Thread Purshotam Shah (JIRA)

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

Purshotam Shah updated OOZIE-1940:
--

Attachment: (was: OOZIE-1940-V1.patch)

 StatusTransitService has race condition
 ---

 Key: OOZIE-1940
 URL: https://issues.apache.org/jira/browse/OOZIE-1940
 Project: Oozie
  Issue Type: Bug
Reporter: Purshotam Shah

 StatusTransitService doesn't acquire lock while updating DB. 
 We noticed one such issue while doing HA testing, thanks to [~mchiang]
 We issue a change command to change pause time, which got executed on one 
 server. While change command was running on one server, other server started 
 executing StatusTransitService.
 Server 1 log
 {code}
 2014-07-16 17:28:05,268  INFO StatusTransitService$StatusTransitRunnable:539 
 [pool-1-thread-13] - USER[-] GROUP[-] Acquired lock for 
 [org.apache.oozie.service.StatusTransitService]
 2014-07-16 17:28:09,694  INFO StatusTransitService$StatusTransitRunnable:539 
 [pool-1-thread-13] - USER[-] GROUP[-] Set coordinator job 
 [0011385-140716042555-oozie-oozi-C] status to 'SUCCEEDED' from 'RUNNING' 
 2014-07-16 17:28:15,416  INFO StatusTransitService$StatusTransitRunnable:539 
 [pool-1-thread-13] - USER[-] GROUP[-] Released lock for 
 [org.apache.oozie.service.StatusTransitService]
 {code}
 Server 2 log
 {code}
 2014-07-16 17:28:06,499 DEBUG CoordChangeXCommand:545 [http-0.0.0.0-4443-5] - 
 USER[hadoopqa] GROUP[users] TOKEN[] APP[coordB180] 
 JOB[0011385-140716042555-oozie-oozi-C] ACTION[-] New pause/end date is : Wed 
 Jul 16 17:30:00 UTC 2014 and last action number is : 3
 2014-07-16 17:28:06,508  INFO CoordChangeXCommand:539 [http-0.0.0.0-4443-5] - 
 USER[hadoopqa] GROUP[users] TOKEN[] APP[coordB180] 
 JOB[0011385-140716042555-oozie-oozi-C] ACTION[-] ENDED CoordChangeXCommand 
 for jobId=0011385-140716042555-oozie-oozi-C
 {code}
 CoordMaterializeTransitionXCommand has created all actions( few were in 
 waiting and few were in running state) and set doneMaterialization to true.
 Change command deletes all waiting coords, except 3 running/SUCCEEDED action 
 and reset doneMaterialization.
 StatusTransitService first loads a set of pending jobs and for each job it 
 make DB calls to check coord action status. Coord jobs are loaded only once 
 in beginning.
 This is what happened.
 1.StatusTransitService loads the coord job which doneMaterialization is set 
 to true at 17:28:05,268 (server 1)
 2.Change command deletes waiting cation and reset  doneMaterialization at  
 17:28:06,508 (server 2)
 3.StatusTransitService load actions for job, only 3 and in SUCCEEDED status. 
 It never reload the doneMaterialization at 17:28:09,694 (server 1)
 StatusTransitService overrides set job status to SUCCEEDED, bcz it's 
 doneMaterialization and all action are SUCCEEDED.



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


[jira] [Commented] (OOZIE-1950) Coordinator job info should support timestamp (nominal time)

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1950?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110061#comment-14110061
 ] 

Hadoop QA commented on OOZIE-1950:
--

Testing JIRA OOZIE-1950

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 3 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:green}+1 DISTRO{color}
.{color:green}+1{color} distro tarball builds with the patch 


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


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

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

 Coordinator job info should support timestamp (nominal time)
 

 Key: OOZIE-1950
 URL: https://issues.apache.org/jira/browse/OOZIE-1950
 Project: Oozie
  Issue Type: Bug
Reporter: Purshotam Shah
Assignee: Shwetha G S
 Fix For: 4.1.0

 Attachments: OOZIE-1950-v2.patch, OOZIE-1950-v3.patch, 
 OOZIE-1950-v4.patch, OOZIE-1950-v4.patch, OOZIE-1950.patch


 It will be useful for user to list all actions (with length and offset) 
 after/before nominal time.



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


Review Request 24948: OOZIE-1940 StatusTransitService has race condition

2014-08-25 Thread Purshotam Shah

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

Review request for oozie.


Bugs: OOZIE-1940
https://issues.apache.org/jira/browse/OOZIE-1940


Repository: oozie-git


Description
---

StatusTransitService has race condition


Diffs
-

  core/src/main/java/org/apache/oozie/BundleActionBean.java 5d85a4d 
  core/src/main/java/org/apache/oozie/BundleJobBean.java 0f1670a 
  core/src/main/java/org/apache/oozie/CoordinatorActionBean.java 795bf63 
  core/src/main/java/org/apache/oozie/CoordinatorJobBean.java 8fd53f1 
  core/src/main/java/org/apache/oozie/ErrorCode.java 88a2c67 
  core/src/main/java/org/apache/oozie/command/StatusTransitXCommand.java 
e69de29 
  
core/src/main/java/org/apache/oozie/command/bundle/BundleStatusTransitXCommand.java
 e69de29 
  
core/src/main/java/org/apache/oozie/command/coord/CoordStatusTransitXCommand.java
 e69de29 
  core/src/main/java/org/apache/oozie/executor/jpa/BundleJobQueryExecutor.java 
36cd968 
  
core/src/main/java/org/apache/oozie/executor/jpa/CoordActionQueryExecutor.java 
3008393 
  core/src/main/java/org/apache/oozie/executor/jpa/CoordJobQueryExecutor.java 
04e6e29 
  core/src/main/java/org/apache/oozie/service/StatusTransitService.java 21ac25f 
  core/src/test/java/org/apache/oozie/service/TestStatusTransitService.java 
bb99138 

Diff: https://reviews.apache.org/r/24948/diff/


Testing
---

UTC


Thanks,

Purshotam Shah



[jira] [Updated] (OOZIE-1979) RecoveryService should not pick waiting coord action unless nominal time is reached

2014-08-25 Thread Purshotam Shah (JIRA)

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

Purshotam Shah updated OOZIE-1979:
--

Description: More detail @https://issues.apache.org/jira/browse/OOZIE-1819

 RecoveryService should not pick waiting coord action unless nominal time is 
 reached
 ---

 Key: OOZIE-1979
 URL: https://issues.apache.org/jira/browse/OOZIE-1979
 Project: Oozie
  Issue Type: Bug
Reporter: Purshotam Shah

 More detail @https://issues.apache.org/jira/browse/OOZIE-1819



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


[jira] [Commented] (OOZIE-1945) NPE in JaveActionExecutor#check()

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1945?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110072#comment-14110072
 ] 

Hadoop QA commented on OOZIE-1945:
--

Testing JIRA OOZIE-1945

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:red}-1{color} the patch does not add/modify any testcase
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.{color:red}-1{color} HEAD does not compile
.{color:red}-1{color} patch does not compile
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:red}-1 DISTRO{color}
.{color:red}-1{color} distro tarball fails with the patch


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


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

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

 NPE in JaveActionExecutor#check()
 -

 Key: OOZIE-1945
 URL: https://issues.apache.org/jira/browse/OOZIE-1945
 Project: Oozie
  Issue Type: Bug
Affects Versions: trunk
Reporter: Mona Chitnis
Priority: Trivial
 Fix For: trunk, 4.1.0

 Attachments: OOZIE-1945-patch.3, oozie-1945-patch-2, 
 oozie-1945.patch.1


 in method check()
 {code}
  String errorCode = props.getProperty(error.code);
 if (errorCode.equals(0)) {
 errorCode = JA018;
 }
 if (errorCode.equals(-1)) {
 errorCode = JA019;
 }
 errorReason = props.getProperty(error.reason);
 {code}
 if error.code is null, these leads to NPEs
 easy fix
 {code}
 if (0.equals(errorCode))
 ...
 {code}



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


[jira] [Created] (OOZIE-1979) RecoveryService should not pick waiting coord action unless nominal time is reached

2014-08-25 Thread Purshotam Shah (JIRA)
Purshotam Shah created OOZIE-1979:
-

 Summary: RecoveryService should not pick waiting coord action 
unless nominal time is reached
 Key: OOZIE-1979
 URL: https://issues.apache.org/jira/browse/OOZIE-1979
 Project: Oozie
  Issue Type: Bug
Reporter: Purshotam Shah






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


[jira] [Commented] (OOZIE-1599) Cache the list of available timezones from the admin servlet

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1599?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110086#comment-14110086
 ] 

Hadoop QA commented on OOZIE-1599:
--

Testing JIRA OOZIE-1599

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:red}-1{color} the patch does not add/modify any testcase
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:green}+1 DISTRO{color}
.{color:green}+1{color} distro tarball builds with the patch 


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


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

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

 Cache the list of available timezones from the admin servlet
 

 Key: OOZIE-1599
 URL: https://issues.apache.org/jira/browse/OOZIE-1599
 Project: Oozie
  Issue Type: Improvement
Affects Versions: trunk
Reporter: Robert Kanter
  Labels: newbie
 Fix For: trunk

 Attachments: OOZIE-1599-patch-1


 The admin servlet has a call that returns a list of available timezones.  On 
 startup, it prepares a list of GMT offsets (e.g. GMT-12:00, GMT-11:00, 
 etc), which is only generated once.  But the rest of the timezones (e.g. 
 America/Los_Angeles, etc) are processed from {{TimeZone}} every time the 
 admin servlet is asked for the list.  
 We should refactor this to generate/process the entire list either the first 
 time its called or at startup and then simply return the {{JSONArray}} when 
 the admin servlet is asked for the list.  



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


[jira] [Commented] (OOZIE-1954) Add a way for the MapReduce action to be configured by Java code

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1954?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110095#comment-14110095
 ] 

Hadoop QA commented on OOZIE-1954:
--

Testing JIRA OOZIE-1954

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 4 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.{color:red}-1{color} HEAD does not compile
.{color:red}-1{color} patch does not compile
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:red}-1 DISTRO{color}
.{color:red}-1{color} distro tarball fails with the patch


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


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

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

 Add a way for the MapReduce action to be configured by Java code
 

 Key: OOZIE-1954
 URL: https://issues.apache.org/jira/browse/OOZIE-1954
 Project: Oozie
  Issue Type: New Feature
Affects Versions: trunk
Reporter: Robert Kanter
Assignee: Robert Kanter
 Attachments: OOZIE-1954.patch


 With certain other components (e.g. Avro, HFileOutputFormat (HBase), etc), it 
 becomes impractical to use the MapReduce action and users must instead use 
 the Java action. The problem is that these components require a lot of extra 
 configuration that is often hidden from the user in Java code (e.g. 
 HFileOutputFormat.configureIncrementalLoad(job, table); which can also 
 include decision logic, serialization, and other things that we can't do in 
 an XML file directly.
 One way to solve this problem is to allow the user to give the MR action some 
 Java code that would do this configuration, similar to how we allow the 
 {{job-xml}} field to specify an external XML file of configuration 
 properties.
 In more detail, we could have an interface; something like this:
 {code}
 public interface OozieActionConfigurator {
  public void updateOozieActionConfiguration(Configuration conf);
 }
 {code}
 that the user can implement, create a jar, and include with their MR action 
 (i.e. add a {{config-class}} field that let's them specify the class 
 name). To protect the Oozie server from running user code (which could do 
 anything it wants really), it would have to be run in the Launcher Job. The 
 Launcher Job could call this method after it loads the configuration prepared 
 by the Oozie server.
 Another thing this will be helpful is with users who use the Java action to 
 launch MR jobs and expect a bunch of things to be done for them that are not 
 (e.g. delegation token propagation, config loading, returning the hadoop job 
 to Oozie, etc). These are all done with the MR action, so the more users we 
 can move to the MR action from the Java action, the less they'll run into 
 these difficulties.
 Some of this may change slightly as I try to actually implement this (e.g. 
 have to handle throwing exceptions etc).  And one thing I may do is keep this 
 general enough that it should be compatible with all action types in case we 
 want to add this to any of them in the future; though for now, the schema 
 would only accept it for the MapReduce action.



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


[jira] Subscription: Oozie Patch Available

2014-08-25 Thread jira
Issue Subscription
Filter: Oozie Patch Available (48 issues)

Subscriber: ooziedaily

Key Summary
OOZIE-1977  Display patch analysis issues
https://issues.apache.org/jira/browse/OOZIE-1977
OOZIE-1966  Fix Headers in java code
https://issues.apache.org/jira/browse/OOZIE-1966
OOZIE-1957  Coord update command override group when 
oozie.service.AuthorizationService.default.group.as.acl is set and group/acl is 
not configured in job property
https://issues.apache.org/jira/browse/OOZIE-1957
OOZIE-1954  Add a way for the MapReduce action to be configured by Java code
https://issues.apache.org/jira/browse/OOZIE-1954
OOZIE-1950  Coordinator job info should support timestamp (nominal time)
https://issues.apache.org/jira/browse/OOZIE-1950
OOZIE-1945  NPE in JaveActionExecutor#check()
https://issues.apache.org/jira/browse/OOZIE-1945
OOZIE-1941  Bundle coordinator name can't not be parameterized
https://issues.apache.org/jira/browse/OOZIE-1941
OOZIE-1932  Services should load CallableQueueService after MemoryLocksService
https://issues.apache.org/jira/browse/OOZIE-1932
OOZIE-1927  Use StoreStatusFilter for WorkflowsJobGetJPAExecutor 
https://issues.apache.org/jira/browse/OOZIE-1927
OOZIE-1923  ZKLocksService locks are not re-entrant like MemoryLocks
https://issues.apache.org/jira/browse/OOZIE-1923
OOZIE-1922  MemoryLocksService fails if lock is acquired multiple times in same 
thread and released
https://issues.apache.org/jira/browse/OOZIE-1922
OOZIE-1918  ActionXCommand refactoring for code reuse
https://issues.apache.org/jira/browse/OOZIE-1918
OOZIE-1914  CLI should retry on timeout
https://issues.apache.org/jira/browse/OOZIE-1914
OOZIE-1890  Make oozie-site empty and reconcile defaults between oozie-default 
and the code
https://issues.apache.org/jira/browse/OOZIE-1890
OOZIE-1889  Convert NamedNativeQueries to JPQL
https://issues.apache.org/jira/browse/OOZIE-1889
OOZIE-1884  ZKJobsConcurrencyService.checkJobIdForServer fails if jobs length  
7
https://issues.apache.org/jira/browse/OOZIE-1884
OOZIE-1876  use pom properties rather than specific version numbers in the pom 
files of hbaselibs, hcataloglibs, sharelib, etc 
https://issues.apache.org/jira/browse/OOZIE-1876
OOZIE-1860  Oozie job mapper launch fails due to null value returned from 
action file
https://issues.apache.org/jira/browse/OOZIE-1860
OOZIE-1855  TestPriorityDelayQueue#testPoll failed intermittently in Jenkins
https://issues.apache.org/jira/browse/OOZIE-1855
OOZIE-1847  HA - Oozie servers should shutdown (or go in safe mode) in case of 
ZK failure
https://issues.apache.org/jira/browse/OOZIE-1847
OOZIE-1830  Change hadoop-1 profile to use 1.2.1
https://issues.apache.org/jira/browse/OOZIE-1830
OOZIE-1829  URIHandlerService doesn't support URI schemes with query strings 
but no path segment
https://issues.apache.org/jira/browse/OOZIE-1829
OOZIE-1816  LogInfo uses action name instead of id
https://issues.apache.org/jira/browse/OOZIE-1816
OOZIE-1813  Add service to report/kill rogue bundles and coordinator jobs
https://issues.apache.org/jira/browse/OOZIE-1813
OOZIE-1810  Workflow cannot get into Failed state when kill control node cannot 
resolve variable in message 
https://issues.apache.org/jira/browse/OOZIE-1810
OOZIE-1803  Improvement in Purge service
https://issues.apache.org/jira/browse/OOZIE-1803
OOZIE-1802  Support workflow action log
https://issues.apache.org/jira/browse/OOZIE-1802
OOZIE-1793  Improve find bugs reporting for Oozie
https://issues.apache.org/jira/browse/OOZIE-1793
OOZIE-1782  Workflow path not found is thrown as SC_UNAUTHORIZED
https://issues.apache.org/jira/browse/OOZIE-1782
OOZIE-1779  Add parent-id as a filter option
https://issues.apache.org/jira/browse/OOZIE-1779
OOZIE-1705  Enable gc logs and print thread id in logs
https://issues.apache.org/jira/browse/OOZIE-1705
OOZIE-1688  New configuration to specify server-server authentication type.
https://issues.apache.org/jira/browse/OOZIE-1688
OOZIE-1676  Instrumentation and Configuration over the REST API and Web UI 
should include all Oozie servers
https://issues.apache.org/jira/browse/OOZIE-1676
OOZIE-1654  Fix typo (inteval to interval)
https://issues.apache.org/jira/browse/OOZIE-1654
OOZIE-1653  Support ALL to allowed error code of the user retry
https://issues.apache.org/jira/browse/OOZIE-1653
OOZIE-1638  Action retry does not use default retry max count.
https://issues.apache.org/jira/browse/OOZIE-1638
OOZIE-1636  OOZIE_SYS table engine should be innodb
https://issues.apache.org/jira/browse/OOZIE-1636
OOZIE-1624  Exclusion pattern 

[jira] [Updated] (OOZIE-1677) Add Oozie servers to instrumentation info

2014-08-25 Thread Robert Kanter (JIRA)

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

Robert Kanter updated OOZIE-1677:
-

Attachment: OOZIE-1677.patch

The new patch is rebased on the latest trunk; there were some minor test 
conflicts I had to resolve too.  Otherwise, it's the same as before.

 Add Oozie servers to instrumentation info
 -

 Key: OOZIE-1677
 URL: https://issues.apache.org/jira/browse/OOZIE-1677
 Project: Oozie
  Issue Type: Improvement
  Components: HA
Affects Versions: trunk
Reporter: Robert Kanter
Assignee: Robert Kanter
Priority: Minor
 Attachments: OOZIE-1677.patch, OOZIE-1677.patch


 It could be useful to add the list of Oozie servers (particularly when HA is 
 enabled) to the instrumentation info.



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


[jira] [Commented] (OOZIE-1376) Extending Oozie ACLs like admin groups and proxy users to support both groups and users

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1376?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110106#comment-14110106
 ] 

Hadoop QA commented on OOZIE-1376:
--

Testing JIRA OOZIE-1376

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 2 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.{color:red}-1{color} HEAD does not compile
.{color:red}-1{color} patch does not compile
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:red}-1 DISTRO{color}
.{color:red}-1{color} distro tarball fails with the patch


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


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

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

 Extending Oozie ACLs like admin groups and proxy users to support both groups 
 and users
 ---

 Key: OOZIE-1376
 URL: https://issues.apache.org/jira/browse/OOZIE-1376
 Project: Oozie
  Issue Type: Improvement
  Components: security
Affects Versions: trunk
Reporter: Kai Zheng
Assignee: Kai Zheng
  Labels: Security
 Fix For: trunk

 Attachments: OOZIE-1376.patch


 Currently Oozie relevant ACLs supports only users in some case or only groups 
 in other case, which is not consistent with other components like Hadoop, 
 HBase and Hive. Supporting both users and groups in ACLs can simplify the 
 admin configuration work, and also help implement more advanced access 
 control such as RBAC based on the ACLs scheme. For example RBAC can simply 
 translate role privilege into corresponding ACLs with the users and groups 
 assigned to the role.



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


[jira] [Commented] (OOZIE-1847) HA - Oozie servers should shutdown (or go in safe mode) in case of ZK failure

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1847?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110109#comment-14110109
 ] 

Hadoop QA commented on OOZIE-1847:
--

Testing JIRA OOZIE-1847

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:red}-1{color} the patch does not add/modify any testcase
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:green}+1 DISTRO{color}
.{color:green}+1{color} distro tarball builds with the patch 


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


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

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

 HA - Oozie servers should shutdown (or go in safe mode) in case of ZK failure
 -

 Key: OOZIE-1847
 URL: https://issues.apache.org/jira/browse/OOZIE-1847
 Project: Oozie
  Issue Type: Bug
  Components: HA
Reporter: Purshotam Shah
Assignee: Purshotam Shah
 Attachments: OOZIE-1847-V1.patch






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


[jira] [Commented] (OOZIE-1860) Oozie job mapper launch fails due to null value returned from action file

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1860?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110110#comment-14110110
 ] 

Hadoop QA commented on OOZIE-1860:
--

Testing JIRA OOZIE-1860

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 1 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:green}+1 DISTRO{color}
.{color:green}+1{color} distro tarball builds with the patch 


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


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

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

 Oozie job mapper launch fails due to null value returned from action file
 -

 Key: OOZIE-1860
 URL: https://issues.apache.org/jira/browse/OOZIE-1860
 Project: Oozie
  Issue Type: Bug
Affects Versions: 4.0.1
Reporter: Osadchiy Artem
 Fix For: trunk

 Attachments: OOZIE-1860.patch, action.log, oozie.log


 Certain oozie workflows fail at launch mapper stage when the id retrieved 
 from the recovery action file returns a null value.
 Logs attached below



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


[jira] [Commented] (OOZIE-1855) TestPriorityDelayQueue#testPoll failed intermittently in Jenkins

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1855?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110108#comment-14110108
 ] 

Hadoop QA commented on OOZIE-1855:
--

Testing JIRA OOZIE-1855

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 1 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:green}+1 DISTRO{color}
.{color:green}+1{color} distro tarball builds with the patch 


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


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

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

 TestPriorityDelayQueue#testPoll failed intermittently in Jenkins
 

 Key: OOZIE-1855
 URL: https://issues.apache.org/jira/browse/OOZIE-1855
 Project: Oozie
  Issue Type: Bug
 Environment: Windows
Reporter: Ostap
Assignee: Ostap
 Attachments: BUG-18115.patch


 Test failed with the next error:
 {noformat}
 java.lang.NullPointerException
   at 
 org.apache.oozie.util.TestPriorityDelayQueue.testPoll(TestPriorityDelayQueue.java:167)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
   at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:601)
   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.apache.maven.surefire.junitcore.ClassDemarcatingRunner.run(ClassDemarcatingRunner.java:58)
   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:471)
   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
   at java.util.concurrent.FutureTask.run(FutureTask.java:166)
   at 
 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
   at java.lang.Thread.run(Thread.java:722)
 {noformat}



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


[jira] [Commented] (OOZIE-1653) Support ALL to allowed error code of the user retry

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110117#comment-14110117
 ] 

Hadoop QA commented on OOZIE-1653:
--

Testing JIRA OOZIE-1653

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 1 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:green}+1 DISTRO{color}
.{color:green}+1{color} distro tarball builds with the patch 


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


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

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

 Support ALL to allowed error code of the user retry
 ---

 Key: OOZIE-1653
 URL: https://issues.apache.org/jira/browse/OOZIE-1653
 Project: Oozie
  Issue Type: New Feature
  Components: action
Affects Versions: 4.0.0
Reporter: Azrael
Priority: Minor
 Attachments: OOZIE-1653.1.patch, OOZIE-1653.2.patch, OOZIE-1653.patch


 Action retry for all the errors if ALL is configured.
 oozie-site.xml
 {code:xml}
 nameoozie.service.LiteWorkflowStoreService.user.retry.error.code.ext/name
 valueALL/value
 {code}
 This feature make convenient to set error handle policy.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1714

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1714/

--
[...truncated 2766 lines...]
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-webapp ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Examples 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-examples ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ 
oozie-examples ---
[INFO] Compiling 11 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 7 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- 

Build failed in Jenkins: oozie-trunk-precommit-build #1716

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1716/

--
[...truncated 2788 lines...]
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie WorkflowGenerator 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ 
oozie-workflowgenerator ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-workflowgenerator ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 24 resources to ../../img
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ 
oozie-workflowgenerator ---
[INFO] Compiling 39 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target/oozie-wfgen/WEB-INF/classes
[WARNING] 

[jira] [Commented] (OOZIE-547) build workflow progress information in Oozie

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110128#comment-14110128
 ] 

Hadoop QA commented on OOZIE-547:
-

Testing JIRA OOZIE-547

Cleaning local git workspace



{color:red}-1{color} Patch failed to apply to head of branch



 build workflow progress information in Oozie
 

 Key: OOZIE-547
 URL: https://issues.apache.org/jira/browse/OOZIE-547
 Project: Oozie
  Issue Type: New Feature
Reporter: Hadoop QA
Assignee: zhu jin wei
 Attachments: oozie-547.patch


 For a user, knowing progress of her workflow is always desirable. This ticket 
 is to introduce this support to Oozie.
 I know it's a hard problem. For my initial effort, I plan to start with 
 simple workflows that do not contain decision nodes or fork/join nodes, i.e., 
 chain type workflows. I plan to use percentage of finished actions as the 
 overall wf progress estimate.
 Going forward we can improve the estimation by:
 1) handle general workflows that contain decision, fork/join nodes;
 2) incorporate the action level progress into wf level progress estimation to 
 make the estimate better. To be more specific:
 In the case of opaque actions like pig/hive/jaql where the status can only 
 be 0% or 100% (or failure) we plug that value into the overall DAG status of 
 0-100%. If a DAG had say 4 opaque actions, the progress would move in 
 discrete steps 0, 25, 50, 75, 100%.  For the m/r actions where the JobTracker
 gives values between 0-100% for an action then the overall progress will be 
 smoother. We can do same thing for pig/hive/jaql actions as well if they 
 expose their own progress info.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1721

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1721/

--
Started by remote host 127.0.0.1
Building remotely on H10 (Ubuntu ubuntu) in workspace 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/
  git rev-parse --is-inside-work-tree
Fetching changes from the remote Git repository
  git config remote.origin.url 
  https://git-wip-us.apache.org/repos/asf/oozie.git
Fetching upstream changes from https://git-wip-us.apache.org/repos/asf/oozie.git
  git --version
  git fetch --tags --progress 
  https://git-wip-us.apache.org/repos/asf/oozie.git 
  +refs/heads/*:refs/remotes/origin/*
  git rev-parse origin/master^{commit}
Checking out Revision a26f457380429bcf5f471f97a370bd2b1dca38e0 (origin/master)
  git config core.sparsecheckout
  git checkout -f a26f457380429bcf5f471f97a370bd2b1dca38e0
  git rev-list a26f457380429bcf5f471f97a370bd2b1dca38e0
[oozie-trunk-precommit-build@4] $ /bin/bash /tmp/hudson192128829419818365.sh
rm: cannot remove 'distro/downloads/*': No such file or directory

Testing JIRA OOZIE-1567

  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed

  0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 0
  0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 0
100 782220 782220 0   152k  0 --:--:-- --:--:-- --:--:--  152k
OOZIE-1567 is not Patch Available.  Exiting.

Adding comment to JIRA
Comment added.

test-patch exit code: 1

Build step 'Execute shell' marked build as failure
Archiving artifacts
Sending artifact delta relative to oozie-trunk-precommit-build #1648
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 104 bytes
Compression is 0.0%
Took 0.13 sec
Recording test results


Build failed in Jenkins: oozie-trunk-precommit-build #1718

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1718/

--
[...truncated 2811 lines...]
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie WorkflowGenerator 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ 
oozie-workflowgenerator ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-workflowgenerator ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 24 resources to ../../img
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ 
oozie-workflowgenerator ---
[INFO] Compiling 39 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target/oozie-wfgen/WEB-INF/classes
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[242,30]
 [deprecation] TreeItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[269,30]
 [deprecation] TreeItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[270,26]
 [deprecation] TreeItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[271,14]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[272,14]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[274,18]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 

Build failed in Jenkins: oozie-trunk-precommit-build #1720

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1720/

--
[...truncated 2761 lines...]
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-webapp ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Examples 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-examples ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ 
oozie-examples ---
[INFO] Compiling 11 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 7 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- 

[jira] [Commented] (OOZIE-1567) Provide a wait tool in Oozie

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1567?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110129#comment-14110129
 ] 

Hadoop QA commented on OOZIE-1567:
--

Testing JIRA OOZIE-1567

Cleaning local git workspace

 Provide a wait tool in Oozie
 

 Key: OOZIE-1567
 URL: https://issues.apache.org/jira/browse/OOZIE-1567
 Project: Oozie
  Issue Type: New Feature
  Components: core
Affects Versions: 4.0.0
Reporter: Viji
Assignee: Robert Kanter
Priority: Trivial
 Attachments: OOZIE-1567.patch


 Currently, in situations where a program has to wait to check wether an oozie 
 workflow is successful or not, it is done by constantly pinging the oozie 
 workflow status (that is, manual scripts need to be written). It would be 
 good if Oozie provided a {{oozie wait -jobID JOBID}} or similar.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1719

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1719/

--
[...truncated 2776 lines...]
[INFO] Compiling 11 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 7 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie WorkflowGenerator 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ 
oozie-workflowgenerator ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-workflowgenerator ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] 

Build failed in Jenkins: oozie-trunk-precommit-build #1724

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1724/

--
[...truncated 2761 lines...]
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-webapp ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Examples 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-examples ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ 
oozie-examples ---
[INFO] Compiling 11 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 7 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- 

[jira] [Commented] (OOZIE-1884) ZKJobsConcurrencyService.checkJobIdForServer fails if jobs length 7

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1884?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110136#comment-14110136
 ] 

Hadoop QA commented on OOZIE-1884:
--

Testing JIRA OOZIE-1884

Cleaning local git workspace



{color:red}-1{color} Patch failed to apply to head of branch



 ZKJobsConcurrencyService.checkJobIdForServer fails if jobs length  7
 -

 Key: OOZIE-1884
 URL: https://issues.apache.org/jira/browse/OOZIE-1884
 Project: Oozie
  Issue Type: Bug
Reporter: Purshotam Shah
Assignee: Purshotam Shah
 Attachments: OOZIE-1884-V1.patch






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


[jira] [Commented] (OOZIE-1816) LogInfo uses action name instead of id

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110130#comment-14110130
 ] 

Hadoop QA commented on OOZIE-1816:
--

Testing JIRA OOZIE-1816

Cleaning local git workspace



{color:red}-1{color} Patch failed to apply to head of branch



 LogInfo uses action name instead of id
 --

 Key: OOZIE-1816
 URL: https://issues.apache.org/jira/browse/OOZIE-1816
 Project: Oozie
  Issue Type: Improvement
Affects Versions: 4.0.1
Reporter: Azrael
Priority: Minor
 Attachments: OOZIE-1816.1.patch, OOZIE-1816.2.patch


 LogInfo uses the actionId which contains jobId. 
 If use actionName for the action parameter, it reduce the duplicated info. 
 To enable, set oozie.service.XLogStreamingService.actionname.enable to true.
 oozie-site.xml
 {code:xml}
 property
 nameoozie.service.XLogStreamingService.actionname.enable/name
 valuetrue/value
 description
 If true, log will contain action name at action filter, otherwise 
 actionId.
 /description
 /property
 {code}
 log messages
 {code}
 $ oozie job -log 002-140430134109257-oozie-seoe-W -logfilter loglevel=INFO
 2014-04-30 13:46:27,648  INFO ActionStartXCommand:539 - USER[seoeun] 
 GROUP[user] TOKEN[] APP[test] JOB[002-140430134109257-oozie-seoe-W] 
 ACTION[:start:] Start action [002-140430134109257-oozie-seoe-W@:start:] 
 with user-retry state : userRetryCount [0], userRetryMax [0], 
 userRetryInterval [10]
 2014-04-30 13:46:27,723  INFO ActionStartXCommand:539 - USER[seoeun] 
 GROUP[user] TOKEN[] APP[test] JOB[002-140430134109257-oozie-seoe-W] 
 ACTION[shell-1] Start action [002-140430134109257-oozie-seoe-W@shell-1] 
 with user-retry state : userRetryCount [0], userRetryMax [0], 
 userRetryInterval [10]
 $ oozie job -log 000-140430134109257-oozie-seoe-C -logfilter loglevel=INFO
 2014-04-30 13:46:26,962  INFO CoordActionNotificationXCommand:539 - USER[-] 
 GROUP[-] TOKEN[-] APP[-] JOB[000-140430134109257-oozie-seoe-C] ACTION[1] 
 STARTED Coordinator Notification 
 actionId=000-140430134109257-oozie-seoe-C@1 : WAITING
 2014-04-30 13:46:26,964  INFO CoordActionNotificationXCommand:539 - USER[-] 
 GROUP[-] TOKEN[-] APP[-] JOB[000-140430134109257-oozie-seoe-C] ACTION[1] 
 ENDED Coordinator Notification actionId=000-140430134109257-oozie-seoe-C@1
 2014-04-30 13:46:27,477  INFO CoordActionNotificationXCommand:539 - USER[-] 
 GROUP[-] TOKEN[-] APP[-] JOB[000-140430134109257-oozie-seoe-C] ACTION[2] 
 STARTED Coordinator Notification 
 actionId=000-140430134109257-oozie-seoe-C@2 : WAITING
 2014-04-30 13:46:27,481  INFO CoordActionNotificationXCommand:539 - USER[-] 
 GROUP[-] TOKEN[-] APP[-] JOB[000-140430134109257-oozie-seoe-C] ACTION[2] 
 ENDED Coordinator Notification actionId=000-140430134109257-oozie-seoe-C@2
 {code}



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


[jira] [Commented] (OOZIE-1890) Make oozie-site empty and reconcile defaults between oozie-default and the code

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1890?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110137#comment-14110137
 ] 

Hadoop QA commented on OOZIE-1890:
--

Testing JIRA OOZIE-1890

Cleaning local git workspace



{color:red}-1{color} Patch failed to apply to head of branch



 Make oozie-site empty and reconcile defaults between oozie-default and the 
 code
 ---

 Key: OOZIE-1890
 URL: https://issues.apache.org/jira/browse/OOZIE-1890
 Project: Oozie
  Issue Type: Bug
  Components: core
Reporter: Robert Kanter
Assignee: Azrael
 Attachments: OOZIE-1890.1.patch, OOZIE-1890.2.patch


 As shwetha and puru suggested in OOZIE-1888, oozie-site vs oozie-default is a 
 point of confusion for users.  We've also had issues in the past where 
 they've had different values from each other and/or from the code's default 
 (i.e. {{conf.get(PROP_NAME, DEFAULT_VALUE)}}).
 We should make oozie-default the only source of truth by:
 # Putting all configuration properties in oozie-default.
 # Making oozie-site empty; if the user wants to change a property, they can 
 copy it out of the for-reference oozie-default.
 # Getting rid of the code defaults.  It's easy for these to be out of sync 
 with oozie-default, leading to confusion.  They aren't used anyway because 
 oozie-default should always be there (and will now have every property)
 This will require looking through all classes to make sure we're not missing 
 anything from oozie-default and also checking that we put the proper default 
 value (from all 3 sources) into oozie-default.  It may be nice to also 
 reorder the properties in oozie-default alphabetically (and also do this 
 going forward with new properties).
 Also, {{oozie.service.WorkflowAppService.system.libpath}} should be set to 
 /user/$\{user.name\}/share/lib (which is what OOZIE-1888 wanted to do).



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


Build failed in Jenkins: oozie-trunk-precommit-build #1723

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1723/

--
[...truncated 2873 lines...]
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[279,18]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[280,18]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[283,31]
 [deprecation] TreeItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[284,19]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[285,19]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[286,19]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[287,19]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGenerator.java:[288,19]
 [deprecation] addItem(java.lang.String) in 
com.google.gwt.user.client.ui.TreeItem has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/property/action/SubWFPropertyTable.java:[128,11]
 [deprecation] setChecked(boolean) in com.google.gwt.user.client.ui.CheckBox 
has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/property/action/JavaPropertyTable.java:[125,11]
 [deprecation] setChecked(boolean) in com.google.gwt.user.client.ui.CheckBox 
has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/property/action/ShellPropertyTable.java:[183,11]
 [deprecation] setChecked(boolean) in com.google.gwt.user.client.ui.CheckBox 
has been deprecated
[WARNING] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/property/action/SSHPropertyTable.java:[149,11]
 [deprecation] setChecked(boolean) in com.google.gwt.user.client.ui.CheckBox 
has been deprecated
[INFO] 
[INFO] --- maven-war-plugin:2.1.1:exploded (default) @ oozie-workflowgenerator 
---
[INFO] Exploding webapp
[INFO] Assembling webapp [oozie-workflowgenerator] in 
[https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target/oozie-wfgen]
[INFO] Processing war project
[INFO] Copying webapp resources 
[https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/main/webapp]
[INFO] Webapp assembled in [51 msecs]
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-workflowgenerator ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-workflowgenerator ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ 
oozie-workflowgenerator ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 

[jira] [Commented] (OOZIE-1802) Support workflow action log

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1802?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110131#comment-14110131
 ] 

Hadoop QA commented on OOZIE-1802:
--

Testing JIRA OOZIE-1802

Cleaning local git workspace



{color:red}-1{color} Patch failed to apply to head of branch



 Support workflow action log
 ---

 Key: OOZIE-1802
 URL: https://issues.apache.org/jira/browse/OOZIE-1802
 Project: Oozie
  Issue Type: Improvement
  Components: action
Affects Versions: trunk
Reporter: Azrael
Priority: Minor
 Attachments: OOZIE-1802.1.patch


 If workflow contains lots of actions, it is hard to search the specific 
 action log. It provides the log of workflow action.
 {code}
 $ oozie job -log 002-140421113135686-oozie-seoe-W@shell-1
 2014-04-21 13:05:52,968  INFO ActionStartXCommand:539 - SERVER[seair.local] 
 USER[seoeun] GROUP[user] TOKEN[] APP[test] 
 JOB[002-140421113135686-oozie-seoe-W] 
 ACTION[002-140421113135686-oozie-seoe-W@shell-1] Start action 
 [002-140421113135686-oozie-seoe-W@shell-1] with user-retry state : 
 userRetryCount [0], userRetryMax [0], userRetryInterval [10]
 2014-04-21 13:05:53,238  INFO ShellActionExecutor:539 - SERVER[seair.local] 
 USER[seoeun] GROUP[user] TOKEN[] APP[test] 
 JOB[002-140421113135686-oozie-seoe-W] 
 ACTION[002-140421113135686-oozie-seoe-W@shell-1] checking action, hadoop 
 job ID [job_201404211041_0005] status [RUNNING]
 2014-04-21 13:05:53,241  WARN ActionStartXCommand:542 - SERVER[seair.local] 
 USER[seoeun] GROUP[user] TOKEN[] APP[test] 
 JOB[002-140421113135686-oozie-seoe-W] 
 ACTION[002-140421113135686-oozie-seoe-W@shell-1] 
 [***002-140421113135686-oozie-seoe-W@shell-1***]Action status=RUNNING
 2014-04-21 13:05:53,242  WARN ActionStartXCommand:542 - SERVER[seair.local] 
 USER[seoeun] GROUP[user] TOKEN[] APP[test] 
 JOB[002-140421113135686-oozie-seoe-W] 
 ACTION[002-140421113135686-oozie-seoe-W@shell-1] 
 [***002-140421113135686-oozie-seoe-W@shell-1***]Action updated in DB!
 2014-04-21 13:06:00,520  INFO CallbackServlet:539 - SERVER[seair.local] 
 USER[-] GROUP[-] TOKEN[-] APP[-] JOB[002-140421113135686-oozie-seoe-W] 
 ACTION[002-140421113135686-oozie-seoe-W@shell-1] callback for action 
 [002-140421113135686-oozie-seoe-W@shell-1]
 {code}



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


Build failed in Jenkins: oozie-trunk-precommit-build #1725

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1725/

--
[...truncated 2757 lines...]
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-webapp ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-webapp ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Examples 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-examples ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ 
oozie-examples ---
[INFO] Compiling 11 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-examples ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 7 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute 

[jira] [Commented] (OOZIE-1688) New configuration to specify server-server authentication type.

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1688?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110139#comment-14110139
 ] 

Hadoop QA commented on OOZIE-1688:
--

Testing JIRA OOZIE-1688

Cleaning local git workspace



{color:red}-1{color} Patch failed to apply to head of branch



 New configuration to specify server-server authentication type.
 ---

 Key: OOZIE-1688
 URL: https://issues.apache.org/jira/browse/OOZIE-1688
 Project: Oozie
  Issue Type: Bug
  Components: HA
Reporter: Purshotam Shah
Assignee: Purshotam Shah
 Attachments: OOZIE-1688-V4.patch, OOZIE-1688-v1.patch, 
 OOZIE-1688-v1.patch, OOZIE-1688-v2.patch, OOZIE-1688-v3.patch, 
 OOZIE-1688.patch


 Currently conf oozie.authentication.type is used by specify authentication 
 type for client-server as well as server-server.
 Client-server and server-server communication can use different type of 
 authentication.
 We need to have  different conf oozie.server.authentication.type to specify 
 server-server authentication type.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1727

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1727/

--
[...truncated 2784 lines...]
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-examples ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/examples/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-examples ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Share Lib 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-sharelib ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-tools ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Compiling 2 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Compiling 6 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ oozie-mini ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Compiling 1 source file to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie WorkflowGenerator 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ 
oozie-workflowgenerator ---
[INFO] Deleting 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-workflowgenerator ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 24 resources to ../../img
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ 
oozie-workflowgenerator ---
[INFO] Compiling 39 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/workflowgenerator/target/oozie-wfgen/WEB-INF/classes
[WARNING] 

[jira] [Commented] (OOZIE-1918) ActionXCommand refactoring for code reuse

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1918?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110141#comment-14110141
 ] 

Hadoop QA commented on OOZIE-1918:
--

Testing JIRA OOZIE-1918

Cleaning local git workspace



{color:red}-1{color} Patch failed to apply to head of branch



 ActionXCommand refactoring for code reuse
 -

 Key: OOZIE-1918
 URL: https://issues.apache.org/jira/browse/OOZIE-1918
 Project: Oozie
  Issue Type: Improvement
  Components: action
Affects Versions: trunk
Reporter: Azrael
Assignee: Azrael
Priority: Trivial
 Attachments: OOZIE-1918.1.patch, OOZIE-1918.2.patch


 Subclasses of ActionXCommand have some duplicated code. Refactoring make it 
 more neat.
 This patch contain:
 * Renaming CompletedActionXCommand to ActionCompletedXCommand and extending 
 ActionXCommand
 * Moving some variables and methods to ActionXCommand and making it protected
 * More meaningful log message : actionId is duplicated so removed



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


[jira] [Commented] (OOZIE-1977) Display patch analysis issues

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110147#comment-14110147
 ] 

Hadoop QA commented on OOZIE-1977:
--

Testing JIRA OOZIE-1977

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:red}-1{color} the patch seems to contain 1 line(s) with @author tags
.   + authorTagsDetails=`grep ^+ ${PATCHFILE} | grep -v ^+++ | grep -i 
-e .*\*.* @author`
.{color:green}+1{color} the patch does not introduce any tabs
.{color:red}-1{color} the patch contains 1 line(s) with trailing spaces
.   +IFS=$'\n' REPORT+=(${authorTagsDetails//$'\n'/ })   
.{color:red}-1{color} the patch contains 1 line(s) longer than 132 
characters
.   +  longLinesDetails=`grep ^+ ${PATCHFILE} | grep -v ^+++ | awk 
'BEGIN{lines=}{if ( length  133 ) { lines=lines $0 \n} }END{ print lines}'`
.{color:green}+1{color} the patch does adds/modifies 1 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color}
.Tests run: 1508
.Tests failed: 8
.Tests errors: 2

.The patch failed the following testcases:

.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)
.  
testRequeueOnException(org.apache.oozie.command.coord.TestCoordPushDependencyCheckXCommand)
.  
testCoordStatusTransitServiceForTimeout(org.apache.oozie.service.TestStatusTransitService)
.  
testActionKillCommandActionNumbers(org.apache.oozie.command.coord.TestCoordActionsKillXCommand)

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


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


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

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

 Display patch analysis issues
 -

 Key: OOZIE-1977
 URL: https://issues.apache.org/jira/browse/OOZIE-1977
 Project: Oozie
  Issue Type: Sub-task
Reporter: Shwetha G S
Assignee: Shwetha G S
 Fix For: trunk

 Attachments: OOZIE-1977.patch


 Currently, RAW_PATCH_ANALYSIS displays this
 {noformat}
 -1 RAW_PATCH_ANALYSIS
 +1 the patch does not introduce any @author tags
 +1 the patch does not introduce any tabs
 -1 the patch contains 1 line(s) with trailing spaces
 +1 the patch does not introduce any line longer than 132
 +1 the patch does adds/modifies 3 testcase(s)
 {noformat}
 Its painful to figure out the lines causing the issue



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


[jira] [Commented] (OOZIE-1810) Workflow cannot get into Failed state when kill control node cannot resolve variable in message

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110153#comment-14110153
 ] 

Hadoop QA commented on OOZIE-1810:
--

Testing JIRA OOZIE-1810

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:red}-1{color} the patch contains 2 line(s) with trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 2 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:red}-1{color} the patch seems to introduce 1 new javac warning(s)
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color}
.Tests run: 1509
.Tests failed: 2
.Tests errors: 1

.The patch failed the following testcases:

.  
testBundlePauseExtendMaterializesCoordinator(org.apache.oozie.command.bundle.TestBundleChangeXCommand)
.  
testMemoryUsageAndSpeed(org.apache.oozie.service.TestPartitionDependencyManagerEhcache)

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


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


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

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

 Workflow cannot get into Failed state when kill control node cannot resolve 
 variable in message 
 

 Key: OOZIE-1810
 URL: https://issues.apache.org/jira/browse/OOZIE-1810
 Project: Oozie
  Issue Type: Bug
Reporter: Bing Jiang
Assignee: Azrael
 Fix For: trunk

 Attachments: OOZIE-1810.patch


 workflow.xml==
 workflow-app name='test-kill-wf' xmlns=uri:oozie:workflow:0.3
 start to='fail'/
 kill name=fail
 message${TryError} error 
 message[${wf:errorMessage(wf:lastErrorNode())}]/message
 /kill
 end name=end/
 /workflow-app
 There is no definition about ${TryError} in job.properties.
 Workflow job are stuck at RUNNING state, and it is always trying to resolve 
 the variable [TryError] in kill action's message.
 ==Exception from oozie log 
 ACTION[-*-oozie-wrkf-W@fail] XException, 
 org.apache.oozie.command.CommandException: E0729: Kill node message [fail]
   at 
 org.apache.oozie.command.wf.SignalXCommand.execute(SignalXCommand.java:292)
   at 
 org.apache.oozie.command.wf.SignalXCommand.execute(SignalXCommand.java:66)
   at org.apache.oozie.command.XCommand.call(XCommand.java:280)
   at 
 org.apache.oozie.service.CallableQueueService$CallableWrapper.run(CallableQueueService.java:175)
   at 
 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
   at java.lang.Thread.run(Thread.java:722)
 Caused by: javax.servlet.jsp.el.ELException: variable [TryError] cannot be 
 resolved
   at 
 org.apache.oozie.util.ELEvaluator$Context.resolveVariable(ELEvaluator.java:106)
   at org.apache.commons.el.NamedValue.evaluate(NamedValue.java:124)
   at 
 org.apache.commons.el.ExpressionString.evaluate(ExpressionString.java:114)
   at 
 org.apache.commons.el.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:274)
   at 
 org.apache.commons.el.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:190)
   at org.apache.oozie.util.ELEvaluator.evaluate(ELEvaluator.java:203)
   at 
 org.apache.oozie.command.wf.SignalXCommand.execute(SignalXCommand.java:277)
   ... 6 more
 ===
 when it runs into  the resolve error upon control nodes' message, oozie 
 action should enter into Failed state as soon as possible.



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


[jira] [Commented] (OOZIE-1779) Add parent-id as a filter option

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1779?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110151#comment-14110151
 ] 

Hadoop QA commented on OOZIE-1779:
--

Testing JIRA OOZIE-1779

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:red}-1{color} the patch contains 1 line(s) longer than 132 
characters
.{color:green}+1{color} the patch does adds/modifies 4 testcase(s)
{color:red}-1 RAT{color}
.{color:red}-1{color} the patch seems to introduce 1 new RAT warning(s)
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color}
.Tests run: 1515
.Tests failed: 5
.Tests errors: 2

.The patch failed the following testcases:

.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)
.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)

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


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


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

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

 Add parent-id as a filter option
 

 Key: OOZIE-1779
 URL: https://issues.apache.org/jira/browse/OOZIE-1779
 Project: Oozie
  Issue Type: Improvement
Affects Versions: trunk
Reporter: Mona Chitnis
Assignee: Azrael
Priority: Minor
 Fix For: trunk

 Attachments: OOZIE-1779.1.patch, OOZIE-1779.2.patch


 Currently filtering options on jobs list are
 name, user, group, status, frequency and time-unit. 
 With increasing usage of coordinators and bundles, adding parent-id should be 
 useful instead of always searching top-down from parent to child.



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


[jira] [Commented] (OOZIE-1705) Enable gc logs and print thread id in logs

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110150#comment-14110150
 ] 

Hadoop QA commented on OOZIE-1705:
--

Testing JIRA OOZIE-1705

Cleaning local git workspace



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

.The patch failed the following testcases:

.  
testConcurrencyReachedAndChooseNextEligible(org.apache.oozie.service.TestCallableQueueService)

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


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


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

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

 Enable gc logs and print thread id in logs
 --

 Key: OOZIE-1705
 URL: https://issues.apache.org/jira/browse/OOZIE-1705
 Project: Oozie
  Issue Type: Task
Reporter: Shwetha G S
Assignee: Shwetha G S
Priority: Minor
 Fix For: trunk

 Attachments: OOZIE-1705-v2.patch, OOZIE-1705.patch






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


[jira] [Commented] (OOZIE-1932) Services should load CallableQueueService after MemoryLocksService

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1932?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110152#comment-14110152
 ] 

Hadoop QA commented on OOZIE-1932:
--

Testing JIRA OOZIE-1932

Cleaning local git workspace



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

.The patch failed the following testcases:

.  
testNone(org.apache.oozie.command.coord.TestCoordActionInputCheckXCommand)

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


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


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

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

 Services should load CallableQueueService after MemoryLocksService
 --

 Key: OOZIE-1932
 URL: https://issues.apache.org/jira/browse/OOZIE-1932
 Project: Oozie
  Issue Type: Bug
Affects Versions: trunk
Reporter: Mona Chitnis
Assignee: Mona Chitnis
 Fix For: 4.1.0

 Attachments: OOZIE-1932-2.patch, OOZIE-1932-addendum.patch, 
 OOZIE-1932.patch


 This is not a problem during startup but is during shutdown, as services are 
 destroyed in reverse order of initialization. Hence, when MemoryLocksService 
 destroy sets it to null, and commands are still executing due to 
 CallableQueueService still active, they all encounter NPEs during locking. 
 This is a simple fix in oozie-default.xml to set MemoryLocksService before in 
 the order of services loading.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1686

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1686/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-15-34/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1679

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1679/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-12-39/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1689

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1689/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-18-33/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1683

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1683/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-13-19/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1681

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1681/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-12-42/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1688

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1688/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-17-09/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1690

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1690/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-28-39/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1685

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1685/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-14-25/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1684

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1684/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-14-24/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1682

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1682/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-12-43/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


[jira] [Commented] (OOZIE-1579) Add basic HTTP auth to Oozie CLI

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1579?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110156#comment-14110156
 ] 

Hadoop QA commented on OOZIE-1579:
--

Testing JIRA OOZIE-1579

Cleaning local git workspace



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

.The patch failed the following testcases:

.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)
.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)
.  
testMemoryUsageAndSpeed(org.apache.oozie.service.TestPartitionDependencyManagerService)

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


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


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

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

 Add basic HTTP auth to Oozie CLI
 

 Key: OOZIE-1579
 URL: https://issues.apache.org/jira/browse/OOZIE-1579
 Project: Oozie
  Issue Type: Bug
  Components: client
Reporter: David Wannemacher
Assignee: David Wannemacher
 Fix For: trunk

 Attachments: OOZIE-1579.trunk.2.patch, OOZIE-1579.trunk.patch


 This proposed change adds Basic HTTP Auth functionality to the Oozie CLI. 
 This would never be used in a usual Oozie installation because Oozie servers 
 support token-based authentication: Pseudo/Simple Auth and Kerberos.
 Basic HTTP Auth is needed in the Oozie CLI for when the Oozie service is 
 placed behind a gateway that uses Basic HTTP Auth over SSL. It is assumed 
 that the Oozie service is running with authorization turned off, because the 
 gateway is handling authorization. Once the user authenticates himself to the 
 gateway, the request is forwarded through the gateway to the oozie service.
 This had to be implemented outside of the custom authentication framework 
 provided by Oozie because basic auth requires adding a request property to 
 each connection created. It's completely possible that there is a cleaner way 
 of implementing this, if so please let me know!
 Two additions were implemented in the CLI:
 * Indication to use Basic Auth. This is done by specifying BASIC as the 
 argument to the -auth argument.
 * Configuration of Basic Auth.
 ** Introduction of -username and -password command line arguments.
 ** If the auth mode is BASIC, only -username is provided, and the 
 OOZIEPASSWORD environment variable is set, the OOZIEPASSWORD environment 
 variable will be used for the password.
 ** If mode is BASIC and only -username is provided, and OOZIEPASSWORD is 
 undefined, the user will be prompted for the password, and the shell 
 facilities for masking input will be used.



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


[jira] [Commented] (OOZIE-1457) Create a Hive Server 2 action

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1457?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110157#comment-14110157
 ] 

Hadoop QA commented on OOZIE-1457:
--

Testing JIRA OOZIE-1457

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 4 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:red}-1{color} the patch seems to introduce 4 new javac warning(s)
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color}
.Tests run: 1510
.Tests failed: 3
.Tests errors: 2

.The patch failed the following testcases:

.  
testConcurrencyReachedAndChooseNextEligible(org.apache.oozie.service.TestCallableQueueService)
.  testSingleRecord(org.apache.oozie.servlet.TestBulkMonitorWebServiceAPI)
.  
testHive2Action(org.apache.oozie.action.hadoop.TestHiveServer2ActionExecutor)

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


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


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

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

 Create a Hive Server 2 action
 -

 Key: OOZIE-1457
 URL: https://issues.apache.org/jira/browse/OOZIE-1457
 Project: Oozie
  Issue Type: New Feature
  Components: action
Affects Versions: trunk
Reporter: Robert Kanter
Assignee: Robert Kanter
Priority: Minor
 Attachments: OOZIE-1457.patch, OOZIE-1457.patch, OOZIE-1457.patch


 We should update the Hive action to support Hive Server 2 (Beeline); we'll 
 also need to add a new {{Credentials}} implementation to get the delegation 
 token (unlike the Hive Metastore, the existing {{HCatCredentials}} cannot be 
 reused for Hive Server 2 because of the JDBC connection).  We may need to 
 bump up the Hive version to support this.  
 We should create a Hive Server 2 action that uses Beeline to connect to 
 Hive Server 2.  We'll also need to add a new {{Credentials}} implementation 
 to get the delegation token (unlike the Hive Metastore, the existing 
 {{HCatCredentials}} cannot be reused for Hive Server 2 because of the JDBC 
 connection).  
 This will definitely work with Hive 0.13 (which hasn't been released) but may 
 also work with Hive 0.12, though probably not with Kerberos.  I believe the 
 delegation token work required isn't in Hive 0.12.  



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


Build failed in Jenkins: oozie-trunk-precommit-build #1695

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1695/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-34-45/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


[jira] [Commented] (OOZIE-1803) Improvement in Purge service

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1803?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110165#comment-14110165
 ] 

Hadoop QA commented on OOZIE-1803:
--

Testing JIRA OOZIE-1803

Cleaning local git workspace



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

.The patch failed the following testcases:

.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)

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


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


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

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

 Improvement in Purge service
 

 Key: OOZIE-1803
 URL: https://issues.apache.org/jira/browse/OOZIE-1803
 Project: Oozie
  Issue Type: Improvement
  Components: core
Reporter: Jaydeep Vishwakarma
Assignee: Jaydeep Vishwakarma
 Attachments: purgeservice.patch


 Current purge service of oozie have some performance issues and it might help 
 to look at the queries and indexes to improve the the purge service.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1692

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1692/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-31-36/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1693

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1693/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-33-42/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1691

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1691/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-31-27/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1697

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1697/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-35-10/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


Build failed in Jenkins: oozie-trunk-precommit-build #1696

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1696/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-35-09/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


[jira] [Commented] (OOZIE-1941) Bundle coordinator name can't not be parameterized

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110174#comment-14110174
 ] 

Hadoop QA commented on OOZIE-1941:
--

Testing JIRA OOZIE-1941

Cleaning local git workspace



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

.The patch failed the following testcases:

.  
testCoordStatus_Failed(org.apache.oozie.command.coord.TestCoordChangeXCommand)

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


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


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

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

 Bundle coordinator name can't not be parameterized
 --

 Key: OOZIE-1941
 URL: https://issues.apache.org/jira/browse/OOZIE-1941
 Project: Oozie
  Issue Type: Bug
Reporter: Purshotam Shah
Assignee: Purshotam Shah
 Attachments: OOZIE-1941-V3.patch






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


[jira] [Commented] (OOZIE-1428) The delay time for requeue should be configurable

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110178#comment-14110178
 ] 

Hadoop QA commented on OOZIE-1428:
--

Testing JIRA OOZIE-1428

Cleaning local git workspace



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

.The patch failed the following testcases:

.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)
.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)
.  
testConcurrencyReachedAndChooseNextEligible(org.apache.oozie.service.TestCallableQueueService)
.  testForNoDuplicates(org.apache.oozie.event.TestEventGeneration)
.  
testActionKillCommandActionNumbers(org.apache.oozie.command.coord.TestCoordActionsKillXCommand)

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


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


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

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

 The delay time for requeue should be configurable
 -

 Key: OOZIE-1428
 URL: https://issues.apache.org/jira/browse/OOZIE-1428
 Project: Oozie
  Issue Type: Improvement
  Components: core
Affects Versions: trunk
Reporter: Robert Kanter
Priority: Minor
  Labels: newbie
 Fix For: trunk

 Attachments: OOZIE-1428-patch.0, OOZIE-1428.patch.1


 In {{XCommand}}, the requeue delay for requeuing commands who's lock timed 
 out should be configurable (like the lock timeout itself already is).
 Its currently hardcoded to 10 seconds; we should add a 
 {{oozie.command.default.requeue.delay}} property for oozie-site.  



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


Build failed in Jenkins: oozie-trunk-precommit-build #1702

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1702/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-43-36/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


[jira] [Commented] (OOZIE-1889) Convert NamedNativeQueries to JPQL

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110179#comment-14110179
 ] 

Hadoop QA commented on OOZIE-1889:
--

Testing JIRA OOZIE-1889

Cleaning local git workspace



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

.The patch failed the following testcases:

.  
testBundleRerunInPausedWithError(org.apache.oozie.command.bundle.TestBundleRerunXCommand)

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


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


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

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

 Convert NamedNativeQueries to JPQL
 --

 Key: OOZIE-1889
 URL: https://issues.apache.org/jira/browse/OOZIE-1889
 Project: Oozie
  Issue Type: Improvement
Affects Versions: trunk
Reporter: David Villegas
Assignee: David Villegas
 Fix For: trunk

 Attachments: OOZIE-1889.patch, OOZIE-1889.patch


 Currently, there is only one JPA NamedNativeQuery 
 (GET_READY_ACTIONS_GROUP_BY_JOBID). By converting it to a regular NamedQuery 
 in JPQL, it can take advantage of JPA capabilities, such as configuring the 
 DB schema as a property (Required for issues such as OOZIE-814 and OOZIE-80)



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


Build failed in Jenkins: oozie-trunk-precommit-build #1701

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1701/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-43-34/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


[jira] [Commented] (OOZIE-1876) use pom properties rather than specific version numbers in the pom files of hbaselibs, hcataloglibs, sharelib, etc

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110180#comment-14110180
 ] 

Hadoop QA commented on OOZIE-1876:
--

Testing JIRA OOZIE-1876

Cleaning local git workspace



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

.The patch failed the following testcases:

.  testDelete(org.apache.oozie.action.hadoop.TestLauncherHCatURIHandler)
.  testDelete(org.apache.oozie.action.hadoop.TestHCatPrepareActions)
.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)

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


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


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

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

 use pom properties rather than specific version numbers in the pom files of 
 hbaselibs, hcataloglibs, sharelib, etc 
 ---

 Key: OOZIE-1876
 URL: https://issues.apache.org/jira/browse/OOZIE-1876
 Project: Oozie
  Issue Type: Improvement
  Components: build
Affects Versions: 4.0.1
Reporter: John
Assignee: Shwetha G S
 Fix For: trunk

 Attachments: OOZIE-1876-v2.patch, OOZIE-1876-v3.patch, 
 OOZIE-1876-v4.patch, OOZIE-1876-v5.patch, OOZIE-1876.patch


 version numbers (hbase, hive, hcatalog, sqoop, etc) are hard coded in the pom 
 files.



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


[jira] [Commented] (OOZIE-1927) Use StoreStatusFilter for WorkflowsJobGetJPAExecutor

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1927?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110189#comment-14110189
 ] 

Hadoop QA commented on OOZIE-1927:
--

Testing JIRA OOZIE-1927

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:red}-1{color} the patch contains 2 line(s) longer than 132 
characters
.{color:green}+1{color} the patch does adds/modifies 4 testcase(s)
{color:red}-1 RAT{color}
.{color:red}-1{color} the patch seems to introduce 1 new RAT warning(s)
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color}
.Tests run: 1515
.Tests failed: 8
.Tests errors: 3

.The patch failed the following testcases:

.  
testResetSequence_withMultiThread(org.apache.oozie.service.TestZKUUIDService)
.  testParseFilterNegative(org.apache.oozie.TestCoordinatorEngineSimple)
.  
testCoordMaterializeTriggerService3(org.apache.oozie.service.TestCoordMaterializeTriggerService)
.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)

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


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


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

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

 Use StoreStatusFilter for WorkflowsJobGetJPAExecutor 
 -

 Key: OOZIE-1927
 URL: https://issues.apache.org/jira/browse/OOZIE-1927
 Project: Oozie
  Issue Type: Improvement
Affects Versions: trunk
Reporter: Azrael
Assignee: Azrael
Priority: Minor
 Attachments: OOZIE-1927.1.patch


 There is code in {{StoreStatusFilter#filter}} to apply filter for getting job 
 info.
 This patch remove the duplicated code and make simple to create query.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1699

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1699/

--
Failed to access build log

java.io.FileNotFoundException: 
/x1/jenkins/jenkins-home/jobs/oozie-trunk-precommit-build/builds/2014-08-26_00-41-58/log
 (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.init(FileInputStream.java:146)
at hudson.model.Run.getLog(Run.java:1877)
at hudson.tasks.MailSender.createFailureMail(MailSender.java:257)
at hudson.tasks.MailSender.getMail(MailSender.java:153)
at hudson.tasks.MailSender.execute(MailSender.java:101)
at hudson.tasks.Mailer.perform(Mailer.java:137)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:804)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:776)
at hudson.model.Build$BuildExecution.post2(Build.java:183)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:725)
at hudson.model.Run.execute(Run.java:1701)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:231)


[jira] [Commented] (OOZIE-1654) Fix typo (inteval to interval)

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110190#comment-14110190
 ] 

Hadoop QA commented on OOZIE-1654:
--

Testing JIRA OOZIE-1654

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:red}-1{color} the patch contains 1 line(s) longer than 132 
characters
.{color:green}+1{color} the patch does adds/modifies 1 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:red}-1{color} the patch seems to introduce 2 new javac warning(s)
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color}
.Tests run: 1511
.Tests failed: 8
.Tests errors: 4

.The patch failed the following testcases:

.  
testTimeOut(org.apache.oozie.command.coord.TestCoordPushDependencyCheckXCommand)
.  
testCoordActionInputCheckXCommandUniqueness(org.apache.oozie.command.coord.TestCoordActionInputCheckXCommandNonUTC)
.  testCoordinatorActionEvent(org.apache.oozie.event.TestEventGeneration)
.  testMain(org.apache.oozie.action.hadoop.TestHiveMain)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMainWithOldAPI)
.  testPigScript(org.apache.oozie.action.hadoop.TestPigMain)
.  testEmbeddedPigWithinPython(org.apache.oozie.action.hadoop.TestPigMain)
.  testPig_withNullExternalID(org.apache.oozie.action.hadoop.TestPigMain)

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


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


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

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

 Fix typo (inteval to interval)
 --

 Key: OOZIE-1654
 URL: https://issues.apache.org/jira/browse/OOZIE-1654
 Project: Oozie
  Issue Type: Improvement
  Components: action
Affects Versions: 4.0.0
Reporter: Azrael
Assignee: Azrael
Priority: Trivial
 Attachments: OOZIE-1654.1.patch, OOZIE-1654.2.patch, OOZIE-1654.patch


 Fix typo inteval to interval.
 oozie-default.xml
 {code:xml}
 nameoozie.service.LiteWorkflowStoreService.user.retry.inteval/name
  to
 nameoozie.service.LiteWorkflowStoreService.user.retry.interval/name
 {code}



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


Build failed in Jenkins: oozie-trunk-precommit-build #1705

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1705/

--
[...truncated 9334 lines...]
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-distro ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/distro/src/main/resources
[INFO] 

Build failed in Jenkins: oozie-trunk-precommit-build #1704

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1704/

--
[...truncated 9377 lines...]
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-distro ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/distro/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-distro 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-distro ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/distro/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-distro ---
[INFO] No sources to compile
[INFO] 
[INFO] --- 

Build failed in Jenkins: oozie-trunk-precommit-build #1709

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1709/

--
[...truncated 9314 lines...]
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-distro ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/distro/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-distro 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- 

Build failed in Jenkins: oozie-trunk-precommit-build #1710

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1710/

--
[...truncated 8653 lines...]
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-distro ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/distro/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-distro 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-distro ---
[debug] execute contextualize
[INFO] 

Build failed in Jenkins: oozie-trunk-precommit-build #1728

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1728/

--
[...truncated 8870 lines...]
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] Building tar : 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/sharelib/target/oozie-sharelib-4.2.0-SNAPSHOT.tar.gz
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 

[jira] [Commented] (OOZIE-1677) Add Oozie servers to instrumentation info

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1677?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110253#comment-14110253
 ] 

Hadoop QA commented on OOZIE-1677:
--

Testing JIRA OOZIE-1677

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:green}+1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:green}+1{color} the patch does adds/modifies 2 testcase(s)
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:green}+1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:green}+1{color} patch compiles
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:green}+1 TESTS{color}
.Tests run: 1510
{color:green}+1 DISTRO{color}
.{color:green}+1{color} distro tarball builds with the patch 


{color:green}*+1 Overall result, good!, no -1s*{color}


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

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

 Add Oozie servers to instrumentation info
 -

 Key: OOZIE-1677
 URL: https://issues.apache.org/jira/browse/OOZIE-1677
 Project: Oozie
  Issue Type: Improvement
  Components: HA
Affects Versions: trunk
Reporter: Robert Kanter
Assignee: Robert Kanter
Priority: Minor
 Attachments: OOZIE-1677.patch, OOZIE-1677.patch


 It could be useful to add the list of Oozie servers (particularly when HA is 
 enabled) to the instrumentation info.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1731

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1731/

--
[...truncated 9515 lines...]
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO]  already added, skipping
[INFO] share already added, skipping
[INFO] share/lib already added, skipping
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Tools 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-tools 
---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-tools ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-tools ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-tools ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-tools ---
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-tools ---
[INFO] Reading assembly descriptor: ../src/main/assemblies/tools.xml
[WARNING] The following patterns were never triggered in this artifact 
exclusion filter:
o  '*:*:pom:*'

[INFO] Copying files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
[WARNING] Assembly file: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/tools/target/oozie-tools-4.2.0-SNAPSHOT-tools
 is not a regular file (it may be a directory). It cannot be attached to the 
project build for installation or deployment.
[INFO] 
[INFO] 
[INFO] Building Apache Oozie MiniOozie 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-mini 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-mini ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ 
oozie-mini ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.2:test (default-test) @ oozie-mini ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ oozie-mini ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/minitest/target/oozie-mini-4.2.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-assembly-plugin:2.2.1:single (default-cli) @ oozie-mini ---
[INFO] Reading assembly descriptor: src/main/assemblies/empty.xml
[INFO] 
[INFO] 
[INFO] Building Apache Oozie Distro 4.2.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
oozie-distro ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/distro/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-distro 
---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
oozie-distro ---

Re: Review Request 21312: OOZIE-1830 Change hadoop-1 profile to use 1.2.1

2014-08-25 Thread Azrael Park

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

(Updated Aug. 26, 2014, 4:50 a.m.)


Review request for oozie.


Changes
---

As robert's comment :

* Update hadoop version number to 1.2.1
* Using maven profile not to include hadoop-auth with hadoop-1


Bugs: OOZIE-1830
https://issues.apache.org/jira/browse/OOZIE-1830


Repository: oozie-git


Description
---

We should change the hadoop-1 profile to use 1.2.1 instead of 1.1.1.


Diffs (updated)
-

  bin/mkdistro.sh 1ccd495 
  client/pom.xml a52060b 
  hadooplibs/hadoop-1/pom.xml 8116b24 
  hadooplibs/hadoop-distcp-1/pom.xml fb09f64 
  hadooplibs/hadoop-test-1/pom.xml e124e24 
  hadooplibs/hadoop-utils-1/pom.xml dfeb4ff 
  pom.xml 835ec19 

Diff: https://reviews.apache.org/r/21312/diff/


Testing
---


Thanks,

Azrael Park



[jira] [Updated] (OOZIE-1830) Change hadoop-1 profile to use 1.2.1

2014-08-25 Thread Azrael (JIRA)

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

Azrael updated OOZIE-1830:
--

Attachment: OOZIE-1830.4.patch

Sorry for delay, upload the patch on reviewboard.
[~rkanter], can you review please? 


 Change hadoop-1 profile to use 1.2.1
 

 Key: OOZIE-1830
 URL: https://issues.apache.org/jira/browse/OOZIE-1830
 Project: Oozie
  Issue Type: Improvement
Affects Versions: trunk, 4.0.1
Reporter: Azrael
Priority: Minor
 Attachments: OOZIE-1830.1.patch, OOZIE-1830.2.patch, 
 OOZIE-1830.3.patch, OOZIE-1830.4.patch


 We should change the hadoop-1 profile to use 1.2.1 instead of 1.1.1.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1733

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1733/

--
[...truncated 5484 lines...]
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 33 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-client 
---
[INFO] Compiling 35 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/target/classes
[INFO] -
[ERROR] COMPILATION ERROR : 
[INFO] -
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[31,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[32,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[33,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[34,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[35,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[152,30]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[179,50]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[211,14]
 cannot find symbol
symbol  : class Authenticator
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[272,42]
 cannot find symbol
symbol  : class Authenticator
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[105,24]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[105,63]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[106,24]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[106,66]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[111,51]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[118,12]
 cannot find symbol
symbol  : variable AuthenticatedURL
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[121,51]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[126,12]
 cannot find symbol
symbol  : class Authenticator
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[128,20]
 cannot find symbol
symbol  : class AuthenticatedURL
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[130,19]
 cannot find symbol
symbol  : class AuthenticationException
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[140,8]
 cannot find symbol
symbol  : variable AuthenticatedURL
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 

[jira] [Commented] (OOZIE-1830) Change hadoop-1 profile to use 1.2.1

2014-08-25 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/OOZIE-1830?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14110280#comment-14110280
 ] 

Hadoop QA commented on OOZIE-1830:
--

Testing JIRA OOZIE-1830

Cleaning local git workspace



{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.{color:green}+1{color} the patch does not introduce any @author tags
.{color:green}+1{color} the patch does not introduce any tabs
.{color:green}+1{color} the patch does not introduce any trailing spaces
.{color:green}+1{color} the patch does not introduce any line longer than 
132
.{color:red}-1{color} the patch does not add/modify any testcase
{color:green}+1 RAT{color}
.{color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.{color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.{color:green}+1{color} HEAD compiles
.{color:red}-1{color} patch does not compile
.{color:green}+1{color} the patch does not seem to introduce new javac 
warnings
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.{color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.{color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:red}-1 DISTRO{color}
.{color:red}-1{color} distro tarball fails with the patch


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


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

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

 Change hadoop-1 profile to use 1.2.1
 

 Key: OOZIE-1830
 URL: https://issues.apache.org/jira/browse/OOZIE-1830
 Project: Oozie
  Issue Type: Improvement
Affects Versions: trunk, 4.0.1
Reporter: Azrael
Priority: Minor
 Attachments: OOZIE-1830.1.patch, OOZIE-1830.2.patch, 
 OOZIE-1830.3.patch, OOZIE-1830.4.patch


 We should change the hadoop-1 profile to use 1.2.1 instead of 1.1.1.



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


Build failed in Jenkins: oozie-trunk-precommit-build #1734

2014-08-25 Thread Apache Jenkins Server
See https://builds.apache.org/job/oozie-trunk-precommit-build/1734/

--
[...truncated 5486 lines...]
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 33 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ oozie-client 
---
[INFO] Compiling 35 source files to 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/target/classes
[INFO] -
[ERROR] COMPILATION ERROR : 
[INFO] -
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[31,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[32,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[33,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[34,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[35,55]
 package org.apache.hadoop.security.authentication.client does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[152,30]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[179,50]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[211,14]
 cannot find symbol
symbol  : class Authenticator
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[272,42]
 cannot find symbol
symbol  : class Authenticator
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[105,24]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[105,63]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[106,24]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[106,66]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[111,51]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[118,12]
 cannot find symbol
symbol  : variable AuthenticatedURL
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[121,51]
 package AuthenticatedURL does not exist
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[126,12]
 cannot find symbol
symbol  : class Authenticator
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[128,20]
 cannot find symbol
symbol  : class AuthenticatedURL
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[130,19]
 cannot find symbol
symbol  : class AuthenticationException
location: class org.apache.oozie.client.AuthOozieClient
[ERROR] 
https://builds.apache.org/job/oozie-trunk-precommit-build/ws/client/src/main/java/org/apache/oozie/client/AuthOozieClient.java:[140,8]
 cannot find symbol
symbol  : variable AuthenticatedURL
location: class org.apache.oozie.client.AuthOozieClient
[ERROR]