Arsenii Poriadin
05/02/2023, 2:40 PM180
for start_timeout_seconds
is the default and doesn't "need to be specified execpt to override" it
but can I actually have no timeout for the run to start while still leaving run_monitoring
itself enabled
? (I need it to have general run timeouts)0
or -1
and test, maybe this is how I disable this timeoutdaniel
05/03/2023, 4:29 PMArsenii Poriadin
05/03/2023, 5:09 PMstarting
state but none actually start because the k8s pods which daemon created for it do not exist anymore (2nd screenshot)
I guess these jobs were somehow requested during the helm upgrade
of the whole setup and all these jobs became orphans with no actual pod for themdaniel
05/03/2023, 5:57 PMArsenii Poriadin
05/03/2023, 5:58 PM1000
of them hehedaniel
05/03/2023, 8:17 PMfrom dagster import DagsterInstance, RunsFilter, DagsterRunStatus
instance = DagsterInstance.get() # needs your DAGSTER_HOME to be set
queued_runs = instance.get_runs(filters=RunsFilter(statuses=[DagsterRunStatus.STARTING]))
for run in queued_runs:
instance.report_run_canceled(run)
Arsenii Poriadin
05/04/2023, 7:56 AMdaniel
05/04/2023, 3:19 PMArsenii Poriadin
05/04/2023, 5:43 PMSTARTING
state for indefinitely long time?daniel
05/04/2023, 5:45 PMArsenii Poriadin
05/04/2023, 5:45 PM