Laravel 5.4 beanstalkd 多个工人
Laravel 5.4 beanstalkd multiple workers
我在发送群发短信的队列中有一百万个任务。我正在使用 beanstalkd 驱动程序作为我的队列驱动程序。我已经在我的 ubuntu 机器上安装了 beantalk 和 supervisord。
在文档中 - http://supervisord.org/configuration.html 我发现 numprocs=5
例如。这会创建五个工人吗?
如果我有两个不同的工人,我会为每个工人分配 5 个进程吗?
请参阅此处 link 到 Laravel 'config' 关于 supervisord。
In this example, the numprocs directive will instruct Supervisor to run 8 queue:work processes and monitor all of them, automatically restarting them if they fail.
我在发送群发短信的队列中有一百万个任务。我正在使用 beanstalkd 驱动程序作为我的队列驱动程序。我已经在我的 ubuntu 机器上安装了 beantalk 和 supervisord。
在文档中 - http://supervisord.org/configuration.html 我发现 numprocs=5
例如。这会创建五个工人吗?
如果我有两个不同的工人,我会为每个工人分配 5 个进程吗?
请参阅此处 link 到 Laravel 'config' 关于 supervisord。
In this example, the numprocs directive will instruct Supervisor to run 8 queue:work processes and monitor all of them, automatically restarting them if they fail.