search
HomeBackend DevelopmentPHP TutorialComprehensive summary of PHP timeout processing (1)_PHP tutorial
Comprehensive summary of PHP timeout processing (1)_PHP tutorialJul 20, 2016 am 10:58 AM
phpcomprehensiveexistdeal withWorkdevelopSummarizeOverviewoftime out

【Overview】

In PHP development, there are many situations where timeout processing is used. Let me talk about a few scenarios:

1. Asynchronous acquisition of data if If a certain back-end data source is not successfully obtained, it will be skipped without affecting the display of the entire page

2. In order to ensure that the web server will not be unable to access other pages due to poor processing performance of the current page, a certain back-end data source will be skipped. Some page operation settings

3. For some uploads or situations where the processing time is uncertain, all timeouts in the entire process need to be set to infinite. Otherwise, improper setting of any link will lead to inexplicable execution interruption

4. Multiple backend modules (MySQL, Memcached, HTTP interface), in order to prevent the performance of a single interface from being too poor, causing the entire front to obtain data too slowly, affecting the page opening speed and causing an avalanche

5 .. . . There are many occasions where timeouts are required

These places need to consider the setting of timeouts, but timeouts in PHP are divided into categories, and each processing method and strategy is different. For the purpose of describing the system, I have summarized the commonly used ones in PHP Summary of timeout handling.

[Web server timeout processing]

[Apache]

Generally, when performance is high, the default all timeout configurations are 30 seconds, but when uploading files or the network speed is very slow, a timeout operation may be triggered.

There are currently three timeout settings in apache fastcgi php-fpm mode:

fastcgi timeout setting:

Modify the fastcgi connection configuration of httpd.conf, similar to the following:

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span class="tag-name">IfModule</span><span> mod_fastcgi.c</span><span class="tag">></span><span>   </span></span></span></li>
<li><span>    FastCgiExternalServer /home/forum/apache/apache_php/cgi-bin/php-cgi -socket /home/forum/php5/etc/php-fpm.sock  </span></li>
<li class="alt"><span> </span></li>
<li><span>    ScriptAlias /fcgi-bin/ "/home/forum/apache/apache_php/cgi-bin/"  </span></li>
<li class="alt"><span> </span></li>
<li><span>    AddHandler php-fastcgi .php  </span></li>
<li class="alt"><span> </span></li>
<li><span>    Action php-fastcgi /fcgi-bin/php-cgi  </span></li>
<li class="alt"><span> </span></li>
<li><span>    AddType application/x-httpd-php .php  </span></li>
<li class="alt"><span> </span></li>
<li>
<span class="tag"></span><span class="tag-name">IfModule</span><span class="tag">></span><span> </span>
</li>
</ol>

The default configuration is 30s. If you need to customize your own configuration, you need to modify the configuration, for example, change it to 100 seconds: (restart apache after modification):

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span class="tag-name">IfModule</span><span> mod_fastcgi.c</span><span class="tag">></span><span> </span></span></span></li>
<li><span> </span></li>
<li class="alt"><span>    FastCgiExternalServer /home/forum/apache/apache_php/cgi-bin/php-cgi -socket /home/forum/php5/etc/php-fpm.sock  -idle-timeout 100  </span></li>
<li><span> </span></li>
<li class="alt"><span>    ScriptAlias /fcgi-bin/ "/home/forum/apache/apache_php/cgi-bin/"  </span></li>
<li><span> </span></li>
<li class="alt"><span>    AddHandler php-fastcgi .php  </span></li>
<li><span> </span></li>
<li class="alt"><span>    Action php-fastcgi /fcgi-bin/php-cgi  </span></li>
<li><span> </span></li>
<li class="alt"><span>    AddType application/x-httpd-php .php  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="tag"></span><span class="tag-name">IfModule</span><span class="tag">></span><span> </span>
</li>
</ol>

If it times out, 500 will be returned Error, disconnect from the backend php service, and record an apache error log:

<ol class="dp-xml">
<li class="alt"><span><span>[Thu Jan 27 18:30:15 2011] [error] [client 10.81.41.110] FastCGI: comm with server "/home/forum/apache/apache_php/cgi-bin/php-cgi" aborted: idle timeout (30 sec)  </span></span></li>
<li><span> </span></li>
<li class="alt"><span>[Thu Jan 27 18:30:15 2011] [error] [client 10.81.41.110] FastCGI: incomplete headers (0 bytes) received from server "/home/forum/apache/apache_php/cgi-bin/php-cgi" </span></li>
</ol>

Other fastcgi configuration parameter description:

<ol class="dp-xml">
<li class="alt"><span><span>IdleTimeout 发呆时限   </span></span></li>
<li><span>ProcessLifeTime 一个进程的最长生命周期,过期之后无条件kill  </span></li>
<li class="alt"><span> </span></li>
<li><span>MaxProcessCount 最大进程个数  </span></li>
<li class="alt"><span> </span></li>
<li><span>DefaultMinClassProcessCount 每个程序启动的最小进程个数  </span></li>
<li class="alt"><span> </span></li>
<li><span>DefaultMaxClassProcessCount 每个程序启动的最大进程个数  </span></li>
<li class="alt"><span> </span></li>
<li><span>IPCConnectTimeout 程序响应超时时间  </span></li>
<li class="alt"><span> </span></li>
<li><span>IPCCommTimeout 与程序通讯的最长时间,上面的错误有可能就是这个值设置过小造成的  </span></li>
<li class="alt"><span> </span></li>
<li><span>MaxRequestsPerProcess 每个进程最多完成处理个数,达成后自杀 </span></li>
</ol>

