You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per BigCommerce's API rate-limit spec there can only be 10 concurrent requests to /v3/customers and 3 concurrent requests to all other endpoints. API calls are metered per-store, per-endpoint.
Add an enchancement to honour this limitation.
The text was updated successfully, but these errors were encountered:
I'd be interested in exploring if we could just monitor any unexpected 429 responses (where expected is defined based on known rate limiting headers) and keep increasing linearly until we get those responses or something more advanced like slow-start.
I'd also be really interested in reporting to the user when rate limiting has been detected to aid debugging.
As per BigCommerce's API rate-limit spec there can only be 10 concurrent requests to
/v3/customers
and 3 concurrent requests to all other endpoints. API calls are metered per-store, per-endpoint.Add an enchancement to honour this limitation.
The text was updated successfully, but these errors were encountered: