bypass

Passes all input records to the next command without any modification. It does not add, remove, or change any fields or values, and serves as a placeholder in the pipeline.

Command properties

ItemDescription
Command typeProcessing query
Required permissionNone
License usageN/A
Parallel executionSupported
Distributed executionRuns on Data Node (mapper)

Syntax

bypass

Options

N/A

Error codes

Parse errors

N/A

Runtime errors

N/A

Description

The bypass command passes all input records to the next command as-is, without any processing. It does not add or remove fields, and does not modify values.

This command is primarily used as a placeholder in query pipelines where data must pass through a position without any transformation.

Examples

  1. Passing input records through unchanged

    json "[{'name': 'Alice', 'score': 85}, {'name': 'Bob', 'score': 92}]"
    | bypass
    

    Outputs records created by the json command without any modification.