Thanks for posting your question in the Microsoft Q&A forum.
This error indicates that your PHP-FPM configuration is limiting the number of concurrent PHP processes to 5, which is insufficient for your website's traffic. To resolve this issue:
Edit the PHP-FPM configuration file (/usr/local/etc/php-fpm.d/www.conf) and set a higher value for pm.max_children
pm.max_children = 32
After modifying the configuration, restart PHP-FPM to apply the changes
sudo service php-fpm restart
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful