[GitHub] zookeeper pull request #131: ZOOKEEPER-2650: Test Improvement by adding more...

2016-12-21 Thread rakeshadr
Github user rakeshadr commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93579277
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
+Map authConfigs, int authServerCount)
+throws IOException {
+StringBuilder connectStr = new StringBuilder();
+final int[] clientPorts = startQuorum(serverCount, 0, connectStr,
+authConfigs, authServerCount);
+for (int i = 0; i < serverCount; i++) {
+Assert.assertTrue("waiting for server " + i + " being up",
+ClientBase.waitForServerUp("127.0.0.1:" + 
clientPorts[i],
+ClientBase.CONNECTION_TIMEOUT));
+}
+return connectStr.toString();
+}
+
+/**
+ * Starts the given number of quorum servers and won't wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param connectStr
+ *connection string where clients can used for connection
+ *establishment
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected int[] startQuorum(final int serverCount, int ObserverCount,
--- End diff --

Done


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Commented] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769411#comment-15769411
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2650:
---

Github user rakeshadr commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93579253
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
--- End diff --

Changed to "observerCount"


> Test Improvement by adding more QuorumPeer Auth related test cases
> --
>
> Key: ZOOKEEPER-2650
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
> Project: ZooKeeper
>  Issue Type: Test
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> This jira to add more test cases to the ZOOKEEPER-1045 feature.
> Cases:-
> 1) Ensemble with auth enabled Observer.
> 2) Connecting non-auth Observer to auth enabled quorum.
> 3) Quorum re-election with auth enabled servers.



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


[jira] [Commented] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769412#comment-15769412
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2650:
---

Github user rakeshadr commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93579277
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
+Map authConfigs, int authServerCount)
+throws IOException {
+StringBuilder connectStr = new StringBuilder();
+final int[] clientPorts = startQuorum(serverCount, 0, connectStr,
+authConfigs, authServerCount);
+for (int i = 0; i < serverCount; i++) {
+Assert.assertTrue("waiting for server " + i + " being up",
+ClientBase.waitForServerUp("127.0.0.1:" + 
clientPorts[i],
+ClientBase.CONNECTION_TIMEOUT));
+}
+return connectStr.toString();
+}
+
+/**
+ * Starts the given number of quorum servers and won't wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param connectStr
+ *connection string where clients can used for connection
+ *establishment
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected int[] startQuorum(final int serverCount, int ObserverCount,
--- End diff --

Done


> Test Improvement by adding more QuorumPeer Auth related test cases
> --
>
> Key: ZOOKEEPER-2650
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
> Project: ZooKeeper
>  Issue Type: Test
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> This jira to add more test cases to the ZOOKEEPER-1045 feature.
> Cases:-
> 1) Ensemble with auth enabled Observer.
> 2) Connecting non-auth Observer to auth enabled quorum.
> 3) Quorum re-election with auth enabled servers.



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


[GitHub] zookeeper pull request #131: ZOOKEEPER-2650: Test Improvement by adding more...

2016-12-21 Thread rakeshadr
Github user rakeshadr commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93579253
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
--- End diff --

Changed to "observerCount"


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Failed: ZOOKEEPER- PreCommit Build #145

2016-12-21 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/PreCommit-ZOOKEEPER-github-pr-build/145/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 25 lines...]
Done: 28
  Compressing objects
Done: 0
  Writing objects
Done: 36
  remote: Resolving deltas
  remote: Updating references
Merging refs/tags/changes/145
 > git rev-parse refs/tags/changes/145^{commit} # timeout=10
 > git merge d37f1696806db3621608a11245c2d79a39ef9507 # timeout=10
 > git rev-parse branch-3.4^{commit} # timeout=10
Checking out Revision d37f1696806db3621608a11245c2d79a39ef9507 (branch-3.4)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f d37f1696806db3621608a11245c2d79a39ef9507
 > git rev-parse origin/branch-3.4^{commit} # timeout=10
 > git rev-list 3b65d7513b69c436fb8461a630d2f35bf418fb6c # timeout=10
No emails were triggered.
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
[PreCommit-ZOOKEEPER-github-pr-build] $ /bin/bash 
/tmp/hudson7287445252993379557.sh
/home/jenkins/tools/java/latest1.7/bin/java
java version "1.7.0_80"
Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)
core file size  (blocks, -c) 0
data seg size   (kbytes, -d) unlimited
scheduling priority (-e) 0
file size   (blocks, -f) unlimited
pending signals (-i) 386178
max locked memory   (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files  (-n) 6
pipe size(512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority  (-r) 0
stack size  (kbytes, -s) 8192
cpu time   (seconds, -t) unlimited
max user processes  (-u) 10240
virtual memory  (kbytes, -v) unlimited
file locks  (-x) unlimited
Buildfile: 
/home/jenkins/jenkins-slave/workspace/PreCommit-ZOOKEEPER-github-pr-build/build.xml

BUILD FAILED
Target "qa-test-pullrequest" does not exist in the project "ZooKeeper". 

Total time: 0 seconds
Build step 'Execute shell' marked build as failure
Archiving artifacts
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Recording test results
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
[description-setter] Could not determine description.
Putting comment on the pull request
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk-solaris - Build # 1435 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-solaris/1435/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 147 lines...]
svn-revision:
[mkdir] Created dir: 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/.revision
 [exec] svn: '.' is not a working copy

version-info:
 [java] Unknown REVISION number, using -1

process-template:

build-generated:
[javac] Compiling 62 source files to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/classes

compile:
[javac] Compiling 243 source files to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/classes

jar:

BUILD FAILED
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build.xml:558:
 java.io.IOException: Cannot run program 
"/zonestorage/hudson_solaris/home/hudson/tools/java/jdk1.7.0_79/jre/bin/java": 
error=12, Not enough space
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1047)
at java.lang.Runtime.exec(Runtime.java:617)
at 
org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:862)
at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
at org.apache.tools.ant.taskdefs.Java.fork(Java.java:791)
at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:214)
at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:135)
at org.apache.tools.ant.taskdefs.Java.execute(Java.java:108)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at 
org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:390)
at org.apache.tools.ant.Target.performTasks(Target.java:411)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
at 
org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.Main.runBuild(Main.java:809)
at org.apache.tools.ant.Main.startAnt(Main.java:217)
at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)
Caused by: java.io.IOException: error=12, Not enough space
at java.lang.UNIXProcess.forkAndExec(Native Method)
at java.lang.UNIXProcess.(UNIXProcess.java:136)
at java.lang.ProcessImpl.start(ProcessImpl.java:130)
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1028)
... 24 more

Total time: 33 seconds
Build step 'Invoke Ant' marked build as failure
[locks-and-latches] Releasing all the locks
[locks-and-latches] All the locks released
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch34_solaris - Build # 1401 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_solaris/1401/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 142 lines...]
[javac] ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:766:
 warning: [deprecation] org.apache.zookeeper.server.quorum.LeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] le = new LeaderElection(this);
[javac]  ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:769:
 warning: [deprecation] 
org.apache.zookeeper.server.quorum.AuthFastLeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] le = new AuthFastLeaderElection(this);
[javac]  ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:772:
 warning: [deprecation] 
org.apache.zookeeper.server.quorum.AuthFastLeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] le = new AuthFastLeaderElection(this, true);
[javac]  ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:793:
 warning: [deprecation] org.apache.zookeeper.server.quorum.LeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] electionAlg = new LeaderElection(this);
[javac]   ^
[javac] 5 warnings

jar:

BUILD FAILED
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build.xml:535:
 java.io.IOException: Cannot run program 
"/zonestorage/hudson_solaris/home/hudson/hudson-slave/tools/jdk6-u26-auto-install/jre/bin/java":
 error=12, Not enough space
at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
at java.lang.Runtime.exec(Runtime.java:593)
at 
org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:862)
at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
at org.apache.tools.ant.taskdefs.Java.fork(Java.java:791)
at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:214)
at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:135)
at org.apache.tools.ant.taskdefs.Java.execute(Java.java:108)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:390)
at org.apache.tools.ant.Target.performTasks(Target.java:411)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
at 
org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.Main.runBuild(Main.java:809)
at org.apache.tools.ant.Main.startAnt(Main.java:217)
at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)
Caused by: java.io.IOException: error=12, Not enough space
at java.lang.UNIXProcess.forkAndExec(Native Method)
at java.lang.UNIXProcess.(UNIXProcess.java:53)
at java.lang.ProcessImpl.start(ProcessImpl.java:65)
at java.lang.ProcessBuilder.start(ProcessBuilder.java:453)
... 24 more

Total time: 2 minutes 4 seconds
Build step 'Invoke Ant' marked build as failure
[locks-and-latches] Releasing all the locks
[locks-and-latches] All the locks released
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

Failed: ZOOKEEPER- PreCommit Build #144

2016-12-21 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/PreCommit-ZOOKEEPER-github-pr-build/144/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 30 lines...]
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
at ..remote call to H0(Native Method)
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1416)
at hudson.remoting.UserResponse.retrieve(UserRequest.java:253)
at hudson.remoting.Channel.call(Channel.java:781)
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:249)
at com.sun.proxy.$Proxy90.checkoutBranch(Unknown Source)
at 
org.jenkinsci.plugins.gitclient.RemoteGitImpl.checkoutBranch(RemoteGitImpl.java:327)
at 
com.cloudbees.jenkins.plugins.git.vmerge.BuildChooserImpl.getCandidateRevisions(BuildChooserImpl.java:78)
at hudson.plugins.git.GitSCM.determineRevisionToBuild(GitSCM.java:984)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1087)
at hudson.scm.SCM.checkout(SCM.java:485)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1269)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1741)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:410)
Caused by: hudson.plugins.git.GitException: Command "git checkout -f 
origin/trunk" returned status code 1:
stdout: 
stderr: error: pathspec 'origin/trunk' did not match any file(s) known to git.

at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1723)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1699)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1695)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1317)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1329)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl$9.execute(CliGitAPIImpl.java:1979)
at 
org.jenkinsci.plugins.gitclient.AbstractGitAPIImpl.checkoutBranch(AbstractGitAPIImpl.java:82)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.checkoutBranch(CliGitAPIImpl.java:63)
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:606)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(RemoteInvocationHandler.java:884)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:859)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:818)
at hudson.remoting.UserRequest.perform(UserRequest.java:153)
at hudson.remoting.UserRequest.perform(UserRequest.java:50)
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
Archiving artifacts
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
[description-setter] Could not determine description.
Putting comment on the pull request
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Commented] (ZOOKEEPER-2652) Fix HierarchicalQuorumTest.java

2016-12-21 Thread Rakesh R (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2652?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769273#comment-15769273
 ] 

Rakesh R commented on ZOOKEEPER-2652:
-

Thank you [~rgs] for quickly resolving this.

> Fix HierarchicalQuorumTest.java
> ---
>
> Key: ZOOKEEPER-2652
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2652
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.10
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> The commit of ZOOKEEPER-2479 has introduced a compilation error(due to 
> diamond operator usage) in {{branch-3.4}}, which uses {{JDK 1.6}}



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


[jira] [Commented] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769266#comment-15769266
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2650:
---

Github user rgs1 commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93572708
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
+Map authConfigs, int authServerCount)
+throws IOException {
+StringBuilder connectStr = new StringBuilder();
+final int[] clientPorts = startQuorum(serverCount, 0, connectStr,
+authConfigs, authServerCount);
+for (int i = 0; i < serverCount; i++) {
+Assert.assertTrue("waiting for server " + i + " being up",
+ClientBase.waitForServerUp("127.0.0.1:" + 
clientPorts[i],
+ClientBase.CONNECTION_TIMEOUT));
+}
+return connectStr.toString();
+}
+
+/**
+ * Starts the given number of quorum servers and won't wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param connectStr
+ *connection string where clients can used for connection
+ *establishment
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected int[] startQuorum(final int serverCount, int ObserverCount,
--- End diff --

ditto about variable ObserverCount being uppercased 


> Test Improvement by adding more QuorumPeer Auth related test cases
> --
>
> Key: ZOOKEEPER-2650
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
> Project: ZooKeeper
>  Issue Type: Test
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> This jira to add more test cases to the ZOOKEEPER-1045 feature.
> Cases:-
> 1) Ensemble with auth enabled Observer.
> 2) Connecting non-auth Observer to auth enabled quorum.
> 3) Quorum re-election with auth enabled servers.



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


[GitHub] zookeeper pull request #131: ZOOKEEPER-2650: Test Improvement by adding more...

2016-12-21 Thread rgs1
Github user rgs1 commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93572633
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
--- End diff --

why is ObserverCount uppercased and also why is not used?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Commented] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769265#comment-15769265
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2650:
---

Github user rgs1 commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93572633
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
--- End diff --

why is ObserverCount uppercased and also why is not used?


> Test Improvement by adding more QuorumPeer Auth related test cases
> --
>
> Key: ZOOKEEPER-2650
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
> Project: ZooKeeper
>  Issue Type: Test
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> This jira to add more test cases to the ZOOKEEPER-1045 feature.
> Cases:-
> 1) Ensemble with auth enabled Observer.
> 2) Connecting non-auth Observer to auth enabled quorum.
> 3) Quorum re-election with auth enabled servers.



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


[GitHub] zookeeper pull request #131: ZOOKEEPER-2650: Test Improvement by adding more...

2016-12-21 Thread rgs1
Github user rgs1 commented on a diff in the pull request:

https://github.com/apache/zookeeper/pull/131#discussion_r93572708
  
--- Diff: 
src/java/test/org/apache/zookeeper/server/quorum/auth/QuorumAuthTestBase.java 
---
@@ -78,15 +78,73 @@ protected String startQuorum(final int serverCount,
 return connectStr.toString();
 }
 
-protected int[] startQuorum(final int serverCount, StringBuilder 
connectStr,
-Map authConfigs, int authServerCount) throws 
IOException {
+/**
+ * Starts the given number of quorum servers and will wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected String startQuorum(final int serverCount, int ObserverCount,
+Map authConfigs, int authServerCount)
+throws IOException {
+StringBuilder connectStr = new StringBuilder();
+final int[] clientPorts = startQuorum(serverCount, 0, connectStr,
+authConfigs, authServerCount);
+for (int i = 0; i < serverCount; i++) {
+Assert.assertTrue("waiting for server " + i + " being up",
+ClientBase.waitForServerUp("127.0.0.1:" + 
clientPorts[i],
+ClientBase.CONNECTION_TIMEOUT));
+}
+return connectStr.toString();
+}
+
+/**
+ * Starts the given number of quorum servers and won't wait for the 
quorum
+ * formation.
+ *
+ * @param serverCount
+ *total server count includes participants + observers
+ * @param ObserverCount
+ *number of observers
+ * @param connectStr
+ *connection string where clients can used for connection
+ *establishment
+ * @param authConfigs
+ *configuration parameters for authentication
+ * @param authServerCount
+ *number of auth enabled servers
+ * @return client port for the respective servers
+ * @throws IOException
+ */
+protected int[] startQuorum(final int serverCount, int ObserverCount,
--- End diff --

ditto about variable ObserverCount being uppercased 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Resolved] (ZOOKEEPER-2652) Fix HierarchicalQuorumTest.java

2016-12-21 Thread Raul Gutierrez Segales (JIRA)

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

Raul Gutierrez Segales resolved ZOOKEEPER-2652.
---
Resolution: Fixed

Issue resolved by pull request 132
[https://github.com/apache/zookeeper/pull/132]

> Fix HierarchicalQuorumTest.java
> ---
>
> Key: ZOOKEEPER-2652
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2652
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.10
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> The commit of ZOOKEEPER-2479 has introduced a compilation error(due to 
> diamond operator usage) in {{branch-3.4}}, which uses {{JDK 1.6}}



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


[jira] [Commented] (ZOOKEEPER-2652) Fix HierarchicalQuorumTest.java

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2652?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769244#comment-15769244
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2652:
---

Github user rgs1 commented on the issue:

https://github.com/apache/zookeeper/pull/132
  
r+ — merging


> Fix HierarchicalQuorumTest.java
> ---
>
> Key: ZOOKEEPER-2652
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2652
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.10
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> The commit of ZOOKEEPER-2479 has introduced a compilation error(due to 
> diamond operator usage) in {{branch-3.4}}, which uses {{JDK 1.6}}



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


[GitHub] zookeeper issue #132: ZOOKEEPER-2652: Fix HierarchicalQuorumTest.java

2016-12-21 Thread rgs1
Github user rgs1 commented on the issue:

https://github.com/apache/zookeeper/pull/132
  
r+ — merging


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Updated] (ZOOKEEPER-2652) Fix HierarchicalQuorumTest.java

2016-12-21 Thread Rakesh R (JIRA)

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

Rakesh R updated ZOOKEEPER-2652:

