Is message correlation the solution? can I only use zeebe to achieve this?

Hi everyone,
I have a situation where I receive messages like this:

    {
   id: 1,
   role: parent,
   name: Jim
   number_of_childern: 3,
   children_prefix_id: 'AZ'
},
{
   id: 2,
   role: child,
   name: Alex,
   prefix_id: 'AZ' 
},
        .
        .
        .
{
   id: 55,
   role: child,
   name: James,
   prefix_id: 'AZ' 
}

The data contains parents and children. A child can turn up anywhere in the file as shown above. It may not necessarily come exactly after its parent. Also a child relates to its parent through the prefix_id (i.e. ‘AZ’ in this case). So in this case I know that James and Alex are both Jim’s children based on their common prefix_id.
If I need to process a parent with their children and keep a “state” of how many of a parent’s children I have processed, what can I do? So when a parent is encountered in the workflow, can zeebe some how keep track or “state” of how many of that parent’s children have been processed. When I encounter a parent, I want to be able to wait for their children to be processed with them.
Is message correlation the thing that I am after or it will not help me?
cheers

Hi all. Is the scenario not clear? I just want to know if Zeebe is capable of this or not.
Currently, because for every parent and child file a new instance is created, I do not believe I can use message correlation between them as they are separate instances.
So I think I need to send each file as a message like attached photo and do aggregation that way.
I am struggling to find documentation on how to start with a start message in java. Any help would be appreciated. In the meantime, if anyone has any comments on whether I am missing something or any help, please let me know.

The intermediate message catch needs to have a different message name from the message start event, otherwise the intention is ambiguous.

Hi @Nima_Namjouyan,

this is an interesting question!

I think that you could use some kind of message aggregation pattern. For example, like the following process:

image

The process instance is started for every parent. It collects all children based on the number_of_childern and children_prefix_id of the parent message.

As suggested by Josh, the parent and the children can have different message names to have a clear correlation.

If the child messages are published with a TTL then they can be published before the parent message is correlated.

Does this work for you?
Do you have a different solution?

Best regards,
Philipp

1 Like

Just to let everyone know we have implemented a solution and the details including Java project is provided here Zeebe Message Correlation Java Example

It was amazing working with you on this @Nima_Namjouyan.

2 Likes