Skip to main content

parallel

A processor that applies a list of child processors to messages of a batch as though they were each a batch of one message (similar to the for_each processor), but where each message is processed in parallel.

# Config fields, showing default values
label: ""
parallel:
cap: 0
processors: [] # No default (required)

The field cap, if greater than zero, caps the maximum number of parallel processing threads.

The functionality of this processor depends on being applied across messages that are batched. You can find out more about batching in this doc.

Fields

cap

The maximum number of messages to have processing at a given time.

Type: int
Default: 0

processors

A list of child processors to apply.

Type: array