I'm attempting to use the new `load_asset_value` f...
# ask-community
s
I'm attempting to use the new
load_asset_value
functionality in a notebook as an aide for local development. I am able to import my repository successfully, and I confirm in the notebook that
DAGSTER_HOME
is set, but when I attempt to load the asset I get a file not found error because it is attempting to read from
/tmp
. Perhaps I am not understanding how assets are loaded outside of a running dagster context, but is there a way to specify the storage path that was used for materializations?
I was able to get this working by configuring the fs_io_manager base_dir I'm still not 100% sure why this configuration was necessary when dagit / dagster runs default to the correct dagster home location but load_asset_value does not Also be wary of some cache busting that is necessary when iterating on this function call 😕
s
Thanks for catching this - this should fix it: https://github.com/dagster-io/dagster/pull/9922
🙌 1