Run the simple example with:
$ cargo run --example basic -- 4
where 4 should be the number of workers in the computation we want to examine. Once that's up and running, you can start the computation to examine (with a recent-enough timely-dataflow):
TIMELY_WORKER_LOG_ADDR="127.0.0.1:8000" cargo run ... -- -w 4
(or, in Windows: )
set TIMELY_WORKER_LOG_ADDR=127.0.0.1:8000
cargo run ... -- -w 4
The source is in src/bin/graph.rs
. Run with:
$ cargo run --bin graph -- 4
Open a browser at http://localhost:9000 then start the computation we're examining (as before).
The source is in src/bin/schedule.rs
. Run with:
$ cargo run --bin schedule -- 4
Open a browser at http://localhost:9000 then start the computation we're examining (as before).