subprocess
Executes a command, runs it as a subprocess, and writes messages to it over stdin.
Messages are written according to a specified codec. The process is expected to terminate gracefully when stdin is closed.
If the subprocess exits unexpectedly then Redpanda Connect will log anything printed to stderr and will log the exit code, and will attempt to execute the command again until success.
The execution environment of the subprocess is the same as the Redpanda Connect instance, including environment variables and the current working directory.
Fields
name
The command to execute as a subprocess.
Type: string
args
A list of arguments to provide the command.
Type: array
Default: []
codec
The way in which messages should be written to the subprocess.
Type: string
Default: "lines"
Options:
lines
.