🐛 Bug Report
4.0.0-beta-1-prerelease-20210114
I have a grid4 with 20 chrome nodes (SE_NODE_MAX_CONCURRENT_SESSIONS=5), when running 50 (max) headless tests in parallel I can see hub dying with the error above. When I stopped execution I could see that the hub recovered after some time.

selenium_hub_logs.txt.zip
version: '3.7'
services:
hub:
image: selenium/hub:4.0.0-beta-1-prerelease-20210114
ports:
- "4442:4442"
- "4443:4443"
- "4444:4444"
deploy:
placement:
constraints:
- node.role == manager
restart_policy:
condition: on-failure
chrome:
image: selenium/node-chrome:4.0.0-beta-1-prerelease-20210114
volumes:
- /dev/shm:/dev/shm
depends_on:
- hub
environment:
- SE_EVENT_BUS_HOST=hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
- LANG=en_GB.UTF-8
- SE_NODE_MAX_CONCURRENT_SESSIONS=5
- START_XVFB=false
- SCREEN_WIDTH=1920
- SCREEN_HEIGHT=1080
- SCREEN_DEPTH=24
entrypoint: bash -c 'SE_OPTS="--host $$HOSTNAME" /opt/bin/entry_point.sh'
deploy:
replicas: 20
placement:
constraints:
- node.role == worker
restart_policy:
condition: on-failure