Jonny Mills
09/13/2022, 12:10 PMasset_job
such that “load_date” is can be accessed by all assets in asset_job. I can’t find documentation how to define config with assets without an error being raised of improper configuration.
This is non-working pseudocode that raises the improper configuration error.
asset_job = define_asset_job(
name="asset_job",
selection="asset1*",
partitions_def=daily_partition,
config={
"asset1": {
"config": {
"load_date": "foo",
}
},
},
)
Hoping for advice how to rework the config to have load_date be accessible for all assets in this asset_jobowen
09/13/2022, 4:50 PMcontext.partition_key
inside of the asset, no need for separate config