Is it best practice, or even possible, to invoke I/O Manager obtained via "required_resource_keys" inside an OP body? My use case is to load all sheets from an Excel file to individual data warehouse tables where the Excel file will be specified via config params.
I have obtain the DbIOManager resource inside the OP body. I can call "handle_output" method of the manager after constructing the necessary config params with "build_output_context" i.e. passing host/user/database etc. My goal is to re-use the resource as they are provided to the OP w/o having to know the specific config params required to instantiate the resource, since the whole idea of resource is to be able to re-use them.