https://dagster.io/ logo
#ask-community
Title
# ask-community
j

Jake Kagan

01/26/2023, 6:24 PM
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

Jake Kagan

01/26/2023, 7:14 PM
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

yuhan

01/27/2023, 5:36 PM
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
67 Views