Home > Backend Development > PHP Tutorial > 生产环境中,Socket 错误 EINTR 一般是由于什么原因触发的?

生产环境中,Socket 错误 EINTR 一般是由于什么原因触发的?

WBOY
Release: 2016-06-06 20:50:30
Original
1403 people have browsed it

线上有一个PHP脚本用于连接一组socket服务查询数据,这个脚本每分钟被运行一次。

运行一段时间后在日志中发现少量的EINTR的错误,主要是执行到 socket_read 引发的。

查阅资料后了解到对Socket读这类的操作会调用Slow System Call,当内核执行Slow System Call时,阻塞状态时进程收到信号,会造成这个Slow System Call被打断,由此触发了EINTR错误。

我想请问下,在生产环境中,这类问题一般是由什么原因引起的?

=====

系统环境:

OS:centos 5.4
HTTP 服务器:Apache,worker 模式,即多进程多线程
PHP 以模块方式运行,版本 5.3.22

怀疑是Apache的 worker 达到最大请求数,销毁重建引起的,可能吗?

有可能是 Socket 服务端的问题吗?

回复内容:

线上有一个PHP脚本用于连接一组socket服务查询数据,这个脚本每分钟被运行一次。

运行一段时间后在日志中发现少量的EINTR的错误,主要是执行到 socket_read 引发的。

查阅资料后了解到对Socket读这类的操作会调用Slow System Call,当内核执行Slow System Call时,阻塞状态时进程收到信号,会造成这个Slow System Call被打断,由此触发了EINTR错误。

我想请问下,在生产环境中,这类问题一般是由什么原因引起的?

=====

系统环境:

OS:centos 5.4
HTTP 服务器:Apache,worker 模式,即多进程多线程
PHP 以模块方式运行,版本 5.3.22

怀疑是Apache的 worker 达到最大请求数,销毁重建引起的,可能吗?

有可能是 Socket 服务端的问题吗?

只要遇到中断就会返回EINTR,这是非常正常的,直接再接着read就行。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template