Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: cargo install mdbook --version 0.4.6
- run: cd mdbook && mdbook build
- uses: JamesIves/github-pages-deploy-action@4.0.0
Expand Down
2 changes: 1 addition & 1 deletion mdbook/src/chapter_5/chapter_5_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Timely dataflow computations are structured so that to send a timestamped messag

Before we get into these two aspects, we will first need to be able to name parts of our dataflow graph.

## Dataflow structure
## Dataflow Structure

A dataflow graph hosts some number of operators. For progress tracking, these operators are simply identified by their index. Each operator has some number of *input ports*, and some number of *output ports*. The dataflow operators are connected by connecting each input port to a single output port (typically of another operator). Each output port may be connected to multiple distinct input ports (a message produced at an output port is to be delivered to all attached input ports).

Expand Down