rakesh-rsky commented on PR #11213: URL: https://github.com/apache/nifi/pull/11213#issuecomment-4510106871
@turcsanyip Thank you for the performance feedback and the suggestion. I've added a **Delivery Guarantee** property to `PublishAMQP` with two options: - **At most once** *(default)* - original fire-and-forget behaviour, no performance impact. Undeliverable messages are logged as a warning and the FlowFile still routes to `success`. - **At least once** - enables Publisher Confirms. The processor waits for a broker ack/nack before routing. Undeliverable messages and NACKs route to `failure`, preventing silent data loss. This keeps the default behaviour unchanged while giving users the option to trade throughput for delivery reliability. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
