is there a way to add an io manager to a configura...
# ask-community
j
is there a way to add an io manager to a configuration:
Copy code
@configured(op_polars_df_to_s3) <--- io manager into here like ins=In(io_manager_key="io_bigq_to_df")
def configged_op(config):
   return {
      "file_path": FILE_PATH,
      "file_name": FILE_NAME
   }
j
hey so it seems like if i want to use an io manager i need to define that on the underlying op not on the @configured op is this right?
y
right, the io manager key is defined on the underlaying op. and then you supply and differ the io manager object through job definition’s
resource_defs
110 Views