Docs Connect Components Outputs subprocess subprocess Type: OutputInputProcessor Available in: Self-Managed Executes a command, runs it as a subprocess, and writes messages to it over stdin. # Config fields, showing default values output: label: "" subprocess: name: "" # No default (required) args: [] codec: lines 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 . Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution stdout switch