Mykola Palamarchuk
01/10/2023, 3:18 PMrun_config
for build_asset_reconciliation_sensor()
somehow?sandy
01/10/2023, 5:30 PMMykola Palamarchuk
01/11/2023, 12:18 PMjob
but there is no place to configure them in case of reconciliation sensor. Or did I miss something?sandy
01/11/2023, 4:05 PMconfigured
. For example:
defs = Definitions(assets=..., resources={"my_resource_key": my_resource.configured(...)})
More detail here: https://docs.dagster.io/concepts/configuration/configured#using-configured(some assets use their own config definition as well)We've had some recent discussion about how to handle this situation. Why use config for these assets vs. just hardcode the behavior inside the function body? Do you sometimes kick off ad-hoc runs with different config? Do you store your config in YAML?
Mykola Palamarchuk
01/12/2023, 8:28 AMconfigured
is an option here. Will it work for assets as well?sandy
01/12/2023, 9:31 PMconfigured
works for resources, but not for assets.
when I asked if you could just hardcode the behavior inside the function body, I only meant to suggest that for assets, not for resources