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?

posta 2 anni fa2939 visualizzazioni
1 Risposta
1
Risposta accettata

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.

con risposta 2 anni fa
  • 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?

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande