Encountering a 500 Internal Server Error when hitting the /api/v2/analytics/interactions/query endpoint. This happens consistently when concurrent sessions exceed 200.
Using JMeter 5.6.2 to simulate a spike in reporting requests. The initial requests (up to ~150 concurrent) return 200 OK successfully. Once the load increases, the response time spikes to over 30 seconds before failing with a 500 error. The payload is a standard JSON body requesting interaction data for the last 24 hours.
{
"date_from": "2023-10-25T00:00:00.000Z",
"date_to": "2023-10-26T00:00:00.000Z",
"size": 100
}
I checked the Genesys Cloud status page, and everything shows green. No rate limit 429 errors are appearing, which is strange. The error seems to originate from the backend processing the query rather than a gateway timeout.
Is there a known limit on concurrent query execution for this endpoint? Or is this a transient issue with the analytics service under load? I need to understand if this is a hard limit for our capacity planning or a temporary instability.
Thank you.