Skip to content
Merged
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
9 changes: 9 additions & 0 deletions docs/user-guide/reference/ordered-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,12 @@ strict in-order guarantees.
- Source vertices (`in-1`, `in-2`) always preserve input order and require no extra configuration.
- Because `in-1` and `in-2` both feed into `cat` (a join), messages from the two sources are interleaved at `cat`.
Order preservation holds within each source's stream, not across the two sources.


### Complete Example

For a more complete example that combines ordered processing with event-time sorting, see
[ordered-stream-processing](https://github.com/numaproj/numaflow-rs/tree/main/examples/ordered-stream-processing)
in the Rust SDK. That example uses an accumulator to sort out-of-order events by event time, then feeds them through
partitioned map and sink vertices with ordered processing enabled, demonstrating both temporal and spatial ordering
working together.
Loading