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 900 B

12345678910111213141516171819202122232425262728293031
  1. nodes:
  2. - id: rust-node
  3. _unstable_deploy:
  4. machine: A
  5. custom:
  6. build: cargo build -p multiple-daemons-example-node
  7. source: ../../target/debug/multiple-daemons-example-node
  8. inputs:
  9. tick: dora/timer/millis/10
  10. outputs:
  11. - random
  12. - id: runtime-node
  13. _unstable_deploy:
  14. machine: A
  15. operators:
  16. - id: rust-operator
  17. build: cargo build -p multiple-daemons-example-operator
  18. shared-library: ../../target/debug/multiple_daemons_example_operator
  19. inputs:
  20. tick: dora/timer/millis/100
  21. random: rust-node/random
  22. outputs:
  23. - status
  24. - id: rust-sink
  25. _unstable_deploy:
  26. machine: B
  27. custom:
  28. build: cargo build -p multiple-daemons-example-sink
  29. source: ../../target/debug/multiple-daemons-example-sink
  30. inputs:
  31. message: runtime-node/rust-operator/status