Hey everyone, I’m wondering, would it possible to ...
# ask-community
j
Hey everyone, I’m wondering, would it possible to add a configuration or wrap an my warehouse IO Manager in another one so I would be able to save each assets in S3 as well as where the file should be stored define in the IO Manager? So instead of creating 2 assets (One with IO Manager linked to S3) and one with the IO Manager link to Snowflake), only create 1 assets for Snowflake, but save it to S3 too at the same time, for backup purpose?
🤖 1
s
Hi Jacob, to implement this, you would need to write an IO manager that stores the data in both places This might be a useful example of how to write an IO manager that delegates to another IO manager: https://github.com/dagster-io/dagster/blob/master/python_modules/dagster/dagster/_core/storage/branching/branching_io_manager.py
j
Thank you very much 🙂