Philipp
04/04/2023, 7:49 AMselection="*"
in define_asset_job
but wonder if I do this correctly, becasue by doing so, I would include assets as well that are not required, and by being more selective, I would resolve the DAG manually and therefore the job definition would be tightly coupled to the DAG, while by specifying a job I really only want to say "I want C, and I don't care what C depends on, do the needful".
Is my conclusion correct or am I using Dagster incorrectly?Vinnie
04/04/2023, 10:08 AMAssetSelection
syntax with define_asset_job
(https://docs.dagster.io/_apidocs/assets#dagster.AssetSelection). Something like the following should work:
define_asset_job(..., selection=AssetSelection.keys("C").upstream())
Philipp
04/05/2023, 1:39 PM