https://dagster.io/ logo
b

benyuel

07/15/2020, 7:03 PM
Where does dagster persist run history by default? Looks like maybe sqlite db, but not sure where in the filesystem
a

alex

07/15/2020, 7:06 PM
in
$DAGSTER_HOME
$DAGSTER_HOME/history/runs.db
in a sqlite db ya
b

benyuel

07/15/2020, 7:11 PM
What about with the context that I am using dagster
make_airflow_dag
and using airflow to execute my dagster dag? I’m not seeing a DAGSTER_HOME
a

alex

07/15/2020, 7:12 PM
if you don’t set than env var then nothing should get persisted to disk, we’ll use a temp dir that gets removed on process exit
b

benyuel

07/15/2020, 7:12 PM
ah nvm, I see it now in
/tmp/history/runs.db
thanks
a

alex

07/15/2020, 7:13 PM
ah we must have some airflow specific stuff that sets it to system
/tmp/
5 Views