RE: Regarding Super user check inconsistency

2017-06-12 Thread bhupendra jain
Thanks Han for clarifying this ... ZOOKEEPER-1782 is exactly what I was looking for. I think this JIRA must get in soon. So the contract remains same for all auth providers i.e. set the scheme as "super" -Original Message- From: Michael Han [mailto:h...@cloudera.com] Sent:

[jira] [Commented] (ZOOKEEPER-2592) Zookeeper is not recoverable once running system( machine on which zookeeper is running) is out of space

2017-06-12 Thread Rakesh R (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2592?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16047365#comment-16047365 ] Rakesh R commented on ZOOKEEPER-2592: - bq. But this issue is there in standalone mode.

[jira] [Assigned] (ZOOKEEPER-2755) Allow to subclass ClientCnxnSocketNetty and NettyServerCnxn in order to use Netty Local transport

2017-06-12 Thread Michael Han (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2755?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Han reassigned ZOOKEEPER-2755: -- Assignee: Enrico Olivelli > Allow to subclass ClientCnxnSocketNetty and

[jira] [Resolved] (ZOOKEEPER-2805) NullPointerException when using no merge merge policy and too many disk components

2017-06-12 Thread Michael Han (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2805?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Han resolved ZOOKEEPER-2805. Resolution: Invalid ZooKeeper does not use LSM tree and the description of the problem

[jira] [Comment Edited] (ZOOKEEPER-2775) ZK Client not able to connect with Xid out of order error

2017-06-12 Thread Michael Han (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2775?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16042923#comment-16042923 ] Michael Han edited comment on ZOOKEEPER-2775 at 6/12/17 11:20 PM: --

[jira] [Commented] (ZOOKEEPER-2775) ZK Client not able to connect with Xid out of order error

2017-06-12 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2775?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16047204#comment-16047204 ] ASF GitHub Bot commented on ZOOKEEPER-2775: --- Github user hanm commented on the issue:

[GitHub] zookeeper issue #278: ZOOKEEPER-2775: ZK Client not able to connect with Xid...

2017-06-12 Thread hanm
Github user hanm commented on the issue: https://github.com/apache/zookeeper/pull/278 lgtm, will merge soon. --- 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

Re: Regarding Super user check inconsistency

2017-06-12 Thread Bobby Evans
I am a little busy right now, but yes if someone wants to turn my patch into a pull request that would be great.  If not I'll try to find some time to do it. - Bobby On Monday, June 12, 2017, 1:39:57 PM CDT, Michael Han wrote: Hi Bhupendra, I think it is a known issue

ZooKeeper-trunk-openjdk7 - Build # 1507 - Failure

2017-06-12 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-openjdk7/1507/ ### ## LAST 60 LINES OF THE CONSOLE ### [...truncated 64.21 MB...] [junit] at

Re: Regarding Super user check inconsistency

2017-06-12 Thread Michael Han
Hi Bhupendra, I think it is a known issue that SASL does not support super user. ZOOKEEPER-1782 had a patch to fix this, but the patch never landed. The patch seems reasonable, maybe you can create a PR based on the patch? >> there should be separate super user check based on all the auth

Re: How to run a single unit test of ZooKeeper in command line?

2017-06-12 Thread Michael Han
You can check build.xml for various targets, but for your question: ant -Dtestcase=ReconfigRecoveryTest test-core-java branch-3.5 and master also supports running a single test method ant -Dtestcase=ReconfigRecoveryTest -Dtest.method=testCurrentObserverIsParticipantInNewConfig test-core-java

[jira] [Updated] (ZOOKEEPER-2355) Ephemeral node is never deleted if follower fails while reading the proposal packet

2017-06-12 Thread Michael Han (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2355?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Han updated ZOOKEEPER-2355: --- Affects Version/s: 3.4.8 3.4.9 3.4.10

[jira] [Updated] (ZOOKEEPER-2355) Ephemeral node is never deleted if follower fails while reading the proposal packet

2017-06-12 Thread Michael Han (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2355?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Han updated ZOOKEEPER-2355: --- Fix Version/s: (was: 3.5.4) (was: 3.6.0) > Ephemeral node is

ZooKeeper_branch34_openjdk7 - Build # 1536 - Failure

2017-06-12 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch34_openjdk7/1536/ ### ## LAST 60 LINES OF THE CONSOLE ### Started by timer [EnvInject] - Loading node environment

ZooKeeper_branch35_jdk8 - Build # 562 - Failure

2017-06-12 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper_branch35_jdk8/562/ ### ## LAST 60 LINES OF THE CONSOLE ### [...truncated 64.15 MB...] [junit] 2017-06-12 12:15:16,645

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

2017-06-12 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-jdk8/1085/ ### ## LAST 60 LINES OF THE CONSOLE ### [...truncated 61.53 MB...] [junit] at

Regarding Super user check inconsistency

2017-06-12 Thread bhupendra jain
HI I have some doubts on the contract of super user in Zookeeper .. as I see the c ode , Different auth provider has different mechanism to identify the super user. When ACL check happens, - Based on scheme "Super" it considers the user as super user. for (Id authId : ids) {

How to run a single unit test of ZooKeeper in command line?

2017-06-12 Thread ??????
How can I run a single ZooKeeper unit test class in command line? I'm newbie to ant. Hope someone can help, thanks. Jiang Jiafu

[GitHub] zookeeper pull request #112: ZOOKEEPER-2355:Ephemeral node is never deleted ...

2017-06-12 Thread JiangJiafu
Github user JiangJiafu commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/112#discussion_r121320033 --- Diff: src/java/test/org/apache/zookeeper/server/quorum/EphemeralNodeDeletionTest.java --- @@ -0,0 +1,222 @@ +/** + * Licensed to the