Home Arrow Icon Knowledge base Arrow Icon Global Arrow Icon how do I determine the optimal number of worker processes for my Laravel application
    Laravel worker processes Supervisor job complexity queueing server workload performance optimization


how do I determine the optimal number of worker processes for my Laravel application


To determine the optimal number of worker processes for your Laravel application, consider the following steps:

1. Monitor Resource Usage:
- Monitor the resource usage of your worker processes, including CPU and memory usage, to ensure that they are not overwhelming the server.
- Adjust the number of worker processes as needed to maintain optimal performance.

2. Supervisor Configuration:
- Use Supervisor to manage your worker processes, ensuring they are running reliably and restarting if they fail.
- Configure Supervisor to scale up the number of worker processes as needed.

3. Job Complexity and Timeout:
- Consider the complexity and duration of your jobs. If jobs are taking a long time to process, you may need to adjust the number of worker processes accordingly.
- Use the `--max-time` option to specify the maximum time a worker should process jobs before shutting down.

4. Job Priorities and Queueing:
- Prioritize your jobs based on their urgency and importance. This can help ensure that critical jobs are processed quickly.
- Use queueing strategies like Horizon to manage your queues and optimize job processing.

5. Server Workload and Resource Allocation:
- Consider the overall server workload and resource allocation. Ensure that your worker processes are not competing with other critical processes for resources.

6. Testing and Monitoring:
- Test your worker processes with different numbers of jobs and monitor their performance to determine the optimal configuration.
- Continuously monitor your application's performance and adjust the number of worker processes as needed.

By following these steps, you can determine the optimal number of worker processes for your Laravel application, ensuring efficient and reliable job processing.

Citations:
[1] https://martinjoo.dev/laravel-queues-and-workers-in-production
[2] https://laravel.com/docs/11.x/queues
[3] https://laracasts.com/discuss/channels/laravel/queue-worker-with-supervisor-multiple-processes
[4] https://stackoverflow.com/questions/52765944/what-is-the-number-of-processes-in-laravel-horizon-i-should-use
[5] https://www.twilio.com/en-us/blog/queueing-in-laravel