You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a very high load app, so time to time is necessary to reload app because of OOM. It's hard to detect a correct number of requests to reload (the max-requests option). We decided to add option http.pool.supervisor.ttl on our .rr.yaml to reload workers every N seconds. After that we've got an error message.
Fatal error: Uncaught Error: Call to a member function terminate() on null in /vendor/laravel/octane/bin/roadrunner-worker:61
Stack trace:
#0 {main}
thrown in /vendor/laravel/octane/bin/roadrunner-worker on line 61
Steps To Reproduce:
stop octane if it's started
add to .rr.yaml the following:
http:
pool:
supervisor:
ttl: 60s
start octane
wait 60s
The text was updated successfully, but these errors were encountered:
Description:
We have a very high load app, so time to time is necessary to reload app because of OOM. It's hard to detect a correct number of requests to reload (the
max-requests
option). We decided to add optionhttp.pool.supervisor.ttl
on our .rr.yaml to reload workers every N seconds. After that we've got an error message.Steps To Reproduce:
The text was updated successfully, but these errors were encountered: