I have stateful service fabric service where the replica count is 3. In this stateful service, I have a reliable dictionary. I want to track notifications for each CRUD operation which is performed on the reliable dictionary.
I have followed the link to integrate reliable dictionary notifications
If I use a one-node cluster and replica count is 1, I will be getting one notification for each operation (Create, Update, Delete). But If I use five-node cluster and replica count is 3, I will be getting three notifications for each operation, which is causing duplicate records in my business logic, I need only one notification for each operation.
My expectation is to get a notification for each replica when the dictionary has been updated.
Can anyone help me out to resolve this issue?