Hello Mary Brindha (TATA CONSULTANCY SERVICES LTD),
Welcome to the Microsoft Q&A and thank you for posting your questions here.
Regarding your question to fix the issues error with "code": "Conflict", "message". I understand that you are experiencing issues with Azure Logic App where it intermittently fails to export data from a Redis cache to a storage account.
The error you encountered indicates that the Redis cache is busy due to ongoing updates or maintenance, that is causing a conflict.
From experience to resolve this:
- The issue might resolve itself once the previous operation has completed.
- Implementing Retry Policy in Logic App.
- If the first and second previous request is stuck for a long time and retrying does not resolve the issue, it would be best to open Azure support + troubleshooting ticket from your Azure Portal for further investigation.
Therefore, to set the retry policy with parameters like count and interval in your Logic App for example:
- Retry Count: Number of retries.
- Retry Interval: Time interval between retries.
"retryPolicy": {
"type": "fixed",
"interval": "PT5M",
"count": 5
}
Accept Answer
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
** Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful ** so that others in the community facing similar issues can easily find the solution.
Best Regards,
Sina Salam