You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

dataflow.yml 519 B

123456789101112131415161718192021222324
  1. nodes:
  2. - id: pyarrow-sender
  3. build: pip install -e ../../node-hub/pyarrow-sender
  4. path: pyarrow-sender
  5. outputs:
  6. - data
  7. env:
  8. DATA: "[1, 2, 3, 4, 5]"
  9. - id: dora-echo
  10. build: pip install -e ../../node-hub/dora-echo
  11. path: dora-echo
  12. inputs:
  13. data: pyarrow-sender/data
  14. outputs:
  15. - data
  16. - id: pyarrow-assert
  17. build: pip install -e ../../node-hub/pyarrow-assert
  18. path: pyarrow-assert
  19. inputs:
  20. data: dora-echo/data
  21. env:
  22. DATA: "[1, 2, 3, 4, 5]"