Skip to content

Stress testing

Aleksandr Sidoruk edited this page May 21, 2025 · 1 revision

Node unavailable emulation

sudo su
cd ~

cat>stress.sh<<'EOF'
for i in $(seq 1 50000); do
    nohup sleep 6000 &
done
EOF

for k in $(seq 1 5); do
    nohup bash stress.sh &
done

Clone this wiki locally