超过 1k 个并发 tcp 请求的 amphp 问题
Problems with amphp with more than 1k concurrent tcp requests
我使用 https://amphp.org 框架创建了一个应用程序。 运行 借助 cronjob(每 5 分钟一次)向某些传感器(温度)发送并发请求并保存所有响应。
多达 ~1K 个传感器一切正常。
当大约 30% 的请求增加到 1.5k 时,我收到以下消息:
Connecting to tcp://...:502 failed: timeout exceeded (10000 ms)
如有任何建议,我们将不胜感激!
stream_select
通常有最多 1024 个文件描述符的限制,因此您需要其中一个扩展名,请参阅 https://github.com/amphp/amp#requirements。
我使用 https://amphp.org 框架创建了一个应用程序。 运行 借助 cronjob(每 5 分钟一次)向某些传感器(温度)发送并发请求并保存所有响应。
多达 ~1K 个传感器一切正常。
当大约 30% 的请求增加到 1.5k 时,我收到以下消息:
Connecting to tcp://...:502 failed: timeout exceeded (10000 ms)
如有任何建议,我们将不胜感激!
stream_select
通常有最多 1024 个文件描述符的限制,因此您需要其中一个扩展名,请参阅 https://github.com/amphp/amp#requirements。