Artur Siekielski
Artur Siekielski
I noticed this was just implemented in the `podman` driver and it looks simple, so maybe it can be reused for `containerd`: https://github.com/hashicorp/nomad-driver-podman/commit/40db1ef0c5af9f2aff7829449af3d950b8ff59b9?diff=unified
I'm able to reproduce it by submitting 100 jobs with the following bash script: ```bash #!/bin/bash for i in $(seq 1 100); do cat job.nomad job "bash_loop_$i" { datacenters =...
@olljanat I checked your suggestion and it looks like it fixed the problems, thank you. I downgraded the instance from Ubuntu 22.04 to Ubuntu 20.04 to use an older kernel...
I was able to reproduce the problem (Docker daemon hanging) by just keeping a pool of 200 containers running `sleep`: ``` $ seq 100000000 | parallel -j 200 docker run...