Details
-
Sub-task
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
None
-
None
-
None
Description
In Stream DSL, all broadcasting chained operations will be translated to individual tasks.
For example,
val stream = StreamApp.source(source, 1, "source") stream.filter(fn, "filter A") stream.filter(fn, "filter B") stream.filter(fn, "filter C")
This will be translated to 1 SourceTask and 3 FilterTasks although it's possible for them to be done in 1 Task.