https://dagster.io/ logo
Title
s

sk4la

05/09/2021, 9:12 AM
Hi all! Just came across this statement from the latest changelog: “An issue that would cause map and collect steps downstream of other map and collect steps to mysteriously not execute when using multiprocess executors has been resolved.“. Apart from the issue-solving part, does that mean we can actually “chain” map/collect steps without nesting them ? If that’s the case, could someone give a quick example of how we can get around the infamous “Solid cannot be downstream of more than one dynamic output.” ?
a

alex

05/10/2021, 3:06 PM
the issue was from a sequence like
map
->
collect
->
map
->
collect
where each dynamic fan out was closed by a collect step before the next was opened unfortunately still no
map
->
map
😕
s

sk4la

05/10/2021, 3:14 PM
Makes sense, thanks 🙂