Reputation: 1775
I've multiple PHP-FPM UNIX socket pools for the same host to have logical separation of codebase / functionality & to address future scaling of the same. Nginx manages the routing to the right socket based on URI patterns. Deployment is working fine.
Whenever I change pool configuration for any one, I am reloading / restarting the FPM process (by USR2 signal).
I don't have any idea about how the internals of FPM work but I assume that as I restart the main process, all pools get restarted / reloaded. Please correct me if I'm wrong.
I want to know if I could reload / restart only one pool when others work as they were (no issues in the undergoing transactions on those pools).
I would also appreciate any other configuration suggestions which could allow me to have desired pool management
Upvotes: 48
Views: 53389
Reputation: 373
Although there is already a best answer, I'm writing to provide more information missed from the best one.
which leads to some facts and issues:
Upvotes: 11
Reputation: 30526
php-fpm
allows for a graceful restart of childs, usually with the reload
keyword instead of restart
on the init script, sending USR2 signal.
So by doing a graceful restart you should not loose any running transaction. The children are killed after the end of the current request management for each of them. This should be enough if you do not need a real restart. I made some tests and for example a reload is enough to :
So I did not find a case where a need a real restart yet. Except that a reload cannot start a stopped service.
If you want to ensure other pools will never be reloaded when you want to reload one of them you will have to manage several php-fpm daemons and one pool per daemon. This implies writing several init scripts and master configuration files.
Using the restart keyword is more dangerous, especially because the init script is maybe killing long running children in the stop step. And with several daemons managed with several PID and configuration files you could even get a start-stop-daemon
command with --exec
option (that's the case in debian) and this would kill all the daemons running the same php-fpm executable (effectively sending a kill -9 to all the other parallel php-fpm daemons after stopping the right one with the right PID if you run several php-fpm processes, which is very bad).
So using the reload keyword (USR2 signal) is a must.
Upvotes: 61