https://dagster.io/ logo
m

Muthu

03/20/2020, 11:52 AM
hi when i trigger the pipeline from python, its not showing up on dagit (i’ve set the DAGSTER_HOME)
s

sashank

03/20/2020, 2:43 PM
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

Muthu

03/20/2020, 4:28 PM
thanks… let me try
9 Views