hi when i trigger the pipeline from python, its no...
# announcements
m
hi when i trigger the pipeline from python, its not showing up on dagit (i’ve set the DAGSTER_HOME)
s
By default,
execute_pipeline
uses an ephemeral
DagsterInstance
and doesn’t save anything to the run storage or event logs. To get the default local instance, where all data is stored on the filesystem in
$DAGSTER_HOME
, you can call
DagsterInstance.get()
. We can pass this instance as an argument to
execute_pipeline
.
Copy code
execute_pipeline(hello_ceral_pipeline, instance=DagsterInstance.get())
Then if you have
$DAGSTER_HOME
set, you’ll see the runs in dagit
m
thanks… let me try