It took a while to get a video from customer:
https://nxt.md-nord.de/s/FWg4S6tGWZFw73X
I meanwhile modified Apache mpm prefork settings again. I think last update to v31 changed them back:
<IfModule mpm_prefork_module>
# On startup, start these many servers
StartServers 50
# At any given time, keep atleast these many servers
MinSpareServers 20
# At any given time, keep atmost these many idle servers (this is always >= MinSpareServers+1)
MaxSpareServers 20
# Maximum number of servers at any given instant. Requests will be queued after this
MaxRequestWorkers 200
# Recycle process after handling these many requests. This protected against accidental memory leaks
MaxConnectionsPerChild 1000
</IfModule>
Server has a 16 Core AMD Ryzen 9 5950 CPU, 128 GB RAM and 4 TB NVMe (RAID1). Load is about 2,5-3,0 and I see CPU at a lot of Apache processes.
Thank you!
Bye,
Ingo