2

Modifiying PHP FPM max children

 1 year ago
source link: https://azureossd.github.io/2023/01/06/Modifiying-PHP-FPM-max-children/index.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

This post will cover how to modify the value of pm.max_children for Linux PHP 8 app services.

Overview

If you notice slow performance on your PHP app service and the below warning message in your log files you might want to consider increase this setting.

2023-01-06T16:41:41.955903016Z [06-Jan-2023 16:41:41] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
Documentation

PHP: Configuration - Manual

How To

  1. Go to the Kudu (Advanced Tools) site for the App Service and select WebSSH from the menu.

    https://<your-app-service-name>.azurewebsites.net/newui

  2. Copy the default www.conf file under the /home folder so it can be persisted after a container restart.
     root@806c3760a0b9:/home# cp /usr/local/etc/php-fpm.d/www.conf /home
    
  3. Modify the www.conf file you copied under /home and using a text editor of your choice. Change the value of pm.max_children to the desired value and save your changes.

    pm.max_children = 50
    
  4. Create a startup script under the /home directory and add the below content. In this example the script filename is called startup.sh .
     root@806c3760a0b9:/home# vi startup.sh
    
     #!/bin/bash
    
     # Copies our modified www.conf file to the correct location.
     cp /home/www.conf /usr/local/etc/php-fpm.d
    
     # Kills the php-fpm process so it can be restarted.
     pkill -o -USR2 php-fpm
    
  5. Reference your script on container startup by naviagating to the App Service Azure Portal -> Settings -> Configuration -> Startup Command section. Then enter the full path of the script you created and save the changes.

    Settings

What should the value of this pm.max_children be?

This is dependant on the application and the amount of memory allocated to the app service plan. Below are a few open source articles that can help your team make an informed decision.

The only thing to be aware of is that increasing this setting might raise the memory usage on the app service plan.

We recommend your team monitor the app service plan memory usage when expirementing with this value. Monitor apps - Azure App Service | Microsoft Learn


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK