with zmq 3.1,on heavy socket creation,an exception occurs (device or resource busy cpp:92)
Description
on heavy socket creation ,an exception whose description is device or resource busy(mutex cpp:91) occurs,which lead my tomcat progress crash.Than I change the ZMQ version(3.1),on heavy socket creation , another exception whose description is device or resource busy(mutex cpp:92) occurs,which alse lead my tomcat progress crash. as the same with 用zmq2.1的时候,在大量socket被创建的时候,抛出一个异常,描述信息为device or resource busy(mutext cpp:91),导致整个tomcat进程挂掉。看了 LIBZMQ-281中此问题的解决方案(这个bug是zmq2.x有的一个问题,换为3.x可以解决掉),换为3.1,此种情况没有再出现。但当跑稳定性测试时,再次出现类似异常,导致tomcat进程挂掉,异常描述信息为device or resource busy(mutext cpp:92)。异常由91行变为92行,经查看Mutex文件代码,这与2.x中应该是同一个问题,在修2.x的时候没有修彻底(推测)
on heavy socket creation ,an exception whose description is device or resource busy(mutex cpp:91) occurs,which lead my tomcat progress crash.Than I change the ZMQ version(3.1),on heavy socket creation , another exception whose description is device or resource busy(mutex cpp:92) occurs,which alse lead my tomcat progress crash.
as the same with
用zmq2.1的时候,在大量socket被创建的时候,抛出一个异常,描述信息为device or resource busy(mutext cpp:91),导致整个tomcat进程挂掉。看了 LIBZMQ-281中此问题的解决方案(这个bug是zmq2.x有的一个问题,换为3.x可以解决掉),换为3.1,此种情况没有再出现。但当跑稳定性测试时,再次出现类似异常,导致tomcat进程挂掉,异常描述信息为device or resource busy(mutext cpp:92)。异常由91行变为92行,经查看Mutex文件代码,这与2.x中应该是同一个问题,在修2.x的时候没有修彻底(推测)