redpanda_data_transform
Executes a Redpanda Data Transform as a processor
Introduced in version 4.31.0.
This processor executes a Redpanda Data Transform WebAssembly module, calling OnRecordWritten for each message being processed.
You can find out about how transforms work here: https://docs.redpanda.com/current/develop/data-transforms/how-transforms-work/
Fields
module_path
The path of the target WASM module to execute.
Type: string
input_key
An optional key to populate for each message. This field supports interpolation functions.
Type: string
output_key
An optional name of metadata for an output message key.
Type: string
input_headers
Determine which (if any) metadata values should be added to messages as headers.
Type: object
input_headers.include_prefixes
Provide a list of explicit metadata key prefixes to match against.
Type: array
Default: []
input_headers.include_patterns
Provide a list of explicit metadata key regular expression (re2) patterns to match against.
Type: array
Default: []
output_metadata
Determine which (if any) message headers should be added to the output as metadata.
Type: object
output_metadata.include_prefixes
Provide a list of explicit metadata key prefixes to match against.
Type: array
Default: []
output_metadata.include_patterns
Provide a list of explicit metadata key regular expression (re2) patterns to match against.
Type: array
Default: []
timestamp
An optional timestamp to set for each message. When left empty, the current timestamp is used. This field supports interpolation functions.
Type: string
timeout
The maximum period of time for a message to be processed
Type: string
Default: "10s"
max_memory_pages
The maximum amount of wasm memory pages (64KiB) that an individual wasm module instance can use
Type: int
Default: 1600