Where does dagster persist run history by default?...
# announcements
b
Where does dagster persist run history by default? Looks like maybe sqlite db, but not sure where in the filesystem
a
in
$DAGSTER_HOME
$DAGSTER_HOME/history/runs.db
in a sqlite db ya
b
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
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
ah nvm, I see it now in
/tmp/history/runs.db
thanks
a
ah we must have some airflow specific stuff that sets it to system
/tmp/