https://dagster.io/ logo
Title
w

Wonjae Lee

04/24/2023, 11:10 PM
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

chris

04/24/2023, 11:40 PM
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