loops? #28257
loops?
#28257
Replies: 1 comment
-
|
sorry, wrong project |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to build a stream processor which reads messages from a NATS subject, extract a file list from those messages, executes a processor for each file, and eventually creating a new message and send it back to another NATS subject.
Currently I'm struggling with the "for each file" part. Is there some kind of loop, I can use to go over this?
{ "files": [ {"path":"a","size":1}, {"path":"b","size":2}, {"path":"c","size":3} ] }This json was extracted from the message using the mapper processor, meaning I can adjust this if necessary.
This is my current configuration:
I could need a little push into the right direction :)
Beta Was this translation helpful? Give feedback.
All reactions