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

William

12/16/2022, 2:06 AM
For an asset with a large amount of depdendencies, .e.g.
Copy code
D depends on C, C on A + B
When I want to convert the asset to a job in order to define a schedule for it, shall I put all A+B+C+D to
define_asset_job
?
j

jamie

12/16/2022, 3:49 PM
If you want to ensure that A, B, C, and D are all materialized when the schedule ticks, then yes you should put all of them in the asset job. If you just want to materialize D with whatever the most recent values of A, B and C are, then you would just put D in the job