I am learning dagster and devloping locally. Every...
# ask-community
r
I am learning dagster and devloping locally. Everytime i start either
dagit
or
dagster dev
my assets say they have never been materialized. I wonder if this log is not saved? Maybe it has something to do, that my assets does not return anything. No dataframe no nothing. (I choose assets because they allow me to chain together a nice visual DAG flow)
b
Have you set the
DAGSTER_HOME
env var to point at a directory?
otherwise it won't know where to persist such information, and will dump it in a temp folder that will be different each restart
r
Thanks Brendan still new to Dagster so I havenøt touched that. I'll take a look today. Appreciate you taking the time to help out. Thanks.