https://dagster.io/ logo
Title
d

Devaraj Nadiger

08/23/2021, 5:01 PM
Hi Everyone, Can we return multiple values in solid and pass it to next solids in pipeline, eg : ----------------------------------- @pipeline A,B=temp_solid() temp2_solid(A) temp3_solid(B) --------------------------------- or how can we achieve this ? Note:A and B are two different pandas dataframe.
d

Daniel Kim

08/23/2021, 9:26 PM
There is this example: https://docs.dagster.io/concepts/solids-pipelines/pipelines#multiple-inputs You can have the output providing solid yield multiple Ouput()s to be used as inputs to other solids.
Oops sorry didnt realize Vlad answered in a separate thread.
d

Devaraj Nadiger

08/24/2021, 4:55 AM
thanks @Daniel Kim .