jira-importer
jira-importer
benjamin.jaton: Sounds good, I will check the 3.x release. But I won't be able to use it for existing deployments, any chance to fix version 2.x?
randgalt: It would be hard to back port to 2.x.
benjamin.jaton: Does it need a backport? Just a fix of the existing mechanism is enough, no need to change the whole thing if possible.
randgalt: It's one of those things where I can't know if people are depending on it. Maybe we can add a System property to change to new behavior. That would...
benjamin.jaton: Just to clarify, in this case there is still 1 of the ZK node started, so then the Curator client should successfully connect to it, and blockUntilConnectedOrTimedOut() should return...
randgalt: Yes - though it's ZooKeeper doing the actual connecting.
benjamin.jaton: So when I connect using ZK API directly with sessionTimeout=45000, and when it picks up the server that is NOT started first, it takes the ZK client API 22...
randgalt: ConnectionTimeout is a Curator concept. You should set it to whatever you need. ZooKeeper fails a heartbeat after 2/3 of a session as you have seen.
benjamin.jaton: Is there a documentation somewhere that talks about what connectionTimeout means for Curator? I thought it was the timeout of the connection to a specific node. Also I don't...
benjamin.jaton: Let's note that the code you provided using the TestingCluster class cannot be used to reproduce the behavior stated in the bug, as local connection will be actively denied...