Hi,
I have a specific scenario and would like some guidance on whether this is possible. I'm running CAP with subscribers distributed across separate processes (different pods). When a process receives a message from the database but doesn't have the corresponding subscriber registered, it throws a SubscriberNotFoundException.
In my setup, this is expected behavior since subscribers are intentionally separated. I'd prefer to simply ignore these messages when no subscriber is found rather than throwing an exception. If I'm not mistaken, this exception "short-circuits" the message retries according to the code.
Is there a configuration option or way to disable this exception and silently skip unmatched messages?
Hi,
I have a specific scenario and would like some guidance on whether this is possible. I'm running CAP with subscribers distributed across separate processes (different pods). When a process receives a message from the database but doesn't have the corresponding subscriber registered, it throws a SubscriberNotFoundException.
In my setup, this is expected behavior since subscribers are intentionally separated. I'd prefer to simply ignore these messages when no subscriber is found rather than throwing an exception. If I'm not mistaken, this exception "short-circuits" the message retries according to the code.
Is there a configuration option or way to disable this exception and silently skip unmatched messages?