I am creating an asset job from a set of assets. H...
# ask-community
p
I am creating an asset job from a set of assets. However when I run it it seems to run as a single step and a failure in one of the assets causes the whole job to fail. Is there a way to have them launch as one step per asset and have it not fully fail if a single asset fails?
I am using define_asset_job for context
Hmm since these models are defined in dbt I think the solution may be to use the dbt option fail-fast = false
c
Hi Pablo. Not an expert here, but from the dagster end, I believe dbt assets currently can only execute in one step together. If configuring
fail-fast=False
works, I'd recommend doing that as I don't believe we have native support for launching a step per asset.