Description
Pulse Version
1.0.0-beta15
Laravel Version
11.0.7
PHP Version
8.3.3
Livewire Version
3.4.9
Database Driver & Version
mysql:8.0 Docker Image
Description
When conducting benchmarks with Laravel Octane I noticed that Pulse significantly reduces the number of requests Laravel can handle. This interestingly only occurs when Laravel Octane is running on multiple CPU cores. When running on a single core, the slowdown is negligible.
This could also be an issue with Octane. I opened it here instead since Pulse seems do something that makes workers block each other. It would be beneficial to find out what exactly leads to the blocking. In the worst case Pulse just isn't compatible with Octane.
The raw benchmarks using wrk (fetching a User from mysql and returning it as a JSON, Alpine Docker inside WSL2, Laravel Octane with Swoole, 13th Gen Intel(R) Core(TM) i9-13900H 2.60 GHz):
Benchmarking without Pulse with 1 Worker (1 CPU Core)
Benchmarking with Pulse with 1 Worker (1 CPU Core)
Benchmarking without Pulse with 20 Workers (20 CPU Cores)
Benchmarking with Pulse with 20 Workers (20 CPU Cores)
Basically without Pulse the number of requests increases as the number of CPU increases (as expected)
With Pulse the number of handled requests actually decreases as the number of CPU cores increases
Steps To Reproduce
- Create a fresh Laravel installation
- Install Laravel Octane (+ runtime environment swoole/roadrunner/frankenphp)
- Create a Controller endpoint that does something (like fetching a User from mysql)
- Use a benchmarking tool (like wrk) to analyze the endpoint
- Install Pulse, with mysql migrations and config file
- Benchmark the endpoint again and see significant decrease in handled requests with multiple CPU cores