[ Lighttpd ]

Configuration: lighttpd.conf

In the Lighttpd configuration, the parameters regarding timeout are as follows (for space consideration, only the read timeout is written, and the same is true for the write timeout parameter):

Mainly involves options:

<ol class="dp-xml">
<li class="alt"><span><span class="attribute">server.max-keep-alive-idle</span><span> = </span><span class="attribute-value">5</span><span> </span></span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-read-idle</span><span> = </span><span class="attribute-value">60</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.read-timeout</span><span> = </span><span class="attribute-value">0</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-connection-idle</span><span> = </span><span class="attribute-value">360</span><span> </span>
</li>
</ol>
<ol class="dp-xml">
<li class="alt"><span><span>--------------------------------------------------  </span></span></li>
<li><span> </span></li>
<li class="alt"><span># 每次keep-alive 的最大请求数, 默认值是16  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-keep-alive-requests</span><span> = </span><span class="attribute-value">100</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span># keep-alive的最长等待时间, 单位是秒,默认值是5  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-keep-alive-idle</span><span> = </span><span class="attribute-value">1200</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span># lighttpd的work子进程数,默认值是0,单进程运行  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-worker</span><span> = </span><span class="attribute-value">2</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span># 限制用户在发送请求的过程中,最大的中间停顿时间(单位是秒),  </span></li>
<li><span> </span></li>
<li class="alt"><span># 如果用户在发送请求的过程中(没发完请求),中间停顿的时间太长,lighttpd会主动断开连接  </span></li>
<li><span> </span></li>
<li class="alt"><span># 默认值是60(秒)  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-read-idle</span><span> = </span><span class="attribute-value">1200</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span># 限制用户在接收应答的过程中,最大的中间停顿时间(单位是秒),  </span></li>
<li><span> </span></li>
<li class="alt"><span># 如果用户在接收应答的过程中(没接完),中间停顿的时间太长,lighttpd会主动断开连接  </span></li>
<li><span> </span></li>
<li class="alt"><span># 默认值是360(秒)  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-write-idle</span><span> = </span><span class="attribute-value">12000</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span># 读客户端请求的超时限制,单位是秒, 配为0表示不作限制  </span></li>
<li><span> </span></li>
<li class="alt"><span># 设置小于max-read-idle时,read-timeout生效  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.read-timeout</span><span> = </span><span class="attribute-value">0</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span># 写应答页面给客户端的超时限制,单位是秒,配为0表示不作限制  </span></li>
<li><span> </span></li>
<li class="alt"><span># 设置小于max-write-idle时,write-timeout生效  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.write-timeout</span><span> = </span><span class="attribute-value">0</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span># 请求的处理时间上限,如果用了mod_proxy_core,那就是和后端的交互时间限制, 单位是秒  </span></li>
<li><span> </span></li>
<li class="alt">
<span class="attribute">server.max-connection-idle</span><span> = </span><span class="attribute-value">1200</span><span> </span>
</li>
<li><span> </span></li>
<li class="alt"><span>-------------------------------------------------- </span></li>
</ol>

Description:

For consecutive requests on a keep-alive connection, the maximum interval for sending the first request content is determined by the parameter max -read-idle determines, starting from the second request, the maximum interval for sending request content is determined by the parameter max-keep-alive-idle. The timeout between requests is also determined by max-keep-alive-idle. The total timeout for sending request content is determined by the parameter read-timeout. The timeout for Lighttpd to interact with the backend is determined by max-connection-idle.

Extended reading:

http://www.snooda.com/read/244

[ Nginx ]

Configuration :nginx.conf

<ol class="dp-xml">
<li class="alt"><span><span>http {   </span></span></li>
<li><span> </span></li>
<li class="alt"><span>    #Fastcgi: (针对后端的fastcgi 生效, fastcgi 不属于proxy模式)  </span></li>
<li><span> </span></li>
<li class="alt"><span>    fastcgi_connect_timeout 5;    #连接超时  </span></li>
<li><span> </span></li>
<li class="alt"><span>    fastcgi_send_timeout 10;       #写超时  </span></li>
<li><span> </span></li>
<li class="alt"><span>    fastcgi_read_timeout 10;        #读取超时  </span></li>
<li><span> </span></li>
<li class="alt"><span>   </span></li>
<li><span> </span></li>
<li class="alt"><span>    #Proxy: (针对proxy/upstreams的生效)  </span></li>
<li><span> </span></li>
<li class="alt"><span>    proxy_connect_timeout 15s;    #连接超时  </span></li>
<li><span> </span></li>
<li class="alt"><span>    proxy_read_timeout 24s;          #读超时  </span></li>
<li><span> </span></li>
<li class="alt"><span>    proxy_send_timeout 10s;         #写超时  </span></li>
<li><span> </span></li>
<li class="alt"><span>} </span></li>
</ol>

Explanation:

Nginx’s timeout settings are very clear and easy to understand. The above timeouts are for different working modes, but there are many problems caused by timeouts.

Extended reading:

http://hi.baidu.com/pibuchou/blog/item/a1e330dd71fb8a5995ee3753.html

http://hi.baidu.com/ pibuchou/blog/item/7cbccff0a3b77dc60b46e024.html

http://hi.baidu.com/pibuchou/blog/item/10a549818f7e4c9df703a626.html

http://www.apoyl.com/ ?p=466

1

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445662.htmlTechArticle[Overview] In PHP development, there are many situations where timeout processing and timeout are used. Let me talk about a few Scenario: 1. Asynchronously obtain data. If a certain back-end data source fails to be obtained, skip...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor