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
| Item | Description |
|---|---|
| Command type | Processing query |
| Required permission | None |
| License usage | N/A |
| Parallel execution | Supported |
| Distributed execution | Runs 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
-
Passing input records through unchanged
json "[{'name': 'Alice', 'score': 85}, {'name': 'Bob', 'score': 92}]" | bypassOutputs records created by the
jsoncommand without any modification.