dagster-io/dagster

Daniel's Tracking Mega Issue

Aperta

#30.986 aperta il 30 giu 2025

 (5 commenti) (11 reazioni) (0 assegnatari)Python (1174 fork)batch import
hacktoberfesttype: bug

Metriche repository

Star
 (9441 stelle)
Metriche merge PR
 (Metriche PR in attesa)

Descrizione

What's the issue?

This is a collection of issues with Dagster that I personally find important. cc @cmpadden

Blocking development

Really annoying, causing sub-optimal patterns

flowchart LR
up1("A") --> down("[A, B]")
up2("B") --> down("[A, B]")

Currently each of the downstream partitions would depend on every upstream asset. This means that if one of them changes, all the downstream partitions will be recomputed (by automation conditions).

Partitions union:

flowchart LR
up1("[A, B]") --> down("[A, B, C]")
up2("[C]") --> down("[A, B, C]")

This is currently not possible at all.

Would kill for this

What did you expect to happen?

No response

How to reproduce?

No response

Dagster version

1.10.19

Deployment type

Dagster Cloud

Deployment details

No response

Additional information

No response

Message from the maintainers

Impacted by this issue? Give it a 👍! We factor engagement into prioritization.

Guida contributor