Hello, From <1.4.0 release>, how do enable concur...
# ask-community
r
Hello, From 1.4.0 release, how do enable concurrent load for UPathIOManager ? All of our IO Managers inherit this class and some of our use-cases involves loading hourly assets to generate daily ones
o
hi @R Lucas! all you need to do is make your
load_from_path
method on your UPathIOManager
async
: https://github.com/dagster-io/dagster/pull/15017
r
Thank you !