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-template.yml 467 B

1234567891011121314151617181920212223
  1. nodes:
  2. - id: op_1
  3. operator:
  4. python: op_1/op_1.py
  5. inputs:
  6. tick: dora/timer/millis/100
  7. outputs:
  8. - some-output
  9. - id: op_2
  10. operator:
  11. python: op_2/op_2.py
  12. inputs:
  13. tick: dora/timer/secs/2
  14. outputs:
  15. - some-output
  16. - id: custom-node_1
  17. custom:
  18. source: ./node_1/node_1.py
  19. inputs:
  20. tick: dora/timer/secs/1
  21. input-1: op_1/some-output
  22. input-2: op_2/some-output