Hi,

I was wondering about opinions from others on approaches.

My requirement at a very high level, is to provide a REST API for pulling
messages from a queue in bulk, and at a later point (usually within a
minute or two) acknowledging that message.  REST is a preferred approach
since the data can be transferred over HTTP and we can provide our own API
contract (independent of backing queue).

The only area where we're struggling is in the message acknowledgement.
We're in a distributed environment, many of these REST services are
running.  The request to pull in messages may be performed on one node, but
the acknowledgement happens on a different node.  I was wondering if there
were any patterns that might demonstrate this behavior.  I don't
particularly see any clustering within camel, so not sure if there's a
distribution approach to leverage.

John

Reply via email to