Hello all, I am affected by this bug https://github.com/dagster-io/dagster/issues/7060 are there any workarounds for this? I have expensive ops (in a dynamic graph) that I would really prefer to run in parallel.
c
chris
12/01/2022, 2:50 PM
what's your graph's structure looking like? Wondering if things can be restructured in a way that avoids the error
a
Archie Kennedy
12/02/2022, 12:18 PM
I worked around this by refactoring to use an op that depends on 2 previous ops.. This works for my use case as I have a known set of ops, but I am disappointed I cannot use fixed fan-in in a dynamic graph.