EventBridge and Message Deduplication
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?
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.
Relevant questions
Cognito UI does not show error when User Pool is not enabled.
asked 7 months agoWhat is the significance of this message?
Accepted Answerasked 3 months agoButton not registering mouse up
Accepted Answerasked 4 years agoEFS - files not found sometimes and randomly
asked 3 months agoEventBridge and Message Deduplication
Accepted Answerasked 3 months agoUpdating EventBridge Target in a separate CloudFormation script
Accepted Answerasked 4 months agoIs the SendUsersMessages quota for Pinpoint API per user/message or per request?
asked 21 days agoA fargate task schedule via EventBridge fails to launch sometimes with stopReason "Rate limit exceeded while preparing network interface to be attached to instance"
asked 5 months agoAmazon Cognito hosted UI password reset code message
Accepted Answerasked 7 months agoIs there a way to add a step between other steps in a recipe with the UI?
asked 2 years ago
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?