Skip to content

unordered

Removes ordering assumptions from a pipeline.

unordered { … }

The unordered operator takes a pipeline as an argument and removes ordering assumptions from it. This causes some operators to run faster.

Note that some operators implicitly remove ordering assumptions. For example, sort tells upstream operators that ordering does not matter.

unordered {
read_json
}