Hey I'm running a few subflows that call several t...
# ask-community
c
Hey I'm running a few subflows that call several tasks with azure work pool in prefect v3. My yaml deployment file defines the image platform as
linux/amd64
. For the most part, each of my subflows are working with 10-30 subtasks. When the subtasks increase to ~500, my container crashes with the error message
Failed due to a(n) Container exited with non-zero code (Error Code: 137) likely caused by misspecified platform or architecture
I've tried to increase my workpool resources but it still seems to fail:
Copy code
work_pool:
    name: endex-aci-pool
    job_variables:
      image: '{{ build_image.image }}'
      container:
        resources:
          requests:
            memory: "12Gi" 
            cpu: "4"
1
d
Hi Charles, I don’t see the platform defined in your yaml here ?
c
Hey Watts! DM'ing you my prefect yaml file
j
137 code is for out of memory
🙌 1