EventBridge and Message Deduplication

0

I have a UI application which is not responsive sometimes. As a result, the user clicks the submit button multiple times. I'm planning to integrate this application with EventBridge. It is possible that the application can send the same message from the UI multiple times.

We want to filter out the duplicate messages that come from the UI. Is there any AWS framework CDK which is written with de-duplication in mind and can be used along with EventBridge?

preguntada hace 2 años2939 visualizaciones
1 Respuesta
1
Respuesta aceptada

I suppose that EventBridge can't help you. It's an event bus service that ingresses your click events and simplify forward them to targets based on predefined rules. Think it as a bridge, it's not reasonable if you prevent the same car model goes through the bridge over and over again. On cloud environment, duplication is normal behavior and you have to handle that situation yourself so I advise you to update your source code in this case.

respondido hace 2 años
  • Are you suggesting storing the messages in a database, and every incoming message is checked against what is in the database to find out whether it has been processed already?

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas