Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.94.3, 0.95.2
-
None
-
None
-
JDK6 on windows for ipv6.
-
Reviewed
Description
While running the test TestAdmin.testCheckHBaseAvailableClosesConnection(), I noticed that it takes very long, since it sleeps for 2sec * 500, because of zookeeper retries.
The root cause of the problem is that ZK uses Java NIO to create ServerSorcket's from ServerSocketChannels. Under windows, the ipv4 and ipv6 is implemented independently, and Java seems that it cannot reuse the same socket channel for both ipv4 and ipv6 sockets. We are getting "java.net.SocketException: Address family not supported by protocol
family" exceptions. When, ZK client resolves "localhost", it gets both v4 127.0.0.1 and v6 ::1 address, but the socket channel cannot bind to both v4 and v6.
The problem is reported as:
http://bugs.sun.com/view_bug.do?bug_id=6230761
http://stackoverflow.com/questions/1357091/binding-an-ipv6-server-socket-on-windows
Although the JDK bug is reported as resolved, I have tested with jdk1.6.0_33 without any success. Although JDK7 seems to have fixed this problem. In ZK, we can replace the ClientCnxnSocket implementation from ClientCnxnSocketNIO to a non-NIO one, but I am not sure that would be the way to go.
Disabling ipv6 resolution of "localhost" is one other approach. I'll test it to see whether it will be any good.
Attachments
Attachments
Issue Links
- blocks
-
HBASE-6817 [WINDOWS] Get HBase tests working under Windows
- Closed
- is related to
-
HBASE-7301 Force ipv4 for unit tests
- Closed
- relates to
-
HIVE-3461 hive unit tests fail to get lock using zookeeper on windows
- Closed