You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by GitBox <gi...@apache.org> on 2021/02/07 22:31:09 UTC

[GitHub] [incubator-pinot] dongxiaoman opened a new issue #6554: Zookeeper client version so zookeeper client will re-resolve hosts when IP has changed

dongxiaoman opened a new issue #6554:
URL: https://github.com/apache/incubator-pinot/issues/6554


   We have the same situation as mentioned in [Zookeeper bug here](https://issues.apache.org/jira/browse/ZOOKEEPER-2184) . Simple version is, we will replace zookeeper servers with a new host that has new IP address, but still keep the host name in the DNS.
   This bug in Zookeeper client is fixed in `3.4.13`+ or 3.5.5+, or 3.6.0+ and pinot is using 3.4.11
   Can we upgrade at least the minor version to 3.4.13? 
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [incubator-pinot] fx19880617 closed issue #6554: Zookeeper client version so zookeeper client will re-resolve hosts when IP has changed

Posted by GitBox <gi...@apache.org>.
fx19880617 closed issue #6554:
URL: https://github.com/apache/incubator-pinot/issues/6554


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [incubator-pinot] fx19880617 commented on issue #6554: Zookeeper client version so zookeeper client will re-resolve hosts when IP has changed

Posted by GitBox <gi...@apache.org>.
fx19880617 commented on issue #6554:
URL: https://github.com/apache/incubator-pinot/issues/6554#issuecomment-775522052


   I'm seeing an issue of zk client connection for jdk14+ after the upgrade.
   Will investigate this.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [incubator-pinot] fx19880617 edited a comment on issue #6554: Zookeeper client version so zookeeper client will re-resolve hosts when IP has changed

Posted by GitBox <gi...@apache.org>.
fx19880617 edited a comment on issue #6554:
URL: https://github.com/apache/incubator-pinot/issues/6554#issuecomment-775522052


   I'm seeing an issue of zk client connection for jdk14+ after the upgrade.
   Will investigate this.
   Sample stacktrace:
   ```
   2021/02/08 15:09:32.672 WARN [ClientCnxn] [main-SendThread(localhost:2123)] Session 0x0 for server localhost/<unresolved>:2123, unexpected error, closing socket connection and attempting reconnect
   java.nio.channels.UnresolvedAddressException: null
   	at sun.nio.ch.Net.checkAddress(Net.java:139) ~[?:?]
   	at sun.nio.ch.SocketChannelImpl.checkRemote(SocketChannelImpl.java:727) ~[?:?]
   	at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:741) ~[?:?]
   	at org.apache.zookeeper.ClientCnxnSocketNIO.registerAndConnect(ClientCnxnSocketNIO.java:277) ~[zookeeper-3.4.13.jar:3.4.13-2d71af4dbe22557fda74f9a9b4309b15a7487f03]
   	at org.apache.zookeeper.ClientCnxnSocketNIO.connect(ClientCnxnSocketNIO.java:287) ~[zookeeper-3.4.13.jar:3.4.13-2d71af4dbe22557fda74f9a9b4309b15a7487f03]
   	at org.apache.zookeeper.ClientCnxn$SendThread.startConnect(ClientCnxn.java:1021) ~[zookeeper-3.4.13.jar:3.4.13-2d71af4dbe22557fda74f9a9b4309b15a7487f03]
   	at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1064) [zookeeper-3.4.13.jar:3.4.13-2d71af4dbe22557fda74f9a9b4309b15a7487f03]
   2021/02/08 15:09:33.785 INFO [ClientCnxn] [main-SendThread(localhost:2123)] Opening socket connection to server localhost/<unresolved>:2123. Will not attempt to authenticate using SASL (unknown error)
   2021/02/08 15:09:33.786 WARN [ClientCnxn] [main-SendThread(localhost:2123)] Session 0x0 for server localhost/<unresolved>:2123, unexpected error, closing socket connection and attempting reconnect
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [incubator-pinot] fx19880617 commented on issue #6554: Zookeeper client version so zookeeper client will re-resolve hosts when IP has changed

Posted by GitBox <gi...@apache.org>.
fx19880617 commented on issue #6554:
URL: https://github.com/apache/incubator-pinot/issues/6554#issuecomment-775415113


   I think we can upgrade zk version to 3.4.13 @mayankshriv @kishoreg 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [incubator-pinot] fx19880617 edited a comment on issue #6554: Zookeeper client version so zookeeper client will re-resolve hosts when IP has changed

Posted by GitBox <gi...@apache.org>.
fx19880617 edited a comment on issue #6554:
URL: https://github.com/apache/incubator-pinot/issues/6554#issuecomment-775415113


   I think we can upgrade zk version to 3.4.13
   
   fyi @mayankshriv @kishoreg 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org