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

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