You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Euphoria allows users to define their own input sources and output
sinks.
Stateless elementwise processing
MapElements, FlatMap, Filter
Operators allowing user code to process one element at a time to
produce new, transformed datasets. There operators are stateless
and typically executed distributed and in parallel over the
process input dataset.
Stateful processing
ReduceStateByKey, ReduceByKey, ...PerKey, Sort
Operators allowing aggregation of values (into a state) per
key. These are normally used in conjuction with a windowing
strategy (see below.)