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
> By default, all the concurrency modes presented below yield results in the upstream order (FIFO). Set the parameter `ordered=False` to yield results as they become available (***First Done, First Out***).
109
+
105
110
### thread-based concurrency
106
111
107
112
> Applies the transformation via `concurrency` threads:
> Preserves the upstream order by default (FIFO), but you can set `ordered=False` for ***First Done First Out***.
126
-
127
130
> [!NOTE]
128
131
> `concurrency` is also the size of the buffer containing not-yet-yielded results. **If the buffer is full, the iteration over the upstream is paused** until a result is yielded from the buffer.
0 commit comments