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,355 changes: 102 additions & 1,253 deletions docs/ADVANCED_DSL_GUIDE.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/AGGREGATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ routing:
routing_type: "filter"
destinations:
- output: "orders-metrics-1m"
filter: "/event_type,==,order_completed"
transform: "CONSTRUCT:region=/region:customer_id=/customer_id:amount=/amount"
filter: "$event_type == 'order_completed'"
transform: "construct(region=$region, customer_id=$customer_id, amount=$amount)"
aggregation:
group_by:
- name: region
Expand Down Expand Up @@ -58,7 +58,7 @@ routing:
## Execution Model

- Aggregations run after the destination `filter` and value `transform`.
- v1 aggregation uses processing time for window assignment and window closure checks.
- Aggregations use processing time for window assignment and window closure checks.
- State is in-memory only for this first release.
- Aggregated records are emitted to the destination `output` topic.
- The emitted record key is the canonical JSON encoding of the ordered `group_by` name/value pair list, for example `[{"name":"region","value":"us"}]`.
Expand Down
Loading
Loading