Hi team, Thank you for all the support.
We've been using mediation group PATCH API to create new MG lines for a while now and it works great when I send a few dozen requests concurrently.
However, when updating the existing mediation group lines, only around 20%-50% of the requests were returned successfully. The rest got back with the error below:
{
"code": 409,
"message": "Encountered a concurrency problem. Please try again later.",
"status": "ABORTED"
}
I didn't run multiple requests to update the same MG line, only on the same mediation group, each API call = 1 unique line ID.
I've implemented exponential backoff to retry whenever the request encounters this error, however, I would like to know if there's any way to fix this issue and make the request successful on the first attempt like when I create new MG lines.
Best,