What to do about DagsterUserCodeUnreachableError? #17717
-
These errors can arise while launching a job:
or while evaluating sensors:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Setting these timeout values is deployment-specific. If using a Kubernetes agent configured with Helm chart, in the chart template there is: This is the time required for the code location container to start and the grpc server being ready and serving requests. If you are using many libraries, or are creating a dbt manifest dynamically, you may need to increase this.
This is the time the agent will wait from the deployment initialization to the pod being running. If your cluster depends on slow node provisioning when starting new pods, you might need to increase that. There is an extensive guide for debugging and managing sensor timeouts specifically in #20021 |
Beta Was this translation helpful? Give feedback.
Setting these timeout values is deployment-specific. If using a Kubernetes agent configured with Helm chart, in the chart template there is:
serverProcessStartupTimeout
- Specifies the timeout in seconds the agent should use when waiting for a code server to be ready after the Kubernetes deployment is created. This timeout should be increased if your code locations can take more than 3 minutes to load your Dagster definitions.This is the time required for the code location container to start and the grpc server being ready and serving requests. If you are using many libraries, or are creating a dbt manifest dynamically, you may need to increase this.
deploymentStartupTimeout
- Spe…