Hello Dagster people, Can we use multiple io_mana...
# ask-community
w
Hello Dagster people, Can we use multiple io_managers to upload output within single asset? (e.g upload asset to both BQ / Azure) • Does @multi_asset supports to achieve this purpose by return same asset twice? ◦ ex: @multi_asset(outs={“1st_io”: abc, “2nd_id”: def}, non_deps_arg=[“”], etc) ◦ def asset(context): ▪︎ return test, test
c
Yea would suggest using a multi asset here with each asset describing the storage location, then on each AssetOut specify the io_manager_key
❤️ 1