I had a 3 flowfiles which are coming from the same processor.
FF1 -> {a:1,b:2,c:'name'}
FF2 -> {a:1,b:5,c:'fruit'}
FF3 -> {a:2,b:3,c:'abc'}
By using MergeContent Processor I'm able to merge all the flow files, but my requirement is to merge flow files on Key.
Expected output if I join with Key 'a':
FF1 -> [{a:1,b:2,c:'name'},{a:1,b:5,c:'fruit'}]
FF2 -> [{a:2,b:3,c:'abc'}]