My usecase -
Incoming multiple events (via kafka sink connect) viz. e1, e2, e3, e4.
Group these event’s data/variables in an array like [e1, e2, e3, e4] and pass on to the next block in the workflow.
I need to group multiple event’s data because this data will be sent to a 3rd party webhook which accepts payloads in bulk.
Is it doable in zeebe workflow? If yes, how can I model it? Thanks in advance.
In any case, the variable should not get too big. If the variable size is greater than 1 MB or the list contains a lot of items then you should think of store it externally.