Re: Disable anonymous access

2017-11-14 Thread wang liang
Hi Jamieļ¼Œ you can see https://cwiki.apache.org/confluence/display/ZOOKEEPER/Client-Server+mutual+authentication On 15 Nov 2017, at 9:34 AM, Jamie Wang > wrote: Hi, I am new to zookeeper. I am wondering if there is a way to disable anonymous

Disable anonymous access

2017-11-14 Thread Jamie Wang
Hi, I am new to zookeeper. I am wondering if there is a way to disable anonymous connection to a zookeeper server or process. Either via configuration parameter or API would work. Thanks in advance for your input and pointers. Jamie

ZooKeeper-trunk - Build # 3608 - Still Failing

2017-11-14 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk/3608/ ### ## LAST 60 LINES OF THE CONSOLE ### [...truncated 65.77 MB...] [junit] 2017-11-14 23:26:31,164 [myid:] -

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

2017-11-14 Thread Apache Jenkins Server
See https://builds.apache.org/job/ZooKeeper-trunk-openjdk7/1698/ ### ## LAST 60 LINES OF THE CONSOLE ### [...truncated 67.20 MB...] [junit] at

[jira] [Updated] (ZOOKEEPER-2935) [QP MutualAuth]: Port ZOOKEEPER-1045 implementation from branch-3.5 to trunk

2017-11-14 Thread Abraham Fine (JIRA)
[ https://issues.apache.org/jira/browse/ZOOKEEPER-2935?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Abraham Fine updated ZOOKEEPER-2935: Fix Version/s: (was: 3.5.4) > [QP MutualAuth]: Port ZOOKEEPER-1045 implementation

Re: how zookeeper promise FIFO client order

2017-11-14 Thread Alexander Shraer
Hi, Specific implementations of Raft may guarantee client program order, but I don't think that it directly follows from tcp order + state machine. It matters whether commands are committed to the log according to program order. For example, here's an implementation that seems to be doing this:

Re: how zookeeper promise FIFO client order

2017-11-14 Thread baotiao
Hi Andor Another question is that if zookeeper only promise channel FIFO order, I think raft that build upon tcp also promise FIFO client order, since ther FIFO order is promise by the tcp connection, and almost all consensus algorithm apply the log to state machine in order. if I