码迷,mamicode.com
首页 > 其他好文 > 详细

NIO设置SO_LINGER引发的异常

时间:2014-05-07 06:30:21      阅读:425      评论:0      收藏:0      [点我收藏+]

标签:so_linger   无法立即完成一个非阻止性套接字操作   

欢迎关注Github:https://github.com/teaey/


### 背景

银时跟我讲,想从 Netty3迁移到Netty4 


问其原因是因为 Netty3在容器里会报错,错误堆栈:

java.io.IOException: 无法立即完成一个非阻止性套接字操作。

at sun.nio.ch.SocketDispatcher.close0(Native Method)

at sun.nio.ch.SocketDispatcher.preClose(SocketDispatcher.java:44)

at sun.nio.ch.SocketChannelImpl.implCloseSelectableChannel(SocketChannelImpl.java:677)

at java.nio.channels.spi.AbstractSelectableChannel.implCloseChannel(AbstractSelectableChannel.java:201)

at java.nio.channels.spi.AbstractInterruptibleChannel.close(AbstractInterruptibleChannel.java:97)

### 分析

看到这个问题,之前我也没有遇到过,不过如果 netty3有这个问题,netty4应该也会存在。那就看看到底什么导致这个问题。

找到 SocketDispatcherclose0 方法,这是个本地方法:
bubuko.com,布布扣
找到 Windows的实现:
bubuko.com,布布扣

Windows平台通过调用closesocket winsock2.h)关闭套接字。
接着查看巨硬的 官方文档,内容摘要:

if no error occurs, closesocket returns zero. Otherwise, a value of SOCKET_ERROR is returned, and a specific error code can be retrieved by calling WSAGetLastError.

意思就是如果正确返回 0,如果错误返回SOCKET_ERROR。并且通过 WSAGetLastError函数获取错误状态。

这里很明显是发生出错误向上抛出了异常。
通过分析 closesocket的错误状态信息以及谷歌“无法立即完成一个非阻止性套接字操作”,确诊为错误状态 WSAEWOULDBLOCK  

阅读 官方文档,得知该错误状态是设置了 SO_LINGER所致。

于是回过头去看下代码,果然,图为截取的 Netty代码片段:
bubuko.com,布布扣

巨硬的文档是这么说的:

Setting the l_onoff member of the  linger structure to nonzero and the l_linger member with a nonzero timeout interval on a nonblocking socket is not recommended.

意思是,在非阻塞的 Socket情况下不建议设置SO_LINGER参数。

In this case, the call to  closesocket  will fail with an error of WSAEWOULDBLOCK if the close operation cannot be completed immediately. If  closesocket fails with WSAEWOULDBLOCK the socket handle is still valid, and a disconnect is not initiated. The application must call closesocket again to close the socket.

如果设置了 SO_LINGER,并且制定了超时时间,这时,我们调用 closesocket方法,方法不能立即完成的话,会抛出 WSAEWOULDBLOCK  错误。但是,这个 socket此时还是有效的,可以一段时间之后再次调用 close方法进行关闭尝试。

### 解决方法

但是 java抛出简单IOException ,我们无法判断是否为 WSAEWOULDBLOCK  错误。很难判断是否是因为其他原因导致的 IOException,所以不可能进行重试。

最终,解决方法去掉
bubuko.com,布布扣
这行代码。

改进之后,在调用 close方法时,不会抛出异常并且在底层 socket关闭前,系统会尽可能的把将缓冲队列的数据发送给对端。原文如下:

If the l_onoff member of the  LINGER structure is zero on a stream socket, the closesocket call will return immediately and does not receive  whether the socket is blocking or nonblocking. However, any data queued for transmission will be sent, if possible, before the underlying socket is closed.

### 总结

在使用NIO 的时候,最好不要配置 SO_LINGER,如果设置了该参数,在 close的时候如缓冲区有数据待写出,会抛出 IOException

后记:最近银时发现,Zookeeper之前的版本也是有设置这个参数,并且在最新版本去掉了这个参数,难道大神们的代码也是Ctrl+C,Ctrl+V过来的。呵呵。bubuko.com,布布扣

### 参考资料

NIO设置SO_LINGER引发的异常,布布扣,bubuko.com

NIO设置SO_LINGER引发的异常

标签:so_linger   无法立即完成一个非阻止性套接字操作   

原文地址:http://blog.csdn.net/teaey/article/details/25072377

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!