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)
yml
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 Message Batching.
Was this helpful?