Hi team, I have setup 3 jobs using the same set of...
# ask-community
j
Hi team, I have setup 3 jobs using the same set of assets, hoping that on the web UI there will be 3 graphs (DAGs) with separate status. But what I get is 3 DAGS that share the same state and materialization status. Is it possible to separate the state of DAG as well? Thank you.
dagster bot responded by community 1
z
If you want the assets in each of your three graphs to have fully separate state then you have to declare the underlying assets as new asset instances. Asset factories are one way to do this. Asset jobs seem to be mostly just a way to materialize one or many assets and don't maintain their own state for each asset they materialize. Partitioned assets can also be a way to model this.
❤️ 2