-
I have noticed some issues with some runs getting stalled in a STARTING (I think it is a k8s issue). Naturally I will want to fix/address that but in the meantime, is there a way to use graphql to stop a run that is stuck in STARTING? It seems that it is not supported via TerminatePipeline (Run xxxxx could not be terminated due to having status STARTING.) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, there's an optional argument to terminatePipelineExecution that can be used to 'force terminate' the run, moving it into a FAILURE state without necessarily cleaning up all the underlying resources that it spun up (for example, the k8s pod). This can be used to terminate runs that are stuck in STARTING. sample mutation:
Just filed an issue to include that in the documentation for the GraphQL API. |
Beta Was this translation helpful? Give feedback.
Hi, there's an optional argument to terminatePipelineExecution that can be used to 'force terminate' the run, moving it into a FAILURE state without necessarily cleaning up all the underlying resources that it spun up (for example, the k8s pod). This can be used to terminate runs that are stuck in STARTING.
sample mutation:
Just filed an issue to include that in the documentation for the GraphQL API.