HTTP

HTTP 504 Gateway Timeout vs 510 Not Extended

Both HTTP 504 (Gateway Timeout) and 510 (Not Extended) belong to the 5xx Server Error category. 504 indicates that the server, acting as a gateway or proxy, did not receive a timely response from the upstream server. Meanwhile, 510 means that further extensions to the request are required for the server to fulfill it.

Description

The server, acting as a gateway or proxy, did not receive a timely response from the upstream server.

When You See It

When an upstream server is too slow to respond within the proxy's timeout window.

How to Fix

Increase proxy timeout settings. Optimize upstream server performance. Check for long-running queries.

Description

Further extensions to the request are required for the server to fulfill it.

When You See It

When an HTTP extension required by the server is not present in the request.

How to Fix

Add the required extension headers to your request.

Key Differences

1.

HTTP 504: The server, acting as a gateway or proxy, did not receive a timely response from the upstream server.

2.

HTTP 510: Further extensions to the request are required for the server to fulfill it.

3.

You encounter 504 when when an upstream server is too slow to respond within the proxy's timeout window.

4.

You encounter 510 when when an HTTP extension required by the server is not present in the request.

When to Use Which

For 504 (Gateway Timeout): Increase proxy timeout settings. Optimize upstream server performance. Check for long-running queries. For 510 (Not Extended): Add the required extension headers to your request.

Learn More