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?

已提問 2 年前檢視次數 2939 次
1 個回答
1
已接受的答案

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.

已回答 2 年前
  • 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?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南