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

12345678910111213141516
  1. nodes:
  2. - id: rust-node
  3. build: cargo build -p benchmark-example-node --release
  4. path: ../../target/release/benchmark-example-node
  5. outputs:
  6. - latency
  7. - throughput
  8. - id: rust-sink
  9. build: cargo build -p benchmark-example-sink --release
  10. path: ../../target/release/benchmark-example-sink
  11. inputs:
  12. latency: rust-node/latency
  13. throughput:
  14. source: rust-node/throughput
  15. queue_size: 1000