Denis Samuylov
11/30/2022, 9:19 PMSourceAsset
values outside of Dagster runs? I have a source asset with a custom IOManager and I would like to load data in a Jupyter notebook for an explorative analysis. I try to use an approach as discussed here: https://docs.dagster.io/concepts/assets/software-defined-assets#loading-asset-values-outside-of-dagster-runs, but it fails because the source asset is not registered in loader._assets_defs_by_key
as I can see with:
with repository.get_asset_value_loader() as loader:
print(loader._assets_defs_by_key)
chris
12/01/2022, 12:51 AMDenis Samuylov
12/01/2022, 1:01 AM