Replies: 1 comment
-
Here is example code to accomplish this -- note the
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I made a graph asset that has a downstream dependency, and according to the graph, the downstream dependency also got chunked.
The
@graph_asset
isgenerate_flowcharts
. It has threeins
and it has twoops
: one that yields manyDynamicOutput
and one that is themap
Callable
. All in all, the@graph_asset
does a chunk->map->collect operation andreturn result
.The downstream dependency as you can see in the image is generate_single_csv. It is a single
@asset
withdeps=[AssetKey("generate_flowcharts")]
. This should not be chunked, but it looks like it is.From community Slack member: https://dagster.slack.com/archives/C01U954MEER/p1719926132336219
Beta Was this translation helpful? Give feedback.
All reactions