I have two systems that produce different types of messages that I need to consume and then generate new messages based on them.
- The first produces NEWFILE messages containing a Filename that arrive on a queue queue:file.new.
The second produces TASK messages containing a Filename and a TaskType and go to queue:task.
There will only be one NEWFILE message for a given Filename.
- There will be multiple TASK messages for a given Filename, each with a different TaskType.
- The messages can arrive in any order.
I need to forward each TASK message that turns up to queue:perform but only when a NEWFILE message for the matching Filename has arrived.
At the moment we do this matching in another (non queue based) system by that uses polling to find the FILEs and TASKs and maintains two tables, one for FILES and one for TASKS and when either turn up, we check what matches there are and fire of the relevant task.
We are looking to replace this with a messaging solution where we maintain as little state as possible and make as much use of enterprise patterns (Apache Camel).
It's not clear to me which pattern / components would satisfy my requirements.
Thanks, Tom