559 Connection Limit Stop
The HTTP 559 Connection Limit Stop status code is an unofficial server error specific to Akamai Enterprise Application Access (EAA). The platform returns this code when a user exceeds the service concurrent connection limit.
Usage
Akamai EAA enforces connection limits to protect backend applications from resource exhaustion. The 559 error appears when a user establishes more than 50 WebSocket connections, or when a large volume of requests triggers rate limiting applied to the connecting IP address for an authenticated user.
Akamai's documentation gives 558 and 559 identical descriptions ("Connection Limit Stop" / "Service Concurrent Connections Exceeded"). The operational difference between the two codes is not documented by Akamai.
The limit applies per connecting IP for authenticated users. Multiple users behind the same NAT gateway or corporate proxy share a single IP, making shared environments more susceptible to hitting the threshold.
SEO impact
Search engines treat 559 responses as server errors. Persistent errors cause crawlers to reduce crawl frequency and eventually drop affected URLs from the index.
Example
A client sends requests through Akamai EAA. After exceeding the connection limit, the next request receives a 559.
Request
GET /api/inventory/check HTTP/1.1
Host: app.example.re
Accept: application/json
Response
HTTP/1.1 559 Connection Limit Stop
Date: Mon, 02 Mar 2026 14:40:00 GMT
Content-Type: text/html
<html>
<head><title>559 Error</title></head>
<body>
<h1>Connection Limit Stop</h1>
<p>Service concurrent connections exceeded</p>
</body>
</html>
How to fix
Reduce the number of simultaneous connections and the request rate from a single IP. Applications opening multiple WebSocket connections in parallel need connection pooling or multiplexing to stay within the 50-connection limit.
Close idle WebSocket connections. Applications opening connections without properly closing them accumulate stale connections against the limit. Implement heartbeat timeouts and close connections no longer sending or receiving data.
Add delays between requests in automated scripts and polling loops. Exponential backoff after receiving a 559 prevents the client from compounding the violation.
For environments where multiple users share a single outbound IP (corporate NAT, VPN concentrator), the aggregate traffic from all users counts against the same IP threshold. Splitting traffic across multiple egress IPs or requesting a higher limit from Akamai support addresses this scenario.
Review the EAA application activity logs in Akamai Control Center to identify which endpoints and user sessions are generating the highest connection and request volumes.
Takeaway
The 559 Connection Limit Stop status code is an Akamai EAA error triggered when a user exceeds the concurrent connection limit or IP-based rate limit. Akamai documents 559 identically to 558, and the operational distinction between the two codes is not publicly specified.
See also
- Akamai EAA Application Response Codes
- Google: HTTP status codes and network errors
- 558
- 429
- HTTP status codes