Skip to main content
Version: Next

unordered

Removes ordering assumptions from a pipeline.

unordered { … }

Description

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.

Examples

Parse JSON unordered

unordered {
  read_json
}