https://dagster.io/ logo
Title
k

Kirk Stennett

05/18/2021, 7:17 PM
Hey, if I wanted to map multiple solids to a DynamicOutput can I just chain the map statements? In the example from https://docs.dagster.io/0.11.3/concepts/solids-pipelines/pipelines#dynamic-mapping--collect Or would I just have each mapped solid return a Dynamic output and map to that?
c

Cameron Gallivan

05/18/2021, 7:20 PM
Only the first fan out needs the DynamicOutput/DynamicOutputDefinition
After that you can just chain the .map
k

Kirk Stennett

05/18/2021, 7:21 PM
Excellent, thanks!