Question
What does the following Warning mean?
{
"type" : "retry_api_call",
"message" : "Retrying after 30 seconds. Error : ErrorResponse{msg='Exceeded rate limit for endpoint: /api/export/data.csv, project: 8575 ', code='RateLimitExceeded', params='{}'}"
},
Environment
Connector: Iterable
Answer
This Warning means there is a rate limit on the number of calls we can make to the exports endpoint
Rate limit: 4 requests/minute, per project.
We are not allowed to make more than 4 requests in a minute and on the 5th request we hit 429 too many request
. The connector makes the calls again after 30 seconds of sleep.