Mykola Palamarchuk
04/01/2022, 7:57 AMSamuel Stütz
04/01/2022, 8:33 AMresource_defs={
"bq_proj1": bigquery_resource,
"bq_proj2": bigquery_resource,
"gcs_me": gcs_resource,
"gcs_other": gcs_resource,
}
then in the op
@op(required_resource_keys={'gcs_other'})
Mykola Palamarchuk
04/01/2022, 9:31 AMSamuel Stütz
04/01/2022, 10:17 AM@resource
the required resource keys to not gcs but gcs_otherMykola Palamarchuk
04/01/2022, 11:16 AMresource_defs={
"s3": s3_resource,
"s3_next": s3_resource,
"io_manager": s3_pickle_io_manager, # will depend on "s3" by default
"io_manager_next": s3_pickle_io_manager.rename_requirements({"s3": "s3_next"})
}
owen
04/01/2022, 4:24 PM