Removal of Duplicates from payload in mule 4

481 Views Asked by At

How to remove duplicate object from payload. My requirement is I have a websocket connector which provides payload (a object) every second or sometimes after few hours,we will be receiving messages, In those few entries we will be duplicate records. How to remove duplicate records from payload which we are receiving in different period of time. example: At 10:30 AM IST { "EmpName":"Sonam", "message":"Incorrect username or password."} At 10:35 AM IST { "EmpName":"Bulbul", "message":"Valid"} At 10:40 AM IST { "EmpName":"Bulbul", "message":"Valid"} I need to filter and keep only 10:30 and 10:35 AM IST messages. Please help me how can I achieve this.

1

There are 1 best solutions below

1
On

If its Mule4 , then you can make use of Idempotent Message Validator. Refer this for a sample execution.

If it happens to be Mule3, you can make use of an Idempotent Filter and achieve the desired result.