Fix Version/s: 3.4.10

> Fix HierarchicalQuorumTest.java
> ---
>
> Key: ZOOKEEPER-2652
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2652
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.10
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> The commit of ZOOKEEPER-2479 has introduced a compilation error(due to 
> diamond operator usage) in {{branch-3.4}}, which uses {{JDK 1.6}}



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


[jira] [Commented] (ZOOKEEPER-2652) Fix HierarchicalQuorumTest.java

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2652?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769221#comment-15769221
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2652:
---

GitHub user rakeshadr opened a pull request:

https://github.com/apache/zookeeper/pull/132

ZOOKEEPER-2652: Fix HierarchicalQuorumTest.java



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/rakeshadr/zookeeper-1 ZK-2652

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/zookeeper/pull/132.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #132


commit 93b6f3390e0423d7790118a63a774f42dd041c16
Author: Rakesh Radhakrishnan 
Date:   2016-12-22T06:24:01Z

ZOOKEEPER-2652: Fix HierarchicalQuorumTest.java




> Fix HierarchicalQuorumTest.java
> ---
>
> Key: ZOOKEEPER-2652
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2652
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.10
>Reporter: Rakesh R
>Assignee: Rakesh R
>
> The commit of ZOOKEEPER-2479 has introduced a compilation error(due to 
> diamond operator usage) in {{branch-3.4}}, which uses {{JDK 1.6}}



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


[GitHub] zookeeper pull request #132: ZOOKEEPER-2652: Fix HierarchicalQuorumTest.java

2016-12-21 Thread rakeshadr
GitHub user rakeshadr opened a pull request:

https://github.com/apache/zookeeper/pull/132

ZOOKEEPER-2652: Fix HierarchicalQuorumTest.java



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/rakeshadr/zookeeper-1 ZK-2652

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/zookeeper/pull/132.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #132


commit 93b6f3390e0423d7790118a63a774f42dd041c16
Author: Rakesh Radhakrishnan 
Date:   2016-12-22T06:24:01Z

ZOOKEEPER-2652: Fix HierarchicalQuorumTest.java




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Updated] (ZOOKEEPER-2652) Fix HierarchicalQuorumTest.java

2016-12-21 Thread Rakesh R (JIRA)

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

Rakesh R updated ZOOKEEPER-2652:

Affects Version/s: 3.4.10

> Fix HierarchicalQuorumTest.java
> ---
>
> Key: ZOOKEEPER-2652
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2652
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.10
>Reporter: Rakesh R
>Assignee: Rakesh R
>
> The commit of ZOOKEEPER-2479 has introduced a compilation error(due to 
> diamond operator usage) in {{branch-3.4}}, which uses {{JDK 1.6}}



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


[jira] [Created] (ZOOKEEPER-2652) Fix HierarchicalQuorumTest.java

2016-12-21 Thread Rakesh R (JIRA)
Rakesh R created ZOOKEEPER-2652:
---

 Summary: Fix HierarchicalQuorumTest.java
 Key: ZOOKEEPER-2652
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2652
 Project: ZooKeeper
  Issue Type: Bug
Reporter: Rakesh R
Assignee: Rakesh R


The commit of ZOOKEEPER-2479 has introduced a compilation error(due to diamond 
operator usage) in {{branch-3.4}}, which uses {{JDK 1.6}}



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


ZooKeeper-trunk-solaris - Build # 1434 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-solaris/1434/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 461567 lines...]
[junit] 2016-12-22 05:55:06,903 [myid:] - INFO  [main:ClientBase@386] - 
CREATING server instance 127.0.0.1:11222
[junit] 2016-12-22 05:55:06,904 [myid:] - INFO  
[main:NIOServerCnxnFactory@673] - Configuring NIO connection handler with 10s 
sessionless connection timeout, 2 selector thread(s), 16 worker threads, and 64 
kB direct buffers.
[junit] 2016-12-22 05:55:06,904 [myid:] - INFO  
[main:NIOServerCnxnFactory@686] - binding to port 0.0.0.0/0.0.0.0:11222
[junit] 2016-12-22 05:55:06,905 [myid:] - INFO  [main:ClientBase@361] - 
STARTING server instance 127.0.0.1:11222
[junit] 2016-12-22 05:55:06,905 [myid:] - INFO  [main:ZooKeeperServer@894] 
- minSessionTimeout set to 6000
[junit] 2016-12-22 05:55:06,905 [myid:] - INFO  [main:ZooKeeperServer@903] 
- maxSessionTimeout set to 6
[junit] 2016-12-22 05:55:06,905 [myid:] - INFO  [main:ZooKeeperServer@160] 
- Created server with tickTime 3000 minSessionTimeout 6000 maxSessionTimeout 
6 datadir 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test4479453690911014642.junit.dir/version-2
 snapdir 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test4479453690911014642.junit.dir/version-2
[junit] 2016-12-22 05:55:06,906 [myid:] - INFO  [main:FileSnap@83] - 
Reading snapshot 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test4479453690911014642.junit.dir/version-2/snapshot.b
[junit] 2016-12-22 05:55:06,908 [myid:] - INFO  [main:FileTxnSnapLog@306] - 
Snapshotting: 0xb to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test4479453690911014642.junit.dir/version-2/snapshot.b
[junit] 2016-12-22 05:55:06,909 [myid:] - ERROR [main:ZooKeeperServer@506] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-22 05:55:06,910 [myid:] - INFO  
[main:FourLetterWordMain@85] - connecting to 127.0.0.1 11222
[junit] 2016-12-22 05:55:06,910 [myid:] - INFO  
[NIOServerCxnFactory.AcceptThread:0.0.0.0/0.0.0.0:11222:NIOServerCnxnFactory$AcceptThread@296]
 - Accepted socket connection from /127.0.0.1:43559
[junit] 2016-12-22 05:55:06,911 [myid:] - INFO  
[NIOWorkerThread-1:NIOServerCnxn@485] - Processing stat command from 
/127.0.0.1:43559
[junit] 2016-12-22 05:55:06,911 [myid:] - INFO  
[NIOWorkerThread-1:StatCommand@49] - Stat command output
[junit] 2016-12-22 05:55:06,911 [myid:] - INFO  
[NIOWorkerThread-1:NIOServerCnxn@611] - Closed socket connection for client 
/127.0.0.1:43559 (no session established for client)
[junit] 2016-12-22 05:55:06,911 [myid:] - INFO  [main:JMXEnv@228] - 
ensureParent:[InMemoryDataTree, StandaloneServer_port]
[junit] 2016-12-22 05:55:06,913 [myid:] - INFO  [main:JMXEnv@245] - 
expect:InMemoryDataTree
[junit] 2016-12-22 05:55:06,913 [myid:] - INFO  [main:JMXEnv@249] - 
found:InMemoryDataTree 
org.apache.ZooKeeperService:name0=StandaloneServer_port11222,name1=InMemoryDataTree
[junit] 2016-12-22 05:55:06,913 [myid:] - INFO  [main:JMXEnv@245] - 
expect:StandaloneServer_port
[junit] 2016-12-22 05:55:06,913 [myid:] - INFO  [main:JMXEnv@249] - 
found:StandaloneServer_port 
org.apache.ZooKeeperService:name0=StandaloneServer_port11222
[junit] 2016-12-22 05:55:06,913 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 17813
[junit] 2016-12-22 05:55:06,914 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 24
[junit] 2016-12-22 05:55:06,914 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testQuota
[junit] 2016-12-22 05:55:06,914 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-22 05:55:06,994 [myid:] - INFO  [main:ZooKeeper@1313] - 
Session: 0x125a212b904 closed
[junit] 2016-12-22 05:55:06,994 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x125a212b904
[junit] 2016-12-22 05:55:06,994 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-22 05:55:06,995 [myid:] - INFO  
[NIOServerCxnFactory.AcceptThread:0.0.0.0/0.0.0.0:11222:NIOServerCnxnFactory$AcceptThread@219]
 - accept thread exitted run method
[junit] 2016-12-22 05:55:06,996 [myid:] - INFO  
[ConnnectionExpirer:NIOServerCnxnFactory$ConnectionExpirerThread@583] - 
ConnnectionExpirerThread interrupted
[junit] 2016-12-22 05:55:06,996 [myid:] - INFO  

ZooKeeper_branch34_openjdk7 - Build # 1317 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_openjdk7/1317/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 218 lines...]
[ivy:retrieve]  found antlr#antlr;2.7.6 in maven2
[ivy:retrieve]  found commons-beanutils#commons-beanutils-core;1.7.0 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 768ms :: artifacts dl 45ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/124ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.6
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.6
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build.xml:407:
 Compile failed; see the compiler error output for details.

Total time: 11 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ‘Publish JUnit test result report’ failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch34_jdk8 - Build # 813 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_jdk8/813/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 218 lines...]
[ivy:retrieve]  found antlr#antlr;2.7.6 in maven2
[ivy:retrieve]  found commons-beanutils#commons-beanutils-core;1.7.0 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 787ms :: artifacts dl 20ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/51ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.6
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.6
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build.xml:407: 
Compile failed; see the compiler error output for details.

Total time: 14 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk-WinVS2008 - Build # 2375 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-WinVS2008/2375/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 93 lines...]
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.5 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.5 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.2 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found io.netty#netty;3.10.5.Final in maven2
[ivy:retrieve]  found net.java.dev.javacc#javacc;5.0 in maven2
[ivy:retrieve] :: resolution report :: resolve 403ms :: artifacts dl 23ms
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|  default |   16  |   0   |   0   |   0   ||   16  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [default]
[ivy:retrieve]  16 artifacts copied, 0 already retrieved (4635kB/80ms)

generate_jute_parser:
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\jute_compiler\org\apache\jute\compiler\generated
[ivy:artifactproperty] DEPRECATED: 'ivy.conf.file' is deprecated, use 
'ivy.settings.file' instead
[ivy:artifactproperty] :: loading settings :: file = 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\ivysettings.xml
 [move] Moving 1 file to 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\lib
   [javacc] Java Compiler Compiler Version 5.0 (Parser Generator)
   [javacc] (type "javacc" with no arguments for help)
   [javacc] Reading from file 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\main\org\apache\jute\compiler\generated\rcc.jj
 . . .
   [javacc] File "TokenMgrError.java" does not exist.  Will create one.
   [javacc] File "ParseException.java" does not exist.  Will create one.
   [javacc] File "Token.java" does not exist.  Will create one.
   [javacc] File "SimpleCharStream.java" does not exist.  Will create one.
   [javacc] Parser generated successfully.

jute:
[javac] Compiling 39 source files to 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.7
[javac] 1 warning

compile_jute_uptodate:

compile_jute:
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\generated
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\c\generated
 [java] ../../zookeeper.jute Parsed Successfully
 [java] ../../zookeeper.jute Parsed Successfully
[touch] Creating 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\generated\.generated

BUILD SUCCESSFUL
Total time: 5 seconds
[ZooKeeper-trunk-WinVS2008] $ cmd /c call 
C:\Users\jenkins\AppData\Local\Temp\1\hudson5979167414982604159.bat

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>set 
ZOOKEEPER_HOME=f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008 

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>msbuild 
src/c/zookeeper.sln /p:Configuration=Release 
'msbuild' is not recognized as an internal or external command,
operable program or batch file.

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>exit 9009 
Build step 'Execute Windows batch command' marked build as failure
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch34_jdk7 - Build # 1336 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_jdk7/1336/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 218 lines...]
[ivy:retrieve]  found antlr#antlr;2.7.6 in maven2
[ivy:retrieve]  found commons-beanutils#commons-beanutils-core;1.7.0 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 657ms :: artifacts dl 21ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/27ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.6
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.6
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build.xml:407: 
Compile failed; see the compiler error output for details.

Total time: 11 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch34 - Build # 1765 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34/1765/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 776 lines...]
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 669ms :: artifacts dl 23ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/35ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.6
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.6
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build.xml:407: Compile 
failed; see the compiler error output for details.

Total time: 33 seconds
mv: cannot stat 'build/*.tar.gz': No such file or directory
mv: cannot stat 'build/test/findbugs': No such file or directory
Build Failed
Build step 'Execute shell' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

Failed: ZOOKEEPER- PreCommit Build #142

2016-12-21 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/PreCommit-ZOOKEEPER-github-pr-build/142/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 30 lines...]
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
at ..remote call to H7(Native Method)
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1416)
at hudson.remoting.UserResponse.retrieve(UserRequest.java:253)
at hudson.remoting.Channel.call(Channel.java:781)
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:249)
at com.sun.proxy.$Proxy90.checkoutBranch(Unknown Source)
at 
org.jenkinsci.plugins.gitclient.RemoteGitImpl.checkoutBranch(RemoteGitImpl.java:327)
at 
com.cloudbees.jenkins.plugins.git.vmerge.BuildChooserImpl.getCandidateRevisions(BuildChooserImpl.java:78)
at hudson.plugins.git.GitSCM.determineRevisionToBuild(GitSCM.java:984)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1087)
at hudson.scm.SCM.checkout(SCM.java:485)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1269)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1741)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:410)
Caused by: hudson.plugins.git.GitException: Command "git checkout -f 
origin/trunk" returned status code 1:
stdout: 
stderr: error: pathspec 'origin/trunk' did not match any file(s) known to git.

at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1723)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1699)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1695)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1317)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1329)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl$9.execute(CliGitAPIImpl.java:1979)
at 
org.jenkinsci.plugins.gitclient.AbstractGitAPIImpl.checkoutBranch(AbstractGitAPIImpl.java:82)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.checkoutBranch(CliGitAPIImpl.java:63)
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:606)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(RemoteInvocationHandler.java:884)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:859)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:818)
at hudson.remoting.UserRequest.perform(UserRequest.java:153)
at hudson.remoting.UserRequest.perform(UserRequest.java:50)
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
Archiving artifacts
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
[description-setter] Could not determine description.
Putting comment on the pull request
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Resolved] (ZOOKEEPER-2646) Java target in branch 3.4 doesn't match documentation

2016-12-21 Thread Michael Han (JIRA)

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

Michael Han resolved ZOOKEEPER-2646.

Resolution: Fixed

Issue resolved by pull request 127
[https://github.com/apache/zookeeper/pull/127]

> Java target in branch 3.4 doesn't match documentation 
> --
>
> Key: ZOOKEEPER-2646
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2646
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.9
>Reporter: Flavio Junqueira
>Assignee: Flavio Junqueira
> Fix For: 3.4.10
>
>
> Need to update build.xml 1.5->1.6.



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


[jira] [Commented] (ZOOKEEPER-2646) Java target in branch 3.4 doesn't match documentation

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2646?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769041#comment-15769041
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2646:
---

Github user hanm commented on the issue:

https://github.com/apache/zookeeper/pull/127
  
LGTM.


> Java target in branch 3.4 doesn't match documentation 
> --
>
> Key: ZOOKEEPER-2646
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2646
> Project: ZooKeeper
>  Issue Type: Bug
>Affects Versions: 3.4.9
>Reporter: Flavio Junqueira
>Assignee: Flavio Junqueira
> Fix For: 3.4.10
>
>
> Need to update build.xml 1.5->1.6.



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


[GitHub] zookeeper issue #127: ZOOKEEPER-2646: Java target in branch 3.4 doesn't matc...

2016-12-21 Thread hanm
Github user hanm commented on the issue:

https://github.com/apache/zookeeper/pull/127
  
LGTM.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Commented] (ZOOKEEPER-2479) Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean

2016-12-21 Thread Michael Han (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2479?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15769038#comment-15769038
 ] 

Michael Han commented on ZOOKEEPER-2479:


[~rakeshr] A small change is required for this patch as it breaks apache builds 
for branch-3.4 which uses JDK 1.6 (it's actually using JDK 1.5 but that will be 
fixed by ZOOKEEPER-2646), where diamond operator was not available. 
https://github.com/apache/zookeeper/commit/52d365041759229ddc46798e34ee845fc1e26732#diff-3d1cc56cfc8e62939e368f3522cfc8a1R146





> Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean
> 
>
> Key: ZOOKEEPER-2479
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2479
> Project: ZooKeeper
>  Issue Type: Improvement
>  Components: quorum
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch
>
>
> The idea of this jira is to expose {{time taken}} for the leader election via 
> jmx Leader, Follower beans.



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


