Generator input is unordered

According to this documentation and logic in general I assume this input should process specified lines one by one in the specified order, not random or anything else.

But it it's output is in random order.

Also the text from the above link contain a mistake. It should be:
"The above will emit line 1 then line 2 then line **3** , then line 1 , etc…"

Once the filter section gets hold of the data it is possible that it will be processed in parallel by multiple threads, so at that point ordering is no longer guaranteed.

Even if there is no filter section? I have only input with generator and output with stdout

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.