Fivetran limits the following actions at the account level for a rolling time period:
Limit | Trial Accounts | Standard Select / Standard / Enterprise / Business Critical Accounts |
---|---|---|
Connector creation per minute | 1 max per minute | 20 max per minute |
Connector creation per hour | - | 600 max per hour |
Connector creation per day | 10 max per day | - |
User creation | 10 max per day | 100 max per day |
Setup test requests per minute | 250 max per minute | 250 max per minute |
Setup test requests per hour | 500 max per hour | 2,500 max per hour |
All requests | 500 per hour | 5,000 per hour |
Note: The endpoints, which run setup tests directly or indirectly, are:
- Create a connector with
run_setup_tests: true
- Modify a connector with
run_setup_tests: true
- Run connector setup tests
- Reload a connector schema config
- Retrieve source table columns config
- Create a destination with
run_setup_tests: true
- Modify a destination with
run_setup_tests: true
- Run destination setup tests
For the overall HTTP requests quota we provide HTTP headers in the response:
X-Rate-Limit
specifies the overall HTTP requests limit.X-Rate-Limit-Remaining
specifies the number of remaining requests for the current one-hour rolling time period.
If an API limit has been exceeded, it might respond with an HTTP 429 error. The response is going to contain Retry-After
HTTP header specifying the number of seconds to wait before the request can be sent again.
HTTP 429 Too Many Requests
Retry-After=3600
{
"code": "TooManyRequests",
"message": "No more than 100 connectors can be created hourly"
}