The Retry Node retries packet processing multiple times in case of errors. This node is useful for tasks prone to temporary failures, providing multiple attempts to improve the chances of success before ultimately sending the packet to an error output if the retries are exhausted.
- threshold: Specifies the maximum number of retry attempts for processing a packet in case of failure. Once the retry limit is exceeded, the packet is routed to the error output port.
- in: Receives the input packet and initiates processing. The packet will be retried until the
limit
is reached if processing fails. - out: Outputs the packet if processing is successful within the retry limit.
- kind: retry
threshold: 3 # Retry up to 3 times