java.net.SocketException: Broken pipe问题

1.mysql

(1)大量数据访问情况下,mysql connection连接有可能失效
(2)长时间不妨问,connection会失效

关于MySQL的wait_timeout连接超时问题报错解决方案 
Mysql服务器默认的“wait_timeout”是8小时【也就是默认的值默认是28800秒】,也就是说一个connection空闲超过8个小时,Mysql将自动断开该connection,通俗的讲就是一个连接在8小时内没有活动,就会自动断开该连接。 wait timeout的值可以设定,但最多只能是2147483,不能再大了。也就是约24.85天 
所以即使你MySQL通过my.ini 在 
# The TCP/IP Port the MySQL Server will listen on port=3306下面添加 
# this is myown dinifition for mysql connection timeout wait_timeout=31536000 
interactive_timeout=31536000 
无论超过最大限度多大的数值,只能被MySQL解析为2147483,2147483天后你的程序该出什么错还是什么错,避免不了

2.liunx系统的线程机制会产生JVM出错的问题,特别是在连接高峰期间经常出现这样的问题,tomcat在linux下也出现类似情况。



解决办法是在环境变量中设置:_JAVA_SR_SIGNUM=12 基本就可以解决。
sun的解释:
--posted by: cooper
Below is a clipping from Sun on working around JVM crashes under high
thread counts in the JVM 1.3 for Linux

On Linux, use a larger signal number for hotspot thread
suspension/resumption handler. The signal number being used is
specified by environment variable _JAVA_SR_SIGNUM. Setting it to a
number larger than SIGSEGV (11) will solve the problem. A good number
to use is 12, which is SIGUSR2. Using signal 16 to work around the
problem might have potential problems. So on tcsh, "setenv
_JAVA_SR_SIGNUM 12" can solve the problem.

猜你喜欢

转载自zaizai2013.iteye.com/blog/2360990