dagster-io/dagster

Daniel's Tracking Mega Issue

Open

#30,986 opened on Jun 30, 2025

 (5 comments) (11 reactions) (0 assignees)Python (1,174 forks)batch import
hacktoberfesttype: bug

Repository metrics

Stars
 (9,441 stars)
PR merge metrics
 (Avg merge 51d 21h) (8 merged PRs in 30d)

Description

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.

Contributor guide