I currently have a retry policy for SQL write operations.
My question is, if the operation is not idempotent will it matter?
I've always thought that if an exception comes up and the operation is retried, it means that the original attempt does not go through and therefore it will not matter if it is idempotent.
If it DOES matter, what should I look out for in the sql procedures to determine if they are idempotent or not.
Thank you !