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

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