Hi team, A user is getting the following error in...
# ask-metaflow
a
Hi team, A user is getting the following error in their production Metaflow flow on Step Functions:
Copy code
"Reason": "DockerTimeoutError: Could not transition to created; timed out after waiting 4m0s"
I've checked some threads and applied some recommendations, but they didn't seem to resolve the issue. Here are my ebs settings:
Copy code
ebs {
      volume_size           = 200
      volume_type           = "gp3"
      iops                  = 6000
      throughput            = 500
      delete_on_termination = true
    }
And I tried to enable image caching in ECS as well:
Copy code
echo ECS_ENGINE_TASK_CLEANUP_WAIT_DURATION=2m>>/etc/ecs/ecs.config
echo ECS_IMAGE_CLEANUP_INTERVAL=10m>>/etc/ecs/ecs.config
echo ECS_IMAGE_MINIMUM_CLEANUP_AGE=10m>>/etc/ecs/ecs.config
echo ECS_NUM_IMAGES_DELETE_PER_CYCLE=0>>/etc/ecs/ecs.config
echo ECS_IMAGE_PULL_BEHAVIOR=once>>/etc/ecs/ecs.config
Any help/guidance would be greatly appreciated!
1