ZooKeeper_branch35_openjdk7 - Build # 341 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch35_openjdk7/341/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 471144 lines...]
[junit] at 
org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)
[junit] at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
[junit] at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
[junit] at java.lang.Thread.run(Thread.java:745)
[junit] 2016-12-22 04:38:36,759 [myid:] - INFO  
[SyncThread:0:MBeanRegistry@128] - Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port30317,name1=Connections,name2=127.0.0.1,name3=0x100e4fd9384]
[junit] 2016-12-22 04:38:36,859 [myid:] - INFO  [main:ZooKeeper@1311] - 
Session: 0x100e4fd9384 closed
[junit] 2016-12-22 04:38:36,860 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x100e4fd9384
[junit] 2016-12-22 04:38:36,860 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 122268
[junit] 2016-12-22 04:38:36,860 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 466
[junit] 2016-12-22 04:38:36,861 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testWatcherAutoResetWithLocal
[junit] 2016-12-22 04:38:36,861 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-22 04:38:36,861 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-22 04:38:36,861 [myid:] - INFO  
[main:NettyServerCnxnFactory@464] - shutdown called 0.0.0.0/0.0.0.0:30317
[junit] 2016-12-22 04:38:36,864 [myid:] - INFO  [main:ZooKeeperServer@533] 
- shutting down
[junit] 2016-12-22 04:38:36,864 [myid:] - ERROR [main:ZooKeeperServer@505] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-22 04:38:36,864 [myid:] - INFO  
[main:SessionTrackerImpl@232] - Shutting down
[junit] 2016-12-22 04:38:36,864 [myid:] - INFO  
[main:PrepRequestProcessor@974] - Shutting down
[junit] 2016-12-22 04:38:36,865 [myid:] - INFO  
[main:SyncRequestProcessor@191] - Shutting down
[junit] 2016-12-22 04:38:36,865 [myid:] - INFO  
[SyncThread:0:SyncRequestProcessor@169] - SyncRequestProcessor exited!
[junit] 2016-12-22 04:38:36,865 [myid:] - INFO  [ProcessThread(sid:0 
cport:30317)::PrepRequestProcessor@154] - PrepRequestProcessor exited loop!
[junit] 2016-12-22 04:38:36,865 [myid:] - INFO  
[main:FinalRequestProcessor@479] - shutdown of request processor complete
[junit] 2016-12-22 04:38:36,866 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port30317,name1=InMemoryDataTree]
[junit] 2016-12-22 04:38:36,866 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean [org.apache.ZooKeeperService:name0=StandaloneServer_port30317]
[junit] 2016-12-22 04:38:36,866 [myid:] - INFO  
[main:FourLetterWordMain@85] - connecting to 127.0.0.1 30317
[junit] 2016-12-22 04:38:36,867 [myid:] - INFO  [main:JMXEnv@146] - 
ensureOnly:[]
[junit] 2016-12-22 04:38:36,873 [myid:] - INFO  [main:ClientBase@568] - 
fdcount after test is: 1387 at start it was 1387
[junit] 2016-12-22 04:38:36,874 [myid:] - INFO  [main:ZKTestCase$1@65] - 
SUCCEEDED testWatcherAutoResetWithLocal
[junit] 2016-12-22 04:38:36,874 [myid:] - INFO  [main:ZKTestCase$1@60] - 
FINISHED testWatcherAutoResetWithLocal
[junit] 2016-12-22 04:38:36,874 [myid:127.0.0.1:30073] - INFO  
[main-SendThread(127.0.0.1:30073):ClientCnxn$SendThread@1113] - Opening socket 
connection to server 127.0.0.1/127.0.0.1:30073. Will not attempt to 
authenticate using SASL (unknown error)
[junit] 2016-12-22 04:38:36,875 [myid:127.0.0.1:30073] - WARN  
[main-SendThread(127.0.0.1:30073):ClientCnxn$SendThread@1235] - Session 
0x100e4f6cb63 for server 127.0.0.1/127.0.0.1:30073, unexpected error, 
closing socket connection and attempting reconnect
[junit] java.net.ConnectException: Connection refused
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:744)
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)
[junit] Tests run: 101, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
451.445 sec, Thread: 8, Class: org.apache.zookeeper.test.NioNettySuiteTest
[junit] 2016-12-22 04:38:36,931 [myid:127.0.0.1:30200] - INFO  
[main-SendThread(127.0.0.1:30200):ClientCnxn$SendThread@1113] - Opening socket 

ZooKeeper_branch34 - Build # 1764 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34/1764/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 768 lines...]
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 670ms :: artifacts dl 22ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/35ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build.xml:407: Compile 
failed; see the compiler error output for details.

Total time: 33 seconds
mv: cannot stat 'build/*.tar.gz': No such file or directory
mv: cannot stat 'build/test/findbugs': No such file or directory
Build Failed
Build step 'Execute shell' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk-openjdk7 - Build # 1290 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-openjdk7/1290/

###
## LAST 60 LINES OF THE CONSOLE 
###
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on H17 (ubuntu) in workspace 
/home/jenkins/jenkins-slave/workspace/ZooKeeper-trunk-openjdk7
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url git://git.apache.org/zookeeper.git # timeout=10
Cleaning workspace
 > git rev-parse --verify HEAD # timeout=10
Resetting working tree
 > git reset --hard # timeout=10
 > git clean -fdx # timeout=10
Fetching upstream changes from git://git.apache.org/zookeeper.git
 > git --version # timeout=10
 > git -c core.askpass=true fetch --tags --progress 
 > git://git.apache.org/zookeeper.git +refs/heads/*:refs/remotes/origin/*
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
 > git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10
Checking out Revision ef0a8ae686c100f1dc71d7526af962c635696466 
(refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f ef0a8ae686c100f1dc71d7526af962c635696466
 > git rev-list eac693cc76a34f96b9116ef33d1e92af7129416d # timeout=10
No emails were triggered.
[ZooKeeper-trunk-openjdk7] $ /home/jenkins/tools/ant/latest/bin/ant 
-Dtest.output=yes -Dtest.junit.threads=8 -Dtest.junit.output.format=xml 
-Djavac.target=1.7 clean test-core-java
Error: JAVA_HOME is not defined correctly.
  We cannot execute /usr/lib/jvm/java-7-openjdk-amd64//bin/java
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch35_jdk8 - Build # 345 - Failure

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch35_jdk8/345/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 478863 lines...]
[junit] at 
org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)
[junit] at 
org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)
[junit] at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
[junit] at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
[junit] at java.lang.Thread.run(Thread.java:745)
[junit] 2016-12-22 04:24:02,088 [myid:] - WARN  [New I/O boss 
#2718:ClientCnxnSocketNetty$ZKClientHandler@439] - Exception caught: [id: 
0x0f3a2894] EXCEPTION: java.net.ConnectException: Connection refused: 
127.0.0.1/127.0.0.1:14036
[junit] java.net.ConnectException: Connection refused: 
127.0.0.1/127.0.0.1:14036
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.connect(NioClientBoss.java:152)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.processSelectedKeys(NioClientBoss.java:105)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.process(NioClientBoss.java:79)
[junit] at 
org.jboss.netty.channel.socket.nio.AbstractNioSelector.run(AbstractNioSelector.java:337)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.run(NioClientBoss.java:42)
[junit] at 
org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)
[junit] at 
org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)
[junit] at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
[junit] at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
[junit] at java.lang.Thread.run(Thread.java:745)
[junit] 2016-12-22 04:24:02,088 [myid:] - INFO  [New I/O boss 
#2718:ClientCnxnSocketNetty@208] - channel is told closing
[junit] 2016-12-22 04:24:02,089 [myid:127.0.0.1:14036] - INFO  
[main-SendThread(127.0.0.1:14036):ClientCnxn$SendThread@1231] - channel for 
sessionid 0x1026a942f16 is lost, closing socket connection and attempting 
reconnect
[junit] 2016-12-22 04:24:02,230 [myid:] - INFO  [ProcessThread(sid:0 
cport:14159)::PrepRequestProcessor@656] - Processed session termination for 
sessionid: 0x1026a97191a
[junit] 2016-12-22 04:24:02,233 [myid:] - INFO  
[main:ClientCnxnSocketNetty@208] - channel is told closing
[junit] 2016-12-22 04:24:02,233 [myid:] - INFO  [main:ZooKeeper@1311] - 
Session: 0x1026a97191a closed
[junit] 2016-12-22 04:24:02,233 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 68661
[junit] 2016-12-22 04:24:02,233 [myid:] - INFO  
[SyncThread:0:MBeanRegistry@128] - Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port14159,name1=Connections,name2=127.0.0.1,name3=0x1026a97191a]
[junit] 2016-12-22 04:24:02,233 [myid:] - INFO  [New I/O worker 
#4369:ClientCnxnSocketNetty$ZKClientHandler@384] - channel is disconnected: 
[id: 0xc7007e98, /127.0.0.1:49604 :> 127.0.0.1/127.0.0.1:14159]
[junit] 2016-12-22 04:24:02,234 [myid:] - INFO  [New I/O worker 
#4369:ClientCnxnSocketNetty@208] - channel is told closing
[junit] 2016-12-22 04:24:02,233 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 517
[junit] 2016-12-22 04:24:02,234 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testWatcherAutoResetWithLocal
[junit] 2016-12-22 04:24:02,234 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-22 04:24:02,234 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-22 04:24:02,233 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x1026a97191a
[junit] 2016-12-22 04:24:02,234 [myid:] - INFO  
[main:NettyServerCnxnFactory@464] - shutdown called 0.0.0.0/0.0.0.0:14159
[junit] 2016-12-22 04:24:02,236 [myid:] - INFO  [main:ZooKeeperServer@533] 
- shutting down
[junit] 2016-12-22 04:24:02,236 [myid:] - ERROR [main:ZooKeeperServer@505] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-22 04:24:02,236 [myid:] - INFO  
[main:SessionTrackerImpl@232] - Shutting down
[junit] 2016-12-22 04:24:02,236 [myid:] - INFO  
[main:PrepRequestProcessor@974] - Shutting down
[junit] 2016-12-22 04:24:02,236 [myid:] - INFO  
[main:SyncRequestProcessor@191] - Shutting 

[jira] [Commented] (ZOOKEEPER-2383) Startup race in ZooKeeperServer

2016-12-21 Thread Rakesh R (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15768992#comment-15768992
 ] 

Rakesh R commented on ZOOKEEPER-2383:
-

Thank you [~fpj] for the help in resolving this.
bq. pull request #101 merged fine onto master, but not branch 3.5. I haven't 
tried branch 3.4.
I've tried cherry pick the commits to branch-3.5 locally and it worked. Is 
there anything specific to be done to {{branch 3.5}}?. But it requires a 
separate PR for {{branch 3.4}} as the code is different from master branch, 
I'will create a PR for {{branch 3.4}} shortly.

> Startup race in ZooKeeperServer
> ---
>
> Key: ZOOKEEPER-2383
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2383
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: jmx, server
>Affects Versions: 3.4.8
>Reporter: Steve Rowe
>Assignee: Rakesh R
>Priority: Blocker
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: TestZkStandaloneJMXRegistrationRaceConcurrent.java, 
> ZOOKEEPER-2383-br-3-4.patch, ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> release-3.4.8-extra-logging.patch, zk-3.4.8-MBeanRegistry.log, 
> zk-3.4.8-NPE.log
>
>
> In attempting to upgrade Solr's ZooKeeper dependency from 3.4.6 to 3.4.8 
> (SOLR-8724) I ran into test failures where attempts to create a node in a 
> newly started standalone ZooKeeperServer were failing because of an assertion 
> in MBeanRegistry.
> ZooKeeperServer.startup() first sets up its request processor chain then 
> registers itself in JMX, but if a connection comes in before the server's JMX 
> registration happens, registration of the connection will fail because it 
> trips the assertion that (effectively) its parent (the server) has already 
> registered itself.
> {code:java|title=ZooKeeperServer.java}
> public synchronized void startup() {
> if (sessionTracker == null) {
> createSessionTracker();
> }
> startSessionTracker();
> setupRequestProcessors();
> registerJMX();
> state = State.RUNNING;
> notifyAll();
> }
> {code}
> {code:java|title=MBeanRegistry.java}
> public void register(ZKMBeanInfo bean, ZKMBeanInfo parent)
> throws JMException
> {
> assert bean != null;
> String path = null;
> if (parent != null) {
> path = mapBean2Path.get(parent);
> assert path != null;
> }
> {code}
> This problem appears to be new with ZK 3.4.8 - AFAIK Solr never had this 
> issue with ZK 3.4.6. 



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


ZooKeeper-trunk-jdk8 - Build # 868 - Failure

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-jdk8/868/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 473377 lines...]
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)
[junit] 2016-12-22 04:50:13,171 [myid:127.0.0.1:30194] - INFO  
[main-SendThread(127.0.0.1:30194):ClientCnxn$SendThread@1113] - Opening socket 
connection to server 127.0.0.1/127.0.0.1:30194. Will not attempt to 
authenticate using SASL (unknown error)
[junit] 2016-12-22 04:50:13,172 [myid:127.0.0.1:30194] - WARN  
[main-SendThread(127.0.0.1:30194):ClientCnxn$SendThread@1235] - Session 
0x1014fda424c for server 127.0.0.1/127.0.0.1:30194, unexpected error, 
closing socket connection and attempting reconnect
[junit] java.net.ConnectException: Connection refused
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)
[junit] 2016-12-22 04:50:13,278 [myid:] - INFO  [ProcessThread(sid:0 
cport:30317)::PrepRequestProcessor@618] - Processed session termination for 
sessionid: 0x1014fdda208
[junit] 2016-12-22 04:50:13,290 [myid:] - INFO  [main:ZooKeeper@1313] - 
Session: 0x1014fdda208 closed
[junit] 2016-12-22 04:50:13,290 [myid:] - INFO  
[SyncThread:0:MBeanRegistry@128] - Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port30317,name1=Connections,name2=127.0.0.1,name3=0x1014fdda208]
[junit] 2016-12-22 04:50:13,290 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 238591
[junit] 2016-12-22 04:50:13,291 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 2428
[junit] 2016-12-22 04:50:13,291 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testWatcherAutoResetWithLocal
[junit] 2016-12-22 04:50:13,291 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-22 04:50:13,291 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-22 04:50:13,291 [myid:] - INFO  
[main:NettyServerCnxnFactory@464] - shutdown called 0.0.0.0/0.0.0.0:30317
[junit] 2016-12-22 04:50:13,290 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x1014fdda208
[junit] 2016-12-22 04:50:13,297 [myid:] - INFO  [main:ZooKeeperServer@534] 
- shutting down
[junit] 2016-12-22 04:50:13,297 [myid:] - ERROR [main:ZooKeeperServer@506] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-22 04:50:13,298 [myid:] - INFO  
[main:SessionTrackerImpl@232] - Shutting down
[junit] 2016-12-22 04:50:13,298 [myid:] - INFO  
[main:PrepRequestProcessor@1009] - Shutting down
[junit] 2016-12-22 04:50:13,298 [myid:] - INFO  
[main:SyncRequestProcessor@191] - Shutting down
[junit] 2016-12-22 04:50:13,298 [myid:] - INFO  
[SyncThread:0:SyncRequestProcessor@169] - SyncRequestProcessor exited!
[junit] 2016-12-22 04:50:13,298 [myid:] - INFO  [ProcessThread(sid:0 
cport:30317)::PrepRequestProcessor@157] - PrepRequestProcessor exited loop!
[junit] 2016-12-22 04:50:13,298 [myid:] - INFO  
[main:FinalRequestProcessor@481] - shutdown of request processor complete
[junit] 2016-12-22 04:50:13,305 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port30317,name1=InMemoryDataTree]
[junit] 2016-12-22 04:50:13,305 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean [org.apache.ZooKeeperService:name0=StandaloneServer_port30317]
[junit] 2016-12-22 04:50:13,355 [myid:] - INFO  
[main:FourLetterWordMain@85] - connecting to 127.0.0.1 30317
[junit] 2016-12-22 04:50:13,355 [myid:] - INFO  [main:JMXEnv@146] - 
ensureOnly:[]
[junit] 2016-12-22 04:50:13,375 [myid:] - INFO  [main:ClientBase@568] - 
fdcount after test is: 7138 at start it was 7138
[junit] 2016-12-22 04:50:13,375 [myid:] - INFO  [main:ZKTestCase$1@65] - 
SUCCEEDED testWatcherAutoResetWithLocal
[junit] 2016-12-22 04:50:13,375 [myid:] - INFO  [main:ZKTestCase$1@60] - 
FINISHED testWatcherAutoResetWithLocal
[junit] Tests run: 101, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
472.01 sec, Thread: 8, Class: org.apache.zookeeper.test.NioNettySuiteTest
[junit] 2016-12-22 04:50:13,559 [myid:127.0.0.1:30073] - INFO  
[main-SendThread(127.0.0.1:30073):ClientCnxn$SendThread@1113] - Opening socket 

ZooKeeper_branch34_openjdk7 - Build # 1316 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_openjdk7/1316/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 286 lines...]
[ivy:retrieve] downloading 
https://repo1.maven.org/maven2/org/apache/kerby/kerb-crypto/1.0.0-RC2/kerb-crypto-1.0.0-RC2.jar
 ...
[ivy:retrieve] ... (112kB)
[ivy:retrieve] .. (0kB)
[ivy:retrieve]  [SUCCESSFUL ] 
org.apache.kerby#kerb-crypto;1.0.0-RC2!kerb-crypto.jar (34ms)
[ivy:retrieve] downloading 
https://repo1.maven.org/maven2/org/apache/kerby/kerby-util/1.0.0-RC2/kerby-util-1.0.0-RC2.jar
 ...
[ivy:retrieve] .. (38kB)
[ivy:retrieve] .. (0kB)
[ivy:retrieve]  [SUCCESSFUL ] 
org.apache.kerby#kerby-util;1.0.0-RC2!kerby-util.jar (26ms)
[ivy:retrieve] downloading 
https://repo1.maven.org/maven2/org/apache/kerby/kerby-asn1/1.0.0-RC2/kerby-asn1-1.0.0-RC2.jar
 ...
[ivy:retrieve] .. (98kB)
[ivy:retrieve] .. (0kB)
[ivy:retrieve]  [SUCCESSFUL ] 
org.apache.kerby#kerby-asn1;1.0.0-RC2!kerby-asn1.jar (32ms)
[ivy:retrieve] downloading 
https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.14/slf4j-api-1.7.14.jar 
...
[ivy:retrieve] .. (32kB)
[ivy:retrieve] .. (0kB)
[ivy:retrieve]  [SUCCESSFUL ] org.slf4j#slf4j-api;1.7.14!slf4j-api.jar (28ms)
[ivy:retrieve] downloading 
https://repo1.maven.org/maven2/org/slf4j/slf4j-log4j12/1.7.14/slf4j-log4j12-1.7.14.jar
 ...
[ivy:retrieve] . (9kB)
[ivy:retrieve] .. (0kB)
[ivy:retrieve]  [SUCCESSFUL ] org.slf4j#slf4j-log4j12;1.7.14!slf4j-log4j12.jar 
(26ms)
[ivy:retrieve] downloading 
https://repo1.maven.org/maven2/org/apache/kerby/kerby-pkix/1.0.0-RC2/kerby-pkix-1.0.0-RC2.jar
 ...
[ivy:retrieve]  (199kB)
[ivy:retrieve] .. (0kB)
[ivy:retrieve]  [SUCCESSFUL ] 
org.apache.kerby#kerby-pkix;1.0.0-RC2!kerby-pkix.jar (40ms)
[ivy:retrieve] :: resolution report :: resolve 3152ms :: artifacts dl 576ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   16  |   16  |   3   ||   27  |   16  |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/173ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build.xml:407:
 Compile failed; see the compiler error output for details.

Total time: 15 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch35_jdk7 - Build # 776 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch35_jdk7/776/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 487368 lines...]
[junit] at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
[junit] at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
[junit] at java.lang.Thread.run(Thread.java:745)
[junit] 2016-12-22 03:53:14,382 [myid:] - WARN  [New I/O boss 
#9966:ClientCnxnSocketNetty$ZKClientHandler@439] - Exception caught: [id: 
0xcf8ddc45] EXCEPTION: java.net.ConnectException: Connection refused: 
127.0.0.1/127.0.0.1:19422
[junit] java.net.ConnectException: Connection refused: 
127.0.0.1/127.0.0.1:19422
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:744)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.connect(NioClientBoss.java:152)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.processSelectedKeys(NioClientBoss.java:105)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.process(NioClientBoss.java:79)
[junit] at 
org.jboss.netty.channel.socket.nio.AbstractNioSelector.run(AbstractNioSelector.java:337)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.run(NioClientBoss.java:42)
[junit] at 
org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)
[junit] at 
org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)
[junit] at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
[junit] at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
[junit] at java.lang.Thread.run(Thread.java:745)
[junit] 2016-12-22 03:53:14,382 [myid:] - INFO  [New I/O boss 
#9966:ClientCnxnSocketNetty@208] - channel is told closing
[junit] 2016-12-22 03:53:14,382 [myid:127.0.0.1:19422] - INFO  
[main-SendThread(127.0.0.1:19422):ClientCnxn$SendThread@1231] - channel for 
sessionid 0x1013c2fab70 is lost, closing socket connection and attempting 
reconnect
[junit] 2016-12-22 03:53:14,564 [myid:127.0.0.1:19425] - INFO  
[main-SendThread(127.0.0.1:19425):ClientCnxn$SendThread@1113] - Opening socket 
connection to server 127.0.0.1/127.0.0.1:19425. Will not attempt to 
authenticate using SASL (unknown error)
[junit] 2016-12-22 03:53:14,565 [myid:] - INFO  [New I/O boss 
#:ClientCnxnSocketNetty$1@127] - future isn't success, cause: {}
[junit] java.net.ConnectException: Connection refused: 
127.0.0.1/127.0.0.1:19425
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:744)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.connect(NioClientBoss.java:152)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.processSelectedKeys(NioClientBoss.java:105)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.process(NioClientBoss.java:79)
[junit] at 
org.jboss.netty.channel.socket.nio.AbstractNioSelector.run(AbstractNioSelector.java:337)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.run(NioClientBoss.java:42)
[junit] at 
org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)
[junit] at 
org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)
[junit] at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
[junit] at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
[junit] at java.lang.Thread.run(Thread.java:745)
[junit] 2016-12-22 03:53:14,565 [myid:] - WARN  [New I/O boss 
#:ClientCnxnSocketNetty$ZKClientHandler@439] - Exception caught: [id: 
0x7728f46c] EXCEPTION: java.net.ConnectException: Connection refused: 
127.0.0.1/127.0.0.1:19425
[junit] java.net.ConnectException: Connection refused: 
127.0.0.1/127.0.0.1:19425
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:744)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.connect(NioClientBoss.java:152)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.processSelectedKeys(NioClientBoss.java:105)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.process(NioClientBoss.java:79)
[junit] at 
org.jboss.netty.channel.socket.nio.AbstractNioSelector.run(AbstractNioSelector.java:337)
[junit] at 
org.jboss.netty.channel.socket.nio.NioClientBoss.run(NioClientBoss.java:42)

ZooKeeper_branch34_jdk8 - Build # 812 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_jdk8/812/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 228 lines...]
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 1533ms :: artifacts dl 19ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/453ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] warning: [options] source value 1.5 is obsolete and will be removed 
in a future release
[javac] warning: [options] To suppress warnings about obsolete options, use 
-Xlint:-options.
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 3 warnings

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build.xml:407: 
Compile failed; see the compiler error output for details.

Total time: 17 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk - Build # 3206 - Failure

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk/3206/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 474265 lines...]
[junit] java.net.ConnectException: Connection refused
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:744)
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)
[junit] 2016-12-22 03:27:39,620 [myid:] - INFO  [main:ZooKeeper@1313] - 
Session: 0x10261ed7fe5 closed
[junit] 2016-12-22 03:27:39,620 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 171409
[junit] 2016-12-22 03:27:39,620 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 1644
[junit] 2016-12-22 03:27:39,621 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testWatcherAutoResetWithLocal
[junit] 2016-12-22 03:27:39,621 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-22 03:27:39,621 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-22 03:27:39,621 [myid:] - INFO  
[main:NettyServerCnxnFactory@464] - shutdown called 0.0.0.0/0.0.0.0:14159
[junit] 2016-12-22 03:27:39,620 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x10261ed7fe5
[junit] 2016-12-22 03:27:39,626 [myid:] - INFO  [main:ZooKeeperServer@534] 
- shutting down
[junit] 2016-12-22 03:27:39,626 [myid:] - ERROR [main:ZooKeeperServer@506] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-22 03:27:39,627 [myid:] - INFO  
[main:SessionTrackerImpl@232] - Shutting down
[junit] 2016-12-22 03:27:39,627 [myid:] - INFO  
[main:PrepRequestProcessor@1009] - Shutting down
[junit] 2016-12-22 03:27:39,627 [myid:] - INFO  
[main:SyncRequestProcessor@191] - Shutting down
[junit] 2016-12-22 03:27:39,627 [myid:] - INFO  [ProcessThread(sid:0 
cport:14159)::PrepRequestProcessor@157] - PrepRequestProcessor exited loop!
[junit] 2016-12-22 03:27:39,627 [myid:] - INFO  
[SyncThread:0:SyncRequestProcessor@169] - SyncRequestProcessor exited!
[junit] 2016-12-22 03:27:39,627 [myid:] - INFO  
[main:FinalRequestProcessor@481] - shutdown of request processor complete
[junit] 2016-12-22 03:27:39,627 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port14159,name1=InMemoryDataTree]
[junit] 2016-12-22 03:27:39,628 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean [org.apache.ZooKeeperService:name0=StandaloneServer_port14159]
[junit] 2016-12-22 03:27:39,646 [myid:] - INFO  
[main:FourLetterWordMain@85] - connecting to 127.0.0.1 14159
[junit] 2016-12-22 03:27:39,647 [myid:] - INFO  [main:JMXEnv@146] - 
ensureOnly:[]
[junit] 2016-12-22 03:27:39,670 [myid:] - INFO  [main:ClientBase@568] - 
fdcount after test is: 4828 at start it was 4828
[junit] 2016-12-22 03:27:39,670 [myid:] - INFO  [main:ZKTestCase$1@65] - 
SUCCEEDED testWatcherAutoResetWithLocal
[junit] 2016-12-22 03:27:39,670 [myid:] - INFO  [main:ZKTestCase$1@60] - 
FINISHED testWatcherAutoResetWithLocal
[junit] Tests run: 101, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
473.095 sec, Thread: 2, Class: org.apache.zookeeper.test.NioNettySuiteTest
[junit] 2016-12-22 03:27:39,769 [myid:127.0.0.1:13915] - INFO  
[main-SendThread(127.0.0.1:13915):ClientCnxn$SendThread@1113] - Opening socket 
connection to server 127.0.0.1/127.0.0.1:13915. Will not attempt to 
authenticate using SASL (unknown error)
[junit] 2016-12-22 03:27:39,770 [myid:127.0.0.1:13915] - WARN  
[main-SendThread(127.0.0.1:13915):ClientCnxn$SendThread@1235] - Session 
0x10261e664f3 for server 127.0.0.1/127.0.0.1:13915, unexpected error, 
closing socket connection and attempting reconnect
[junit] java.net.ConnectException: Connection refused
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:744)
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper-trunk/build.xml:1324: The 
following error occurred while executing this line:
/home/jenkins/jenkins-slave/workspace/ZooKeeper-trunk/build.xml:1209: Tests 
failed!

Total time: 10 minutes 56 seconds
Build step 'Execute shell' marked build as failure
[FINDBUGS] Skipping 

[jira] [Commented] (ZOOKEEPER-2470) ServerConfig#parse(String[]) ignores tickTime

2016-12-21 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15768897#comment-15768897
 ] 

Hudson commented on ZOOKEEPER-2470:
---

FAILURE: Integrated in Jenkins build ZooKeeper-trunk #3206 (See 
[https://builds.apache.org/job/ZooKeeper-trunk/3206/])
ZOOKEEPER-2470: ServerConfig#parse(String[]) ignores tickTime (hanm: rev 
ef0a8ae686c100f1dc71d7526af962c635696466)
* (edit) src/java/main/org/apache/zookeeper/server/ServerConfig.java
* (add) src/java/test/org/apache/zookeeper/ServerConfigTest.java


> ServerConfig#parse(String[])  ignores tickTime
> --
>
> Key: ZOOKEEPER-2470
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2470
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: server
>Affects Versions: 3.4.7, 3.5.1
>Reporter: Alexander Shraer
>Assignee: Edward Ribeiro
>Priority: Trivial
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2470.patch
>
>
> Based on bug report from ykgarfield:
> ServerConfig#parse(String[]) method has the following code:
> public void parse(String[] args) {
> ...
> if (args.length == 3) {
> tickTime = Integer.parseInt(args[2]);
> }
> if (args.length == 4) {
> maxClientCnxns = Integer.parseInt(args[3]);
> }
> }
> ```
> So if args.length == 4 tickTime isn't parsed.



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


ZooKeeper_branch34_solaris - Build # 1400 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_solaris/1400/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 110 lines...]
jute:
[javac] Compiling 39 source files to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build/classes
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.

compile_jute_uptodate:

compile_jute:
[mkdir] Created dir: 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/generated
[mkdir] Created dir: 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/c/generated
 [java] ../../zookeeper.jute Parsed Successfully
 [java] ../../zookeeper.jute Parsed Successfully
[touch] Creating 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/generated/.generated

ver-gen:
[javac] Compiling 1 source file to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build/classes

svn-revision:
[mkdir] Created dir: 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/.revision
 [exec] svn: '.' is not a working copy

version-info:
 [java] Unknown REVISION number, using -1

build-generated:
[javac] Compiling 57 source files to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build/classes

compile:
[javac] Compiling 169 source files to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build/classes
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/Shell.java:276:
 warning: [serial] serializable class 
org.apache.zookeeper.Shell.ExitCodeException has no definition of 
serialVersionUID
[javac]   public static class ExitCodeException extends IOException {
[javac] ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:766:
 warning: [deprecation] org.apache.zookeeper.server.quorum.LeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] le = new LeaderElection(this);
[javac]  ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:769:
 warning: [deprecation] 
org.apache.zookeeper.server.quorum.AuthFastLeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] le = new AuthFastLeaderElection(this);
[javac]  ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:772:
 warning: [deprecation] 
org.apache.zookeeper.server.quorum.AuthFastLeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] le = new AuthFastLeaderElection(this, true);
[javac]  ^
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java:793:
 warning: [deprecation] org.apache.zookeeper.server.quorum.LeaderElection in 
org.apache.zookeeper.server.quorum has been deprecated
[javac] electionAlg = new LeaderElection(this);
[javac]   ^
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 32776 bytes for 
Chunk::new
# An error report file with more information is saved as:
# 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/hs_err_pid23124.log
[javac] 5 warnings

jar:
Build step 'Invoke Ant' marked build as failure
[locks-and-latches] Releasing all the locks
[locks-and-latches] All the locks released
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk-WinVS2008 - Build # 2374 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-WinVS2008/2374/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 93 lines...]
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.5 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.5 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.2 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found io.netty#netty;3.10.5.Final in maven2
[ivy:retrieve]  found net.java.dev.javacc#javacc;5.0 in maven2
[ivy:retrieve] :: resolution report :: resolve 391ms :: artifacts dl 19ms
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|  default |   16  |   0   |   0   |   0   ||   16  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [default]
[ivy:retrieve]  16 artifacts copied, 0 already retrieved (4635kB/77ms)

generate_jute_parser:
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\jute_compiler\org\apache\jute\compiler\generated
[ivy:artifactproperty] DEPRECATED: 'ivy.conf.file' is deprecated, use 
'ivy.settings.file' instead
[ivy:artifactproperty] :: loading settings :: file = 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\ivysettings.xml
 [move] Moving 1 file to 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\lib
   [javacc] Java Compiler Compiler Version 5.0 (Parser Generator)
   [javacc] (type "javacc" with no arguments for help)
   [javacc] Reading from file 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\main\org\apache\jute\compiler\generated\rcc.jj
 . . .
   [javacc] File "TokenMgrError.java" does not exist.  Will create one.
   [javacc] File "ParseException.java" does not exist.  Will create one.
   [javacc] File "Token.java" does not exist.  Will create one.
   [javacc] File "SimpleCharStream.java" does not exist.  Will create one.
   [javacc] Parser generated successfully.

jute:
[javac] Compiling 39 source files to 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.7
[javac] 1 warning

compile_jute_uptodate:

compile_jute:
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\generated
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\c\generated
 [java] ../../zookeeper.jute Parsed Successfully
 [java] ../../zookeeper.jute Parsed Successfully
[touch] Creating 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\generated\.generated

BUILD SUCCESSFUL
Total time: 5 seconds
[ZooKeeper-trunk-WinVS2008] $ cmd /c call 
C:\Users\jenkins\AppData\Local\Temp\1\hudson8281105202562388768.bat

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>set 
ZOOKEEPER_HOME=f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008 

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>msbuild 
src/c/zookeeper.sln /p:Configuration=Release 
'msbuild' is not recognized as an internal or external command,
operable program or batch file.

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>exit 9009 
Build step 'Execute Windows batch command' marked build as failure
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Commented] (ZOOKEEPER-2470) ServerConfig#parse(String[]) ignores tickTime

2016-12-21 Thread Michael Han (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15768880#comment-15768880
 ] 

Michael Han commented on ZOOKEEPER-2470:


Patch landed on master / branch-3.4 / branch-3.5. Thanks [~eribeiro] for 
driving this!

> ServerConfig#parse(String[])  ignores tickTime
> --
>
> Key: ZOOKEEPER-2470
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2470
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: server
>Affects Versions: 3.4.7, 3.5.1
>Reporter: Alexander Shraer
>Assignee: Edward Ribeiro
>Priority: Trivial
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2470.patch
>
>
> Based on bug report from ykgarfield:
> ServerConfig#parse(String[]) method has the following code:
> public void parse(String[] args) {
> ...
> if (args.length == 3) {
> tickTime = Integer.parseInt(args[2]);
> }
> if (args.length == 4) {
> maxClientCnxns = Integer.parseInt(args[3]);
> }
> }
> ```
> So if args.length == 4 tickTime isn't parsed.



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


ZooKeeper_branch34_jdk7 - Build # 1335 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_jdk7/1335/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 218 lines...]
[ivy:retrieve]  found antlr#antlr;2.7.6 in maven2
[ivy:retrieve]  found commons-beanutils#commons-beanutils-core;1.7.0 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 834ms :: artifacts dl 22ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/217ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build/test/classes
[javac] Compiling 145 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build.xml:407: 
Compile failed; see the compiler error output for details.

Total time: 11 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[GitHub] zookeeper pull request #125: ZOOKEEPER-2470: ServerConfig#parse(String[]) ig...

2016-12-21 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/zookeeper/pull/125


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Commented] (ZOOKEEPER-2470) ServerConfig#parse(String[]) ignores tickTime

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15768871#comment-15768871
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2470:
---

Github user asfgit closed the pull request at:

https://github.com/apache/zookeeper/pull/125


> ServerConfig#parse(String[])  ignores tickTime
> --
>
> Key: ZOOKEEPER-2470
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2470
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: server
>Affects Versions: 3.4.7, 3.5.1
>Reporter: Alexander Shraer
>Assignee: Edward Ribeiro
>Priority: Trivial
> Fix For: 3.4.10, 3.5.3
>
> Attachments: ZOOKEEPER-2470.patch
>
>
> Based on bug report from ykgarfield:
> ServerConfig#parse(String[]) method has the following code:
> public void parse(String[] args) {
> ...
> if (args.length == 3) {
> tickTime = Integer.parseInt(args[2]);
> }
> if (args.length == 4) {
> maxClientCnxns = Integer.parseInt(args[3]);
> }
> }
> ```
> So if args.length == 4 tickTime isn't parsed.



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


Failed: ZOOKEEPER- PreCommit Build #141

2016-12-21 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/PreCommit-ZOOKEEPER-github-pr-build/141/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 30 lines...]
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
at ..remote call to H0(Native Method)
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1416)
at hudson.remoting.UserResponse.retrieve(UserRequest.java:253)
at hudson.remoting.Channel.call(Channel.java:781)
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:249)
at com.sun.proxy.$Proxy90.checkoutBranch(Unknown Source)
at 
org.jenkinsci.plugins.gitclient.RemoteGitImpl.checkoutBranch(RemoteGitImpl.java:327)
at 
com.cloudbees.jenkins.plugins.git.vmerge.BuildChooserImpl.getCandidateRevisions(BuildChooserImpl.java:78)
at hudson.plugins.git.GitSCM.determineRevisionToBuild(GitSCM.java:984)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1087)
at hudson.scm.SCM.checkout(SCM.java:485)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1269)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1741)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:410)
Caused by: hudson.plugins.git.GitException: Command "git checkout -f 
origin/trunk" returned status code 1:
stdout: 
stderr: error: pathspec 'origin/trunk' did not match any file(s) known to git.

at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1723)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1699)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1695)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1317)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1329)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl$9.execute(CliGitAPIImpl.java:1979)
at 
org.jenkinsci.plugins.gitclient.AbstractGitAPIImpl.checkoutBranch(AbstractGitAPIImpl.java:82)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.checkoutBranch(CliGitAPIImpl.java:63)
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:606)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(RemoteInvocationHandler.java:884)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:859)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:818)
at hudson.remoting.UserRequest.perform(UserRequest.java:153)
at hudson.remoting.UserRequest.perform(UserRequest.java:50)
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
Archiving artifacts
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
[description-setter] Could not determine description.
Putting comment on the pull request
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

Failed: ZOOKEEPER- PreCommit Build #140

2016-12-21 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/PreCommit-ZOOKEEPER-github-pr-build/140/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 30 lines...]
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
at ..remote call to H0(Native Method)
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1416)
at hudson.remoting.UserResponse.retrieve(UserRequest.java:253)
at hudson.remoting.Channel.call(Channel.java:781)
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:249)
at com.sun.proxy.$Proxy90.checkoutBranch(Unknown Source)
at 
org.jenkinsci.plugins.gitclient.RemoteGitImpl.checkoutBranch(RemoteGitImpl.java:327)
at 
com.cloudbees.jenkins.plugins.git.vmerge.BuildChooserImpl.getCandidateRevisions(BuildChooserImpl.java:78)
at hudson.plugins.git.GitSCM.determineRevisionToBuild(GitSCM.java:984)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1087)
at hudson.scm.SCM.checkout(SCM.java:485)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1269)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1741)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:410)
Caused by: hudson.plugins.git.GitException: Command "git checkout -f 
origin/trunk" returned status code 1:
stdout: 
stderr: error: pathspec 'origin/trunk' did not match any file(s) known to git.

at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1723)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1699)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1695)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1317)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1329)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl$9.execute(CliGitAPIImpl.java:1979)
at 
org.jenkinsci.plugins.gitclient.AbstractGitAPIImpl.checkoutBranch(AbstractGitAPIImpl.java:82)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.checkoutBranch(CliGitAPIImpl.java:63)
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:606)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(RemoteInvocationHandler.java:884)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:859)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:818)
at hudson.remoting.UserRequest.perform(UserRequest.java:153)
at hudson.remoting.UserRequest.perform(UserRequest.java:50)
at hudson.remoting.Request$2.run(Request.java:332)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
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:745)
Archiving artifacts
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
[description-setter] Could not determine description.
Putting comment on the pull request
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch34_jdk7 - Build # 1334 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_jdk7/1334/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 218 lines...]
[ivy:retrieve]  found antlr#antlr;2.7.6 in maven2
[ivy:retrieve]  found commons-beanutils#commons-beanutils-core;1.7.0 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 996ms :: artifacts dl 85ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/232ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build/test/classes
[javac] Compiling 144 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk7/build.xml:407: 
Compile failed; see the compiler error output for details.

Total time: 13 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Created] (ZOOKEEPER-2651) Missing src/pom.template in release

2016-12-21 Thread Christopher Tubbs (JIRA)
Christopher Tubbs created ZOOKEEPER-2651:


 Summary: Missing src/pom.template in release
 Key: ZOOKEEPER-2651
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2651
 Project: ZooKeeper
  Issue Type: Bug
  Components: build
Affects Versions: 3.4.9
Reporter: Christopher Tubbs


Trying to build downstream in Fedora, and discovered that the 3.4.9 release 
tarball is missing the {{src/pom.template}} file. It is present in the 
{{release-3.4.9}} tag, so I grabbed it from there to patch downstream.



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


ZooKeeper_branch34 - Build # 1763 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34/1763/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 776 lines...]
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 934ms :: artifacts dl 115ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/214ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build/test/classes
[javac] Compiling 144 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34/build.xml:407: Compile 
failed; see the compiler error output for details.

Total time: 34 seconds
mv: cannot stat 'build/*.tar.gz': No such file or directory
mv: cannot stat 'build/test/findbugs': No such file or directory
Build Failed
Build step 'Execute shell' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Commented] (ZOOKEEPER-2383) Startup race in ZooKeeperServer

2016-12-21 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15768490#comment-15768490
 ] 

Hudson commented on ZOOKEEPER-2383:
---

SUCCESS: Integrated in Jenkins build ZooKeeper-trunk #3204 (See 
[https://builds.apache.org/job/ZooKeeper-trunk/3204/])
ZOOKEEPER-2383: Startup race in ZooKeeperServer (fpj: rev 
eac693cc76a34f96b9116ef33d1e92af7129416d)
* (edit) 
src/java/main/org/apache/zookeeper/server/command/AbstractFourLetterCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/DumpCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/StatResetCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/IsroCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/ConsCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/admin/Commands.java
* (edit) src/java/main/org/apache/zookeeper/server/command/MonitorCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/ConfCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/WatchCommand.java
* (add) 
src/java/test/org/apache/zookeeper/server/ZooKeeperServerStartupTest.java
* (edit) src/java/main/org/apache/zookeeper/server/NIOServerCnxn.java
* (edit) src/java/main/org/apache/zookeeper/server/NettyServerCnxn.java
* (edit) 
src/java/main/org/apache/zookeeper/server/command/CnxnStatResetCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/DirsCommand.java
* (edit) src/java/main/org/apache/zookeeper/server/command/StatCommand.java


> Startup race in ZooKeeperServer
> ---
>
> Key: ZOOKEEPER-2383
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2383
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: jmx, server
>Affects Versions: 3.4.8
>Reporter: Steve Rowe
>Assignee: Rakesh R
>Priority: Blocker
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: TestZkStandaloneJMXRegistrationRaceConcurrent.java, 
> ZOOKEEPER-2383-br-3-4.patch, ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> release-3.4.8-extra-logging.patch, zk-3.4.8-MBeanRegistry.log, 
> zk-3.4.8-NPE.log
>
>
> In attempting to upgrade Solr's ZooKeeper dependency from 3.4.6 to 3.4.8 
> (SOLR-8724) I ran into test failures where attempts to create a node in a 
> newly started standalone ZooKeeperServer were failing because of an assertion 
> in MBeanRegistry.
> ZooKeeperServer.startup() first sets up its request processor chain then 
> registers itself in JMX, but if a connection comes in before the server's JMX 
> registration happens, registration of the connection will fail because it 
> trips the assertion that (effectively) its parent (the server) has already 
> registered itself.
> {code:java|title=ZooKeeperServer.java}
> public synchronized void startup() {
> if (sessionTracker == null) {
> createSessionTracker();
> }
> startSessionTracker();
> setupRequestProcessors();
> registerJMX();
> state = State.RUNNING;
> notifyAll();
> }
> {code}
> {code:java|title=MBeanRegistry.java}
> public void register(ZKMBeanInfo bean, ZKMBeanInfo parent)
> throws JMException
> {
> assert bean != null;
> String path = null;
> if (parent != null) {
> path = mapBean2Path.get(parent);
> assert path != null;
> }
> {code}
> This problem appears to be new with ZK 3.4.8 - AFAIK Solr never had this 
> issue with ZK 3.4.6. 



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


ZooKeeper-trunk-WinVS2008 - Build # 2373 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-WinVS2008/2373/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 93 lines...]
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.5 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.5 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.2 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found io.netty#netty;3.10.5.Final in maven2
[ivy:retrieve]  found net.java.dev.javacc#javacc;5.0 in maven2
[ivy:retrieve] :: resolution report :: resolve 398ms :: artifacts dl 22ms
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|  default |   16  |   0   |   0   |   0   ||   16  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [default]
[ivy:retrieve]  16 artifacts copied, 0 already retrieved (4635kB/77ms)

generate_jute_parser:
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\jute_compiler\org\apache\jute\compiler\generated
[ivy:artifactproperty] DEPRECATED: 'ivy.conf.file' is deprecated, use 
'ivy.settings.file' instead
[ivy:artifactproperty] :: loading settings :: file = 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\ivysettings.xml
 [move] Moving 1 file to 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\lib
   [javacc] Java Compiler Compiler Version 5.0 (Parser Generator)
   [javacc] (type "javacc" with no arguments for help)
   [javacc] Reading from file 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\main\org\apache\jute\compiler\generated\rcc.jj
 . . .
   [javacc] File "TokenMgrError.java" does not exist.  Will create one.
   [javacc] File "ParseException.java" does not exist.  Will create one.
   [javacc] File "Token.java" does not exist.  Will create one.
   [javacc] File "SimpleCharStream.java" does not exist.  Will create one.
   [javacc] Parser generated successfully.

jute:
[javac] Compiling 39 source files to 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\build\classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.7
[javac] 1 warning

compile_jute_uptodate:

compile_jute:
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\generated
[mkdir] Created dir: 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\c\generated
 [java] ../../zookeeper.jute Parsed Successfully
 [java] ../../zookeeper.jute Parsed Successfully
[touch] Creating 
f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008\src\java\generated\.generated

BUILD SUCCESSFUL
Total time: 5 seconds
[ZooKeeper-trunk-WinVS2008] $ cmd /c call 
C:\Users\jenkins\AppData\Local\Temp\1\hudson6016228112960986667.bat

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>set 
ZOOKEEPER_HOME=f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008 

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>msbuild 
src/c/zookeeper.sln /p:Configuration=Release 
'msbuild' is not recognized as an internal or external command,
operable program or batch file.

f:\jenkins\jenkins-slave\workspace\ZooKeeper-trunk-WinVS2008>exit 9009 
Build step 'Execute Windows batch command' marked build as failure
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk-openjdk7 - Build # 1289 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-openjdk7/1289/

###
## LAST 60 LINES OF THE CONSOLE 
###
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on H17 (ubuntu) in workspace 
/home/jenkins/jenkins-slave/workspace/ZooKeeper-trunk-openjdk7
Cloning the remote Git repository
Cloning repository git://git.apache.org/zookeeper.git
 > git init /home/jenkins/jenkins-slave/workspace/ZooKeeper-trunk-openjdk7 # 
 > timeout=10
Fetching upstream changes from git://git.apache.org/zookeeper.git
 > git --version # timeout=10
 > git -c core.askpass=true fetch --tags --progress 
 > git://git.apache.org/zookeeper.git +refs/heads/*:refs/remotes/origin/*
 > git config remote.origin.url git://git.apache.org/zookeeper.git # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # 
 > timeout=10
 > git config remote.origin.url git://git.apache.org/zookeeper.git # timeout=10
Cleaning workspace
 > git rev-parse --verify HEAD # timeout=10
No valid HEAD. Skipping the resetting
 > git clean -fdx # timeout=10
Fetching upstream changes from git://git.apache.org/zookeeper.git
 > git -c core.askpass=true fetch --tags --progress 
 > git://git.apache.org/zookeeper.git +refs/heads/*:refs/remotes/origin/*
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
 > git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10
Checking out Revision eac693cc76a34f96b9116ef33d1e92af7129416d 
(refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f eac693cc76a34f96b9116ef33d1e92af7129416d
 > git rev-list 8616a9ec8ce4bc8ac2987b7417a6f0c4b7333658 # timeout=10
No emails were triggered.
[ZooKeeper-trunk-openjdk7] $ /home/jenkins/tools/ant/latest/bin/ant 
-Dtest.output=yes -Dtest.junit.threads=8 -Dtest.junit.output.format=xml 
-Djavac.target=1.7 clean test-core-java
Error: JAVA_HOME is not defined correctly.
  We cannot execute /usr/lib/jvm/java-7-openjdk-amd64//bin/java
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Comment Edited] (ZOOKEEPER-2383) Startup race in ZooKeeperServer

2016-12-21 Thread Flavio Junqueira (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15768373#comment-15768373
 ] 

Flavio Junqueira edited comment on ZOOKEEPER-2383 at 12/21/16 10:36 PM:


[~rakesh_r] pull request #101 merged fine onto master, but not branch 3.5. I 
haven't tried branch 3.4.


was (Author: fpj):
[~rakesh_r] pull request #101 merge fine onto master, but not branch 3.5. I 
haven't tried branch 3.4.

> Startup race in ZooKeeperServer
> ---
>
> Key: ZOOKEEPER-2383
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2383
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: jmx, server
>Affects Versions: 3.4.8
>Reporter: Steve Rowe
>Assignee: Rakesh R
>Priority: Blocker
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: TestZkStandaloneJMXRegistrationRaceConcurrent.java, 
> ZOOKEEPER-2383-br-3-4.patch, ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> release-3.4.8-extra-logging.patch, zk-3.4.8-MBeanRegistry.log, 
> zk-3.4.8-NPE.log
>
>
> In attempting to upgrade Solr's ZooKeeper dependency from 3.4.6 to 3.4.8 
> (SOLR-8724) I ran into test failures where attempts to create a node in a 
> newly started standalone ZooKeeperServer were failing because of an assertion 
> in MBeanRegistry.
> ZooKeeperServer.startup() first sets up its request processor chain then 
> registers itself in JMX, but if a connection comes in before the server's JMX 
> registration happens, registration of the connection will fail because it 
> trips the assertion that (effectively) its parent (the server) has already 
> registered itself.
> {code:java|title=ZooKeeperServer.java}
> public synchronized void startup() {
> if (sessionTracker == null) {
> createSessionTracker();
> }
> startSessionTracker();
> setupRequestProcessors();
> registerJMX();
> state = State.RUNNING;
> notifyAll();
> }
> {code}
> {code:java|title=MBeanRegistry.java}
> public void register(ZKMBeanInfo bean, ZKMBeanInfo parent)
> throws JMException
> {
> assert bean != null;
> String path = null;
> if (parent != null) {
> path = mapBean2Path.get(parent);
> assert path != null;
> }
> {code}
> This problem appears to be new with ZK 3.4.8 - AFAIK Solr never had this 
> issue with ZK 3.4.6. 



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


[jira] [Commented] (ZOOKEEPER-2383) Startup race in ZooKeeperServer

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15768361#comment-15768361
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2383:
---

Github user asfgit closed the pull request at:

https://github.com/apache/zookeeper/pull/101


> Startup race in ZooKeeperServer
> ---
>
> Key: ZOOKEEPER-2383
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2383
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: jmx, server
>Affects Versions: 3.4.8
>Reporter: Steve Rowe
>Assignee: Rakesh R
>Priority: Blocker
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: TestZkStandaloneJMXRegistrationRaceConcurrent.java, 
> ZOOKEEPER-2383-br-3-4.patch, ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> ZOOKEEPER-2383.patch, ZOOKEEPER-2383.patch, 
> release-3.4.8-extra-logging.patch, zk-3.4.8-MBeanRegistry.log, 
> zk-3.4.8-NPE.log
>
>
> In attempting to upgrade Solr's ZooKeeper dependency from 3.4.6 to 3.4.8 
> (SOLR-8724) I ran into test failures where attempts to create a node in a 
> newly started standalone ZooKeeperServer were failing because of an assertion 
> in MBeanRegistry.
> ZooKeeperServer.startup() first sets up its request processor chain then 
> registers itself in JMX, but if a connection comes in before the server's JMX 
> registration happens, registration of the connection will fail because it 
> trips the assertion that (effectively) its parent (the server) has already 
> registered itself.
> {code:java|title=ZooKeeperServer.java}
> public synchronized void startup() {
> if (sessionTracker == null) {
> createSessionTracker();
> }
> startSessionTracker();
> setupRequestProcessors();
> registerJMX();
> state = State.RUNNING;
> notifyAll();
> }
> {code}
> {code:java|title=MBeanRegistry.java}
> public void register(ZKMBeanInfo bean, ZKMBeanInfo parent)
> throws JMException
> {
> assert bean != null;
> String path = null;
> if (parent != null) {
> path = mapBean2Path.get(parent);
> assert path != null;
> }
> {code}
> This problem appears to be new with ZK 3.4.8 - AFAIK Solr never had this 
> issue with ZK 3.4.6. 



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


[GitHub] zookeeper pull request #101: ZOOKEEPER-2383

2016-12-21 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/zookeeper/pull/101


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


ZooKeeper_branch34_jdk8 - Build # 811 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_jdk8/811/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 228 lines...]
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 1561ms :: artifacts dl 15ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/93ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build/test/classes
[javac] Compiling 144 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] warning: [options] source value 1.5 is obsolete and will be removed 
in a future release
[javac] warning: [options] To suppress warnings about obsolete options, use 
-Xlint:-options.
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 3 warnings

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_jdk8/build.xml:407: 
Compile failed; see the compiler error output for details.

Total time: 17 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk-openjdk7 - Build # 1288 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-openjdk7/1288/

###
## LAST 60 LINES OF THE CONSOLE 
###
Started by timer
[EnvInject] - Loading node environment variables.
Building remotely on H13 (ubuntu) in workspace 
/home/jenkins/jenkins-slave/workspace/ZooKeeper-trunk-openjdk7
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url git://git.apache.org/zookeeper.git # timeout=10
Cleaning workspace
 > git rev-parse --verify HEAD # timeout=10
Resetting working tree
 > git reset --hard # timeout=10
 > git clean -fdx # timeout=10
Fetching upstream changes from git://git.apache.org/zookeeper.git
 > git --version # timeout=10
 > git -c core.askpass=true fetch --tags --progress 
 > git://git.apache.org/zookeeper.git +refs/heads/*:refs/remotes/origin/*
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
 > git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10
Checking out Revision 8616a9ec8ce4bc8ac2987b7417a6f0c4b7333658 
(refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 8616a9ec8ce4bc8ac2987b7417a6f0c4b7333658
 > git rev-list 8616a9ec8ce4bc8ac2987b7417a6f0c4b7333658 # timeout=10
No emails were triggered.
[ZooKeeper-trunk-openjdk7] $ /home/jenkins/tools/ant/latest/bin/ant 
-Dtest.output=yes -Dtest.junit.threads=8 -Dtest.junit.output.format=xml 
-Djavac.target=1.7 clean test-core-java
Error: JAVA_HOME is not defined correctly.
  We cannot execute /usr/lib/jvm/java-7-openjdk-amd64//bin/java
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch35_solaris - Build # 361 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch35_solaris/361/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 135689 lines...]
[junit] 2016-12-21 17:00:22,477 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@77] - RUNNING TEST METHOD 
testMutipleWatcherObjs
[junit] 2016-12-21 17:00:22,478 [myid:] - INFO  
[NIOWorkerThread-7:NIOServerCnxn@607] - Closed socket connection for client 
/127.0.0.1:57308 which had sessionid 0x1259f4d6fe5
[junit] 2016-12-21 17:00:22,478 [myid:] - INFO  [main:ZooKeeper@853] - 
Initiating client connection, connectString=127.0.0.1:11235/chrootclienttest 
sessionTimeout=3 
watcher=org.apache.zookeeper.test.ClientBase$CountdownWatcher@17b043b
[junit] 2016-12-21 17:00:22,478 [myid:127.0.0.1:11235] - INFO  
[main-SendThread(127.0.0.1:11235):ClientCnxn$SendThread@1113] - Opening socket 
connection to server 127.0.0.1/127.0.0.1:11235. Will not attempt to 
authenticate using SASL (unknown error)
[junit] 2016-12-21 17:00:22,479 [myid:127.0.0.1:11235] - INFO  
[main-SendThread(127.0.0.1:11235):ClientCnxn$SendThread@948] - Socket 
connection established, initiating session, client: null, server: null
[junit] 2016-12-21 17:00:22,479 [myid:] - INFO  
[NIOServerCxnFactory.AcceptThread:0.0.0.0/0.0.0.0:11235:NIOServerCnxnFactory$AcceptThread@296]
 - Accepted socket connection from /127.0.0.1:57309
[junit] 2016-12-21 17:00:22,479 [myid:] - INFO  
[NIOWorkerThread-8:ZooKeeperServer@999] - Client attempting to establish new 
session at /127.0.0.1:57309
[junit] 2016-12-21 17:00:22,481 [myid:] - INFO  
[SyncThread:0:ZooKeeperServer@713] - Established session 0x1259f4d6fe50001 with 
negotiated timeout 3 for client /127.0.0.1:57309
[junit] 2016-12-21 17:00:22,481 [myid:127.0.0.1:11235] - INFO  
[main-SendThread(127.0.0.1:11235):ClientCnxn$SendThread@1381] - Session 
establishment complete on server null, sessionid = 0x1259f4d6fe50001, 
negotiated timeout = 3
[junit] 2016-12-21 17:00:22,482 [myid:] - INFO  [main:JMXEnv@117] - 
expect:0x1259f4d6fe50001
[junit] 2016-12-21 17:00:22,482 [myid:] - INFO  [main:JMXEnv@120] - 
found:0x1259f4d6fe50001 
org.apache.ZooKeeperService:name0=StandaloneServer_port11235,name1=Connections,name2=127.0.0.1,name3=0x1259f4d6fe50001
[junit] 2016-12-21 17:00:23,984 [myid:] - INFO  [ProcessThread(sid:0 
cport:11235)::PrepRequestProcessor@656] - Processed session termination for 
sessionid: 0x1259f4d6fe50001
[junit] 2016-12-21 17:00:23,985 [myid:] - INFO  [main:ZooKeeper@1311] - 
Session: 0x1259f4d6fe50001 closed
[junit] 2016-12-21 17:00:23,985 [myid:] - INFO  
[NIOWorkerThread-4:MBeanRegistry@128] - Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port11235,name1=Connections,name2=127.0.0.1,name3=0x1259f4d6fe50001]
[junit] 2016-12-21 17:00:23,985 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x1259f4d6fe50001
[junit] 2016-12-21 17:00:23,985 [myid:] - INFO  
[NIOWorkerThread-4:NIOServerCnxn@607] - Closed socket connection for client 
/127.0.0.1:57309 which had sessionid 0x1259f4d6fe50001
[junit] 2016-12-21 17:00:23,985 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 18158
[junit] 2016-12-21 17:00:23,986 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 40
[junit] 2016-12-21 17:00:23,986 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testMutipleWatcherObjs
[junit] 2016-12-21 17:00:23,986 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-21 17:00:23,986 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-21 17:00:23,986 [myid:] - INFO  
[ConnnectionExpirer:NIOServerCnxnFactory$ConnectionExpirerThread@583] - 
ConnnectionExpirerThread interrupted
[junit] 2016-12-21 17:00:23,987 [myid:] - INFO  
[NIOServerCxnFactory.SelectorThread-1:NIOServerCnxnFactory$SelectorThread@420] 
- selector thread exitted run method
[junit] 2016-12-21 17:00:23,987 [myid:] - INFO  
[NIOServerCxnFactory.AcceptThread:0.0.0.0/0.0.0.0:11235:NIOServerCnxnFactory$AcceptThread@219]
 - accept thread exitted run method
[junit] 2016-12-21 17:00:23,988 [myid:] - INFO  
[NIOServerCxnFactory.SelectorThread-0:NIOServerCnxnFactory$SelectorThread@420] 
- selector thread exitted run method
[junit] 2016-12-21 17:00:23,988 [myid:] - INFO  [main:ZooKeeperServer@533] 
- shutting down
[junit] 2016-12-21 17:00:23,988 [myid:] - ERROR [main:ZooKeeperServer@505] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-21 17:00:23,988 [myid:] - INFO  
[main:SessionTrackerImpl@232] - Shutting down
[junit] 2016-12-21 17:00:23,989 [myid:] - INFO  

[jira] [Commented] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread Rakesh R (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15767340#comment-15767340
 ] 

Rakesh R commented on ZOOKEEPER-2650:
-

The above PR contains the following changes:
# Added the test cases mentioned in the description
# Done few modifications to the log message for better debugging.

Please review the changes. Thanks!

> Test Improvement by adding more QuorumPeer Auth related test cases
> --
>
> Key: ZOOKEEPER-2650
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
> Project: ZooKeeper
>  Issue Type: Test
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> This jira to add more test cases to the ZOOKEEPER-1045 feature.
> Cases:-
> 1) Ensemble with auth enabled Observer.
> 2) Connecting non-auth Observer to auth enabled quorum.
> 3) Quorum re-election with auth enabled servers.



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


[jira] [Updated] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread Rakesh R (JIRA)

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

Rakesh R updated ZOOKEEPER-2650:

Fix Version/s: 3.4.10

> Test Improvement by adding more QuorumPeer Auth related test cases
> --
>
> Key: ZOOKEEPER-2650
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
> Project: ZooKeeper
>  Issue Type: Test
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> This jira to add more test cases to the ZOOKEEPER-1045 feature.
> Cases:-
> 1) Ensemble with auth enabled Observer.
> 2) Connecting non-auth Observer to auth enabled quorum.
> 3) Quorum re-election with auth enabled servers.



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


[jira] [Commented] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15767320#comment-15767320
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2650:
---

GitHub user rakeshadr opened a pull request:

https://github.com/apache/zookeeper/pull/131

ZOOKEEPER-2650: Test Improvement by adding more QuorumPeer Auth relat…



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/rakeshadr/zookeeper-1 ZK-2650

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/zookeeper/pull/131.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #131


commit 46b438e968300c61b10f7e8966fccbde85f84637
Author: Rakesh Radhakrishnan 
Date:   2016-12-21T15:24:55Z

ZOOKEEPER-2650: Test Improvement by adding more QuorumPeer Auth related 
test cases




> Test Improvement by adding more QuorumPeer Auth related test cases
> --
>
> Key: ZOOKEEPER-2650
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
> Project: ZooKeeper
>  Issue Type: Test
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10
>
>
> This jira to add more test cases to the ZOOKEEPER-1045 feature.
> Cases:-
> 1) Ensemble with auth enabled Observer.
> 2) Connecting non-auth Observer to auth enabled quorum.
> 3) Quorum re-election with auth enabled servers.



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


Failed: ZOOKEEPER- PreCommit Build #139

2016-12-21 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/PreCommit-ZOOKEEPER-github-pr-build/139/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 26 lines...]
Done: 21
  Compressing objects
Done: 0
  Writing objects
Done: 23
  remote: Resolving deltas
  remote: Updating references
Merging refs/tags/changes/139
 > git rev-parse refs/tags/changes/139^{commit} # timeout=10
 > git merge 46b438e968300c61b10f7e8966fccbde85f84637 # timeout=10
 > git rev-parse branch-3.4^{commit} # timeout=10
Checking out Revision 46b438e968300c61b10f7e8966fccbde85f84637 (branch-3.4)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 46b438e968300c61b10f7e8966fccbde85f84637
 > git rev-parse origin/branch-3.4^{commit} # timeout=10
 > git rev-list 52d365041759229ddc46798e34ee845fc1e26732 # timeout=10
No emails were triggered.
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
[PreCommit-ZOOKEEPER-github-pr-build] $ /bin/bash 
/tmp/hudson8859256735251948687.sh
/home/jenkins/tools/java/latest1.7/bin/java
java version "1.7.0_80"
Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)
core file size  (blocks, -c) 0
data seg size   (kbytes, -d) unlimited
scheduling priority (-e) 0
file size   (blocks, -f) unlimited
pending signals (-i) 386178
max locked memory   (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files  (-n) 6
pipe size(512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority  (-r) 0
stack size  (kbytes, -s) 8192
cpu time   (seconds, -t) unlimited
max user processes  (-u) 10240
virtual memory  (kbytes, -v) unlimited
file locks  (-x) unlimited
Buildfile: 
/home/jenkins/jenkins-slave/workspace/PreCommit-ZOOKEEPER-github-pr-build/build.xml

BUILD FAILED
Target "qa-test-pullrequest" does not exist in the project "ZooKeeper". 

Total time: 0 seconds
Build step 'Execute shell' marked build as failure
Archiving artifacts
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Recording test results
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
[description-setter] Could not determine description.
Putting comment on the pull request
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7



###
## FAILED TESTS (if any) 
##
No tests ran.

[GitHub] zookeeper pull request #131: ZOOKEEPER-2650: Test Improvement by adding more...

2016-12-21 Thread rakeshadr
GitHub user rakeshadr opened a pull request:

https://github.com/apache/zookeeper/pull/131

ZOOKEEPER-2650: Test Improvement by adding more QuorumPeer Auth relat…



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/rakeshadr/zookeeper-1 ZK-2650

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/zookeeper/pull/131.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #131


commit 46b438e968300c61b10f7e8966fccbde85f84637
Author: Rakesh Radhakrishnan 
Date:   2016-12-21T15:24:55Z

ZOOKEEPER-2650: Test Improvement by adding more QuorumPeer Auth related 
test cases




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Created] (ZOOKEEPER-2650) Test Improvement by adding more QuorumPeer Auth related test cases

2016-12-21 Thread Rakesh R (JIRA)
Rakesh R created ZOOKEEPER-2650:
---

 Summary: Test Improvement by adding more QuorumPeer Auth related 
test cases
 Key: ZOOKEEPER-2650
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2650
 Project: ZooKeeper
  Issue Type: Test
Reporter: Rakesh R
Assignee: Rakesh R


This jira to add more test cases to the ZOOKEEPER-1045 feature.
Cases:-
1) Ensemble with auth enabled Observer.
2) Connecting non-auth Observer to auth enabled quorum.
3) Quorum re-election with auth enabled servers.



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


ZooKeeper_branch34_openjdk7 - Build # 1315 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_openjdk7/1315/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 218 lines...]
[ivy:retrieve]  found antlr#antlr;2.7.6 in maven2
[ivy:retrieve]  found commons-beanutils#commons-beanutils-core;1.7.0 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 665ms :: artifacts dl 46ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/135ms)

compile-test:
[mkdir] Created dir: 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build/test/classes
[javac] Compiling 144 source files to 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build/test/classes
[javac] warning: [options] bootstrap class path not set in conjunction with 
-source 1.5
[javac] 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 error: diamond operator is not supported in -source 1.5
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac]   (use -source 7 or higher to enable diamond operator)
[javac] 1 error
[javac] 1 warning

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch34_openjdk7/build.xml:407:
 Compile failed; see the compiler error output for details.

Total time: 10 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ‘Publish JUnit test result report’ failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper_branch34_solaris - Build # 1399 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_solaris/1399/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 164 lines...]
[ivy:retrieve]  found checkstyle#checkstyle;5.0 in maven2
[ivy:retrieve]  found antlr#antlr;2.7.6 in maven2
[ivy:retrieve]  found commons-beanutils#commons-beanutils-core;1.7.0 in maven2
[ivy:retrieve]  found commons-cli#commons-cli;1.0 in maven2
[ivy:retrieve]  found commons-lang#commons-lang;1.0 in maven2
[ivy:retrieve]  found commons-logging#commons-logging;1.0.3 in maven2
[ivy:retrieve]  found com.google.collections#google-collections;0.9 in maven2
[ivy:retrieve]  found commons-collections#commons-collections;3.2.2 in maven2
[ivy:retrieve]  found commons-io#commons-io;2.4 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-simplekdc;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-config;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-api;1.7.14 in maven2
[ivy:retrieve]  found org.slf4j#slf4j-log4j12;1.7.14 in maven2
[ivy:retrieve]  found log4j#log4j;1.2.17 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-core;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-asn1;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-pkix;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerby-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-client;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-common;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-crypto;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-util;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-server;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-identity;1.0.0-RC2 in maven2
[ivy:retrieve]  found org.apache.kerby#kerb-admin;1.0.0-RC2 in maven2
[ivy:retrieve] :: resolution report :: resolve 2568ms :: artifacts dl 487ms
[ivy:retrieve]  :: evicted modules:
[ivy:retrieve]  commons-logging#commons-logging;1.0 by 
[commons-logging#commons-logging;1.0.3] in [test]
[ivy:retrieve]  commons-collections#commons-collections;2.0 by 
[commons-collections#commons-collections;3.2.2] in [test]
[ivy:retrieve]  junit#junit;3.7 by [junit#junit;4.8.1] in [test]
-
|  |modules||   artifacts   |
|   conf   | number| search|dwnlded|evicted|| number|dwnlded|
-
|   test   |   30  |   0   |   0   |   3   ||   27  |   0   |
-
[ivy:retrieve] :: retrieving :: org.apache.zookeeper#zookeeper
[ivy:retrieve]  confs: [test]
[ivy:retrieve]  27 artifacts copied, 0 already retrieved (5689kB/659ms)

compile-test:
[mkdir] Created dir: 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build/test/classes
[javac] Compiling 144 source files to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build/test/classes
[javac] 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/src/java/test/org/apache/zookeeper/test/HierarchicalQuorumTest.java:146:
 illegal start of type
[javac] List  qps = new ArrayList<>();
[javac]   ^
[javac] 1 error

BUILD FAILED
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper_branch34_solaris/build.xml:407:
 Compile failed; see the compiler error output for details.

Total time: 28 seconds
Build step 'Invoke Ant' marked build as failure
[locks-and-latches] Releasing all the locks
[locks-and-latches] All the locks released
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

ZooKeeper-trunk-jdk8 - Build # 866 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-jdk8/866/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 473209 lines...]
[junit] 2016-12-21 11:58:23,142 [myid:] - INFO  [main:ZKTestCase$1@65] - 
SUCCEEDED testWatcherAutoResetWithLocal
[junit] 2016-12-21 11:58:23,142 [myid:] - INFO  [main:ZKTestCase$1@60] - 
FINISHED testWatcherAutoResetWithLocal
[junit] Tests run: 101, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
533.038 sec, Thread: 3, Class: org.apache.zookeeper.test.NioNettySuiteTest
[junit] 2016-12-21 11:58:23,222 [myid:127.0.0.1:16732] - INFO  
[main-SendThread(127.0.0.1:16732):ClientCnxn$SendThread@1113] - Opening socket 
connection to server 127.0.0.1/127.0.0.1:16732. Will not attempt to 
authenticate using SASL (unknown error)
[junit] 2016-12-21 11:58:23,222 [myid:127.0.0.1:16732] - WARN  
[main-SendThread(127.0.0.1:16732):ClientCnxn$SendThread@1235] - Session 
0x20138c588d4 for server 127.0.0.1/127.0.0.1:16732, unexpected error, 
closing socket connection and attempting reconnect
[junit] java.net.ConnectException: Connection refused
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)
[junit] 2016-12-21 11:59:01,819 [myid:] - INFO  
[QuorumPeer[myid=3](plain=/127.0.0.1:24702)(secure=disabled):FastLeaderElection@928]
 - Notification time out: 6
[junit] 2016-12-21 11:59:01,819 [myid:] - WARN  
[WorkerSender[myid=3]:QuorumCnxManager@455] - Cannot open channel to 1 at 
election address /127.0.0.1:24698
[junit] java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at 
java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
[junit] at 
java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
[junit] at 
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
[junit] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
[junit] at java.net.Socket.connect(Socket.java:589)
[junit] at 
org.apache.zookeeper.server.quorum.QuorumCnxManager.connectOne(QuorumCnxManager.java:441)
[junit] at 
org.apache.zookeeper.server.quorum.QuorumCnxManager.connectOne(QuorumCnxManager.java:482)
[junit] at 
org.apache.zookeeper.server.quorum.QuorumCnxManager.toSend(QuorumCnxManager.java:419)
[junit] at 
org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.process(FastLeaderElection.java:486)
[junit] at 
org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.run(FastLeaderElection.java:465)
[junit] at java.lang.Thread.run(Thread.java:745)
[junit] 2016-12-21 11:59:01,820 [myid:] - INFO  
[WorkerReceiver[myid=3]:FastLeaderElection@688] - Notification: 2 (message 
format version), 3 (n.leader), 0x2fffe (n.zxid), 0x0 (n.round), LOOKING 
(n.state), 3 (n.sid), 0x2 (n.peerEPoch), LOOKING (my state)1 (n.config 
version)
[junit] 2016-12-21 11:59:01,820 [myid:] - INFO  
[WorkerReceiver[myid=2]:FastLeaderElection@688] - Notification: 2 (message 
format version), 3 (n.leader), 0x2fffe (n.zxid), 0x0 (n.round), LOOKING 
(n.state), 3 (n.sid), 0x2 (n.peerEPoch), LEADING (my state)1 (n.config 
version)
[junit] 2016-12-21 11:59:01,821 [myid:] - INFO  
[WorkerReceiver[myid=3]:FastLeaderElection@688] - Notification: 2 (message 
format version), 2 (n.leader), 0x1000d (n.zxid), 0x 
(n.round), LEADING (n.state), 2 (n.sid), 0x2 (n.peerEPoch), LOOKING (my 
state)1 (n.config version)
[junit] 2016-12-21 12:00:01,821 [myid:] - INFO  
[QuorumPeer[myid=3](plain=/127.0.0.1:24702)(secure=disabled):FastLeaderElection@928]
 - Notification time out: 6
[junit] 2016-12-21 12:00:01,822 [myid:] - WARN  
[WorkerSender[myid=3]:QuorumCnxManager@455] - Cannot open channel to 1 at 
election address /127.0.0.1:24698
[junit] java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at 
java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
[junit] at 
java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
[junit] at 
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
[junit] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
[junit] at java.net.Socket.connect(Socket.java:589)
[junit] at 

ZooKeeper_branch35_openjdk7 - Build # 340 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch35_openjdk7/340/

###
## LAST 60 LINES OF THE CONSOLE 
###
Started by timer
[EnvInject] - Loading node environment variables.
Building remotely on H16 (ubuntu) in workspace 
/home/jenkins/jenkins-slave/workspace/ZooKeeper_branch35_openjdk7
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url git://git.apache.org/zookeeper.git # timeout=10
Fetching upstream changes from git://git.apache.org/zookeeper.git
 > git --version # timeout=10
 > git -c core.askpass=true fetch --tags --progress 
 > git://git.apache.org/zookeeper.git +refs/heads/*:refs/remotes/origin/*
 > git rev-parse refs/remotes/origin/branch-3.5^{commit} # timeout=10
 > git rev-parse refs/remotes/origin/origin/branch-3.5^{commit} # timeout=10
Checking out Revision fbf6fe1ad9d1fcc632fa3fcb8f6b3740115d932b 
(refs/remotes/origin/branch-3.5)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f fbf6fe1ad9d1fcc632fa3fcb8f6b3740115d932b
 > git rev-list fbf6fe1ad9d1fcc632fa3fcb8f6b3740115d932b # timeout=10
No emails were triggered.
[ZooKeeper_branch35_openjdk7] $ /home/jenkins/tools/ant/latest/bin/ant 
-Dtest.output=yes -Dtest.junit.threads=8 -Dtest.junit.output.format=xml 
-Djavac.target=1.7 clean test-core-java
Error: JAVA_HOME is not defined correctly.
  We cannot execute /usr/lib/jvm/java-7-openjdk-amd64//bin/java
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Commented] (ZOOKEEPER-2044) CancelledKeyException in zookeeper 3.4.5

2016-12-21 Thread Alexander Binzberger (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15766536#comment-15766536
 ] 

Alexander Binzberger commented on ZOOKEEPER-2044:
-

looks similar to ZOOKEEPER-1237 - could this be the same thing?

> CancelledKeyException in zookeeper 3.4.5
> 
>
> Key: ZOOKEEPER-2044
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2044
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: server
>Affects Versions: 3.4.6
> Environment: Red Hat Enterprise Linux Server release 6.2
>Reporter: shamjith antholi
>Assignee: Flavio Junqueira
>Priority: Minor
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2044.patch, ZOOKEEPER-2044.patch
>
>
> I am getting cancelled key exception in zookeeper (version 3.4.5). Please see 
> the log below. When this error is thrown, the connected solr shard is going 
> down by giving the error "Failed to index metadata in 
> Solr,StackTrace=SolrError: HTTP status 503.Reason: 
> {"responseHeader":{"status":503,"QTime":204},"error":{"msg":"ClusterState 
> says we are the leader, but locally we don't think so","code":503"  and 
> ultimately the current activity is going down. Could you please give a 
> solution for this ?
> Zookeper log 
> --
> 2014-09-16 02:58:47,799 [myid:1] - INFO  
> [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:ZooKeeperServer@832] - Client 
> attempting to renew session 0x24868e7ca980003 at /172.22.0.5:58587
> 2014-09-16 02:58:47,800 [myid:1] - INFO  
> [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:Learner@107] - Revalidating 
> client: 0x24868e7ca980003
> 2014-09-16 02:58:47,802 [myid:1] - INFO  
> [QuorumPeer[myid=1]/0:0:0:0:0:0:0:0:2181:ZooKeeperServer@588] - Invalid 
> session 0x24868e7ca980003 for client /172.22.0.5:58587, probably expired
> 2014-09-16 02:58:47,803 [myid:1] - INFO  
> [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@1001] - Closed 
> socket connection for client /172.22.0.5:58587 which had sessionid 
> 0x24868e7ca980003
> 2014-09-16 02:58:47,810 [myid:1] - ERROR 
> [CommitProcessor:1:NIOServerCnxn@180] - Unexpected Exception:
> java.nio.channels.CancelledKeyException
> at sun.nio.ch.SelectionKeyImpl.ensureValid(SelectionKeyImpl.java:55)
> at sun.nio.ch.SelectionKeyImpl.interestOps(SelectionKeyImpl.java:59)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.sendBuffer(NIOServerCnxn.java:153)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.sendResponse(NIOServerCnxn.java:1076)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.process(NIOServerCnxn.java:1113)
> at org.apache.zookeeper.server.DataTree.setWatches(DataTree.java:1327)
> at 
> org.apache.zookeeper.server.ZKDatabase.setWatches(ZKDatabase.java:384)
> at 
> org.apache.zookeeper.server.FinalRequestProcessor.processRequest(FinalRequestProcessor.java:304)
> at 
> org.apache.zookeeper.server.quorum.CommitProcessor.run(CommitProcessor.java:74)
>  



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


[jira] [Commented] (ZOOKEEPER-2479) Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean

2016-12-21 Thread Rakesh R (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2479?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15766572#comment-15766572
 ] 

Rakesh R commented on ZOOKEEPER-2479:
-

Thanks [~fpj] and [~hanm] for the discussion. I've closed the PR now, probably 
will observe this behavior while processing next PR.

> Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean
> 
>
> Key: ZOOKEEPER-2479
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2479
> Project: ZooKeeper
>  Issue Type: Improvement
>  Components: quorum
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch
>
>
> The idea of this jira is to expose {{time taken}} for the leader election via 
> jmx Leader, Follower beans.



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


[jira] [Commented] (ZOOKEEPER-2479) Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2479?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15766565#comment-15766565
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2479:
---

Github user rakeshadr commented on the issue:

https://github.com/apache/zookeeper/pull/130
  
Closing PR manually as this is committed to the branch-3.4


> Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean
> 
>
> Key: ZOOKEEPER-2479
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2479
> Project: ZooKeeper
>  Issue Type: Improvement
>  Components: quorum
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch
>
>
> The idea of this jira is to expose {{time taken}} for the leader election via 
> jmx Leader, Follower beans.



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


[jira] [Commented] (ZOOKEEPER-2044) CancelledKeyException in zookeeper 3.4.5

2016-12-21 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15766562#comment-15766562
 ] 

Hadoop QA commented on ZOOKEEPER-2044:
--

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12791627/ZOOKEEPER-2044.patch
  against trunk revision 8616a9ec8ce4bc8ac2987b7417a6f0c4b7333658.

+1 @author.  The patch does not contain any @author tags.

+1 tests included.  The patch appears to include 3 new or modified tests.

-1 patch.  The patch command could not apply the patch.

Console output: 
https://builds.apache.org/job/PreCommit-ZOOKEEPER-Build/3551//console

This message is automatically generated.

> CancelledKeyException in zookeeper 3.4.5
> 
>
> Key: ZOOKEEPER-2044
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2044
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: server
>Affects Versions: 3.4.6
> Environment: Red Hat Enterprise Linux Server release 6.2
>Reporter: shamjith antholi
>Assignee: Flavio Junqueira
>Priority: Minor
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2044.patch, ZOOKEEPER-2044.patch
>
>
> I am getting cancelled key exception in zookeeper (version 3.4.5). Please see 
> the log below. When this error is thrown, the connected solr shard is going 
> down by giving the error "Failed to index metadata in 
> Solr,StackTrace=SolrError: HTTP status 503.Reason: 
> {"responseHeader":{"status":503,"QTime":204},"error":{"msg":"ClusterState 
> says we are the leader, but locally we don't think so","code":503"  and 
> ultimately the current activity is going down. Could you please give a 
> solution for this ?
> Zookeper log 
> --
> 2014-09-16 02:58:47,799 [myid:1] - INFO  
> [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:ZooKeeperServer@832] - Client 
> attempting to renew session 0x24868e7ca980003 at /172.22.0.5:58587
> 2014-09-16 02:58:47,800 [myid:1] - INFO  
> [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:Learner@107] - Revalidating 
> client: 0x24868e7ca980003
> 2014-09-16 02:58:47,802 [myid:1] - INFO  
> [QuorumPeer[myid=1]/0:0:0:0:0:0:0:0:2181:ZooKeeperServer@588] - Invalid 
> session 0x24868e7ca980003 for client /172.22.0.5:58587, probably expired
> 2014-09-16 02:58:47,803 [myid:1] - INFO  
> [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@1001] - Closed 
> socket connection for client /172.22.0.5:58587 which had sessionid 
> 0x24868e7ca980003
> 2014-09-16 02:58:47,810 [myid:1] - ERROR 
> [CommitProcessor:1:NIOServerCnxn@180] - Unexpected Exception:
> java.nio.channels.CancelledKeyException
> at sun.nio.ch.SelectionKeyImpl.ensureValid(SelectionKeyImpl.java:55)
> at sun.nio.ch.SelectionKeyImpl.interestOps(SelectionKeyImpl.java:59)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.sendBuffer(NIOServerCnxn.java:153)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.sendResponse(NIOServerCnxn.java:1076)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.process(NIOServerCnxn.java:1113)
> at org.apache.zookeeper.server.DataTree.setWatches(DataTree.java:1327)
> at 
> org.apache.zookeeper.server.ZKDatabase.setWatches(ZKDatabase.java:384)
> at 
> org.apache.zookeeper.server.FinalRequestProcessor.processRequest(FinalRequestProcessor.java:304)
> at 
> org.apache.zookeeper.server.quorum.CommitProcessor.run(CommitProcessor.java:74)
>  



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


[jira] [Commented] (ZOOKEEPER-2479) Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean

2016-12-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2479?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15766566#comment-15766566
 ] 

ASF GitHub Bot commented on ZOOKEEPER-2479:
---

Github user rakeshadr closed the pull request at:

https://github.com/apache/zookeeper/pull/130


> Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean
> 
>
> Key: ZOOKEEPER-2479
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2479
> Project: ZooKeeper
>  Issue Type: Improvement
>  Components: quorum
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch
>
>
> The idea of this jira is to expose {{time taken}} for the leader election via 
> jmx Leader, Follower beans.



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


[GitHub] zookeeper pull request #130: ZOOKEEPER-2479: Add 'electionTimeTaken' value i...

2016-12-21 Thread rakeshadr
Github user rakeshadr closed the pull request at:

https://github.com/apache/zookeeper/pull/130


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Failed: ZOOKEEPER-2044 PreCommit Build #3551

2016-12-21 Thread Apache Jenkins Server
Jira: https://issues.apache.org/jira/browse/ZOOKEEPER-2044
Build: https://builds.apache.org/job/PreCommit-ZOOKEEPER-Build/3551/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 111 lines...]
 [exec] PATCH APPLICATION FAILED
 [exec] 
 [exec] 
 [exec] 
 [exec] 
 [exec] -1 overall.  Here are the results of testing the latest attachment 
 [exec]   
http://issues.apache.org/jira/secure/attachment/12791627/ZOOKEEPER-2044.patch
 [exec]   against trunk revision 8616a9ec8ce4bc8ac2987b7417a6f0c4b7333658.
 [exec] 
 [exec] +1 @author.  The patch does not contain any @author tags.
 [exec] 
 [exec] +1 tests included.  The patch appears to include 3 new or 
modified tests.
 [exec] 
 [exec] -1 patch.  The patch command could not apply the patch.
 [exec] 
 [exec] Console output: 
https://builds.apache.org/job/PreCommit-ZOOKEEPER-Build/3551//console
 [exec] 
 [exec] This message is automatically generated.
 [exec] 
 [exec] 
 [exec] 
==
 [exec] 
==
 [exec] Adding comment to Jira.
 [exec] 
==
 [exec] 
==
 [exec] 
 [exec] 
 [exec] Comment added.
 [exec] 8f8bd49e4aa85925946b817bf2581ab810cc5da8 logged out
 [exec] 
 [exec] 
 [exec] 
==
 [exec] 
==
 [exec] Finished build.
 [exec] 
==
 [exec] 
==
 [exec] 
 [exec] 
 [exec] mv: 
‘/home/jenkins/jenkins-slave/workspace/PreCommit-ZOOKEEPER-Build/patchprocess’ 
and 
‘/home/jenkins/jenkins-slave/workspace/PreCommit-ZOOKEEPER-Build/patchprocess’ 
are the same file

BUILD FAILED
/home/jenkins/jenkins-slave/workspace/PreCommit-ZOOKEEPER-Build/build.xml:1607: 
exec returned: 1

Total time: 43 seconds
Build step 'Execute shell' marked build as failure
Archiving artifacts
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Recording test results
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
ERROR: Step ‘Publish JUnit test result report’ failed: No test report files 
were found. Configuration error?
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
[description-setter] Description set: ZOOKEEPER-2044
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7
Setting JDK_1_7_LATEST__HOME=/home/jenkins/tools/java/latest1.7



###
## FAILED TESTS (if any) 
##
No tests ran.

[jira] [Commented] (ZOOKEEPER-2479) Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean

2016-12-21 Thread Flavio Junqueira (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-2479?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15766542#comment-15766542
 ] 

Flavio Junqueira commented on ZOOKEEPER-2479:
-

I don't know why it didn't close the pull request, but I can see the commit in 
the branch:

{noformat}
commit 52d365041759229ddc46798e34ee845fc1e26732
Author: Rakesh Radhakrishnan 
Date:   Tue Dec 20 13:52:50 2016 +

ZOOKEEPER-2479: Add 'electionTimeTaken' value in LeaderMXBean and 
FollowerMXBean

This PR is against branch-3.4, please review. Thanks!

Author: Rakesh Radhakrishnan 

Reviewers: fpj 

Closes #130 from rakeshadr/ZK-2479-br-3-4
{noformat}

I didn't get any error message or anything. I'd say it is safe to close the 
pull request.

> Add 'electionTimeTaken' value in LeaderMXBean and FollowerMXBean
> 
>
> Key: ZOOKEEPER-2479
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2479
> Project: ZooKeeper
>  Issue Type: Improvement
>  Components: quorum
>Reporter: Rakesh R
>Assignee: Rakesh R
> Fix For: 3.4.10, 3.5.3, 3.6.0
>
> Attachments: ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, ZOOKEEPER-2479.patch, 
> ZOOKEEPER-2479.patch
>
>
> The idea of this jira is to expose {{time taken}} for the leader election via 
> jmx Leader, Follower beans.



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


[jira] [Commented] (ZOOKEEPER-1237) ERRORs being logged when queued responses are sent after socket has closed.

2016-12-21 Thread Alexander Binzberger (JIRA)

[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-1237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15766534#comment-15766534
 ] 

Alexander Binzberger commented on ZOOKEEPER-1237:
-

looks similar to ZOOKEEPER-2044 - could this be the same thing?

> ERRORs being logged when queued responses are sent after socket has closed.
> ---
>
> Key: ZOOKEEPER-1237
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1237
> Project: ZooKeeper
>  Issue Type: Bug
>  Components: server
>Affects Versions: 3.3.4, 3.4.0, 3.5.0
>Reporter: Patrick Hunt
> Fix For: 3.5.3, 3.6.0
>
> Attachments: zookeeper-3.4.5-ZK1237.patch
>
>
> After applying ZOOKEEPER-1049 to 3.3.3 (I believe the same problem exists in 
> 3.4/3.5 but haven't tested this) I'm seeing the following exception more 
> frequently:
> {noformat}
> Oct 19, 1:31:53 PM ERROR
> Unexpected Exception:
> java.nio.channels.CancelledKeyException
> at sun.nio.ch.SelectionKeyImpl.ensureValid(SelectionKeyImpl.java:55)
> at sun.nio.ch.SelectionKeyImpl.interestOps(SelectionKeyImpl.java:59)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.sendBuffer(NIOServerCnxn.java:418)
> at 
> org.apache.zookeeper.server.NIOServerCnxn.sendResponse(NIOServerCnxn.java:1509)
> at 
> org.apache.zookeeper.server.FinalRequestProcessor.processRequest(FinalRequestProcessor.java:367)
> at 
> org.apache.zookeeper.server.quorum.CommitProcessor.run(CommitProcessor.java:73)
> {noformat}
> This is a long standing problem where we try to send a response after the 
> socket has been closed. Prior to ZOOKEEPER-1049 this issues happened much 
> less frequently (2 sec linger), but I believe it was possible. The timing 
> window is just wider now.



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


ZooKeeper_branch35_jdk7 - Build # 775 - Failure

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch35_jdk7/775/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 465448 lines...]
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)
[junit] 2016-12-21 08:48:25,741 [myid:127.0.0.1:30194] - INFO  
[main-SendThread(127.0.0.1:30194):ClientCnxn$SendThread@1113] - Opening socket 
connection to server 127.0.0.1/127.0.0.1:30194. Will not attempt to 
authenticate using SASL (unknown error)
[junit] 2016-12-21 08:48:25,741 [myid:127.0.0.1:30194] - WARN  
[main-SendThread(127.0.0.1:30194):ClientCnxn$SendThread@1235] - Session 
0x1014ce8b9ee for server 127.0.0.1/127.0.0.1:30194, unexpected error, 
closing socket connection and attempting reconnect
[junit] java.net.ConnectException: Connection refused
[junit] at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
[junit] at 
sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:744)
[junit] at 
org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:357)
[junit] at 
org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1214)
[junit] 2016-12-21 08:48:25,988 [myid:] - INFO  [ProcessThread(sid:0 
cport:30317)::PrepRequestProcessor@656] - Processed session termination for 
sessionid: 0x1014cec05da
[junit] 2016-12-21 08:48:25,989 [myid:] - INFO  [main:ZooKeeper@1311] - 
Session: 0x1014cec05da closed
[junit] 2016-12-21 08:48:25,989 [myid:] - INFO  
[SyncThread:0:MBeanRegistry@128] - Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port30317,name1=Connections,name2=127.0.0.1,name3=0x1014cec05da]
[junit] 2016-12-21 08:48:25,989 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 175744
[junit] 2016-12-21 08:48:25,989 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x1014cec05da
[junit] 2016-12-21 08:48:25,989 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 1644
[junit] 2016-12-21 08:48:25,990 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testWatcherAutoResetWithLocal
[junit] 2016-12-21 08:48:25,990 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-21 08:48:25,990 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-21 08:48:25,990 [myid:] - INFO  
[main:NettyServerCnxnFactory@464] - shutdown called 0.0.0.0/0.0.0.0:30317
[junit] 2016-12-21 08:48:25,996 [myid:] - INFO  [main:ZooKeeperServer@533] 
- shutting down
[junit] 2016-12-21 08:48:25,998 [myid:] - ERROR [main:ZooKeeperServer@505] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-21 08:48:25,998 [myid:] - INFO  
[main:SessionTrackerImpl@232] - Shutting down
[junit] 2016-12-21 08:48:25,998 [myid:] - INFO  
[main:PrepRequestProcessor@974] - Shutting down
[junit] 2016-12-21 08:48:25,998 [myid:] - INFO  
[main:SyncRequestProcessor@191] - Shutting down
[junit] 2016-12-21 08:48:25,999 [myid:] - INFO  [ProcessThread(sid:0 
cport:30317)::PrepRequestProcessor@154] - PrepRequestProcessor exited loop!
[junit] 2016-12-21 08:48:25,999 [myid:] - INFO  
[SyncThread:0:SyncRequestProcessor@169] - SyncRequestProcessor exited!
[junit] 2016-12-21 08:48:25,999 [myid:] - INFO  
[main:FinalRequestProcessor@479] - shutdown of request processor complete
[junit] 2016-12-21 08:48:25,999 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean 
[org.apache.ZooKeeperService:name0=StandaloneServer_port30317,name1=InMemoryDataTree]
[junit] 2016-12-21 08:48:25,999 [myid:] - INFO  [main:MBeanRegistry@128] - 
Unregister MBean [org.apache.ZooKeeperService:name0=StandaloneServer_port30317]
[junit] 2016-12-21 08:48:26,000 [myid:] - INFO  
[main:FourLetterWordMain@85] - connecting to 127.0.0.1 30317
[junit] 2016-12-21 08:48:26,000 [myid:] - INFO  [main:JMXEnv@146] - 
ensureOnly:[]
[junit] 2016-12-21 08:48:26,006 [myid:] - INFO  [main:ClientBase@568] - 
fdcount after test is: 4828 at start it was 4824
[junit] 2016-12-21 08:48:26,006 [myid:] - INFO  [main:ClientBase@570] - 
sleeping for 20 secs
[junit] 2016-12-21 08:48:26,006 [myid:] - INFO  [main:ZKTestCase$1@65] - 
SUCCEEDED testWatcherAutoResetWithLocal
[junit] 2016-12-21 08:48:26,006 [myid:] - INFO  [main:ZKTestCase$1@60] - 
FINISHED testWatcherAutoResetWithLocal
[junit] Tests run: 101, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
470.43 sec, Thread: 8, Class: org.apache.zookeeper.test.NioNettySuiteTest
[junit] 2016-12-21 08:48:26,141 

ZooKeeper-trunk-solaris - Build # 1432 - Still Failing

2016-12-21 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-solaris/1432/

###
## LAST 60 LINES OF THE CONSOLE 
###
[...truncated 493753 lines...]
[junit] 2016-12-21 08:32:35,026 [myid:] - INFO  [main:ClientBase@386] - 
CREATING server instance 127.0.0.1:11222
[junit] 2016-12-21 08:32:35,027 [myid:] - INFO  
[main:NIOServerCnxnFactory@673] - Configuring NIO connection handler with 10s 
sessionless connection timeout, 2 selector thread(s), 16 worker threads, and 64 
kB direct buffers.
[junit] 2016-12-21 08:32:35,027 [myid:] - INFO  
[main:NIOServerCnxnFactory@686] - binding to port 0.0.0.0/0.0.0.0:11222
[junit] 2016-12-21 08:32:35,028 [myid:] - INFO  [main:ClientBase@361] - 
STARTING server instance 127.0.0.1:11222
[junit] 2016-12-21 08:32:35,028 [myid:] - INFO  [main:ZooKeeperServer@894] 
- minSessionTimeout set to 6000
[junit] 2016-12-21 08:32:35,028 [myid:] - INFO  [main:ZooKeeperServer@903] 
- maxSessionTimeout set to 6
[junit] 2016-12-21 08:32:35,028 [myid:] - INFO  [main:ZooKeeperServer@160] 
- Created server with tickTime 3000 minSessionTimeout 6000 maxSessionTimeout 
6 datadir 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test8813917399475472346.junit.dir/version-2
 snapdir 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test8813917399475472346.junit.dir/version-2
[junit] 2016-12-21 08:32:35,029 [myid:] - INFO  [main:FileSnap@83] - 
Reading snapshot 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test8813917399475472346.junit.dir/version-2/snapshot.b
[junit] 2016-12-21 08:32:35,031 [myid:] - INFO  [main:FileTxnSnapLog@306] - 
Snapshotting: 0xb to 
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/ZooKeeper-trunk-solaris/build/test/tmp/test8813917399475472346.junit.dir/version-2/snapshot.b
[junit] 2016-12-21 08:32:35,032 [myid:] - ERROR [main:ZooKeeperServer@506] 
- ZKShutdownHandler is not registered, so ZooKeeper server won't take any 
action on ERROR or SHUTDOWN server state changes
[junit] 2016-12-21 08:32:35,033 [myid:] - INFO  
[main:FourLetterWordMain@85] - connecting to 127.0.0.1 11222
[junit] 2016-12-21 08:32:35,033 [myid:] - INFO  
[NIOServerCxnFactory.AcceptThread:0.0.0.0/0.0.0.0:11222:NIOServerCnxnFactory$AcceptThread@296]
 - Accepted socket connection from /127.0.0.1:51552
[junit] 2016-12-21 08:32:35,034 [myid:] - INFO  
[NIOWorkerThread-1:NIOServerCnxn@485] - Processing stat command from 
/127.0.0.1:51552
[junit] 2016-12-21 08:32:35,034 [myid:] - INFO  
[NIOWorkerThread-1:StatCommand@49] - Stat command output
[junit] 2016-12-21 08:32:35,034 [myid:] - INFO  
[NIOWorkerThread-1:NIOServerCnxn@607] - Closed socket connection for client 
/127.0.0.1:51552 (no session established for client)
[junit] 2016-12-21 08:32:35,034 [myid:] - INFO  [main:JMXEnv@228] - 
ensureParent:[InMemoryDataTree, StandaloneServer_port]
[junit] 2016-12-21 08:32:35,036 [myid:] - INFO  [main:JMXEnv@245] - 
expect:InMemoryDataTree
[junit] 2016-12-21 08:32:35,036 [myid:] - INFO  [main:JMXEnv@249] - 
found:InMemoryDataTree 
org.apache.ZooKeeperService:name0=StandaloneServer_port11222,name1=InMemoryDataTree
[junit] 2016-12-21 08:32:35,036 [myid:] - INFO  [main:JMXEnv@245] - 
expect:StandaloneServer_port
[junit] 2016-12-21 08:32:35,036 [myid:] - INFO  [main:JMXEnv@249] - 
found:StandaloneServer_port 
org.apache.ZooKeeperService:name0=StandaloneServer_port11222
[junit] 2016-12-21 08:32:35,036 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@82] - Memory used 17816
[junit] 2016-12-21 08:32:35,037 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@87] - Number of threads 24
[junit] 2016-12-21 08:32:35,037 [myid:] - INFO  
[main:JUnit4ZKTestRunner$LoggedInvokeMethod@102] - FINISHED TEST METHOD 
testQuota
[junit] 2016-12-21 08:32:35,037 [myid:] - INFO  [main:ClientBase@543] - 
tearDown starting
[junit] 2016-12-21 08:32:35,112 [myid:] - INFO  [main:ZooKeeper@1313] - 
Session: 0x1259d7c83ff closed
[junit] 2016-12-21 08:32:35,112 [myid:] - INFO  
[main-EventThread:ClientCnxn$EventThread@513] - EventThread shut down for 
session: 0x1259d7c83ff
[junit] 2016-12-21 08:32:35,112 [myid:] - INFO  [main:ClientBase@513] - 
STOPPING server
[junit] 2016-12-21 08:32:35,113 [myid:] - INFO  
[ConnnectionExpirer:NIOServerCnxnFactory$ConnectionExpirerThread@583] - 
ConnnectionExpirerThread interrupted
[junit] 2016-12-21 08:32:35,113 [myid:] - INFO  
[NIOServerCxnFactory.SelectorThread-1:NIOServerCnxnFactory$SelectorThread@420] 
- selector thread exitted run method
[junit] 2016-12-21 08:32:35,113 [myid:] - INFO