Fazil B. Topal
08/07/2023, 9:45 AMload
method, i define outputs as None
in the node. Question is how can I create a Ordered Pipeline in kedro? Im willing to hack the Pipeline class a bit but too many stuff going on there so seeking some help here.
thanks in advance! 🙂marrrcin
08/07/2023, 9:53 AMFazil B. Topal
08/07/2023, 10:02 AMload
method (I thought it's suited for that one) and if i take a dummy input that means i have to implement save
operation to create data dependency here, no?
For instance:
node1(lambda x: x, inputs="create-table-1", outputs=None)
node2(lambda x: x, inputs="create-table-2", outputs=None)
How would that work? Sorry if I am missing something obvious heremarrrcin
08/07/2023, 10:03 AMsave
, just pass some dummy datanode1(lambda x: "not important", inputs="create-table-1", outputs="dummy")
node2(lambda x, *args: "dummy2", inputs=["create-table-2", "dummy"], outputs=None)
outputs
can be skipped from the catalog if you’re using MemoryDataSet (which is default)Fazil B. Topal
08/07/2023, 10:08 AM