SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
Serverless New Added 8 September 2026

Vercel: 504 FUNCTION_INVOCATION_TIMEOUT

The serverless function exceeded its maximum duration and was killed. The default is short, and the work is usually a slow upstream call, a cold database connection, or an LLM request that takes longer than the plan's ceiling allows.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
// Raise the limit for one route (still capped by the plan)
export const maxDuration = 60;
export const runtime = 'nodejs';

// Streaming responses keep the connection alive and start sending early
export const runtime = 'edge';
return new Response(stream);

// Long jobs do not belong in a request: queue them
after(() => enqueue(job));    // next/server after()

// Serverless plus a normal Postgres pool exhausts connections and looks
// like a timeout: use a pooled connection string or a data proxy.

How to diagnose Serverless errors

Serverless errors are shaped by hard platform limits: execution duration, deployment package size, memory, and concurrency. Unlike a server you control, these cannot be tuned away. The fix is to restructure the workload. VPC-attached functions add a second class of problem, because they lose default internet access and depend on ENI capacity and NAT configuration.

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. Check the platform limit before changing code: timeout, package size and memory are all documented, and the error is usually the limit being reported literally.
  2. For timeouts, add timing logs around each external call. A function that times out is nearly always waiting on one downstream dependency.
  3. Reduce package size with layers, tree-shaking, and by excluding dev dependencies and the provider SDK that the runtime already includes.
  4. For VPC functions with no internet access, confirm there is a NAT Gateway or the relevant VPC endpoints. A function in a private subnet cannot reach the public internet by default.
  5. Measure cold start separately from warm invocation in your metrics, and use provisioned concurrency only after confirming cold starts are the actual problem.

Tools worth reaching for

  • CloudWatch Logs Insights
  • aws lambda get-function-configuration
  • X-Ray / distributed tracing
  • sam local invoke

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

vercel.com

Related Serverless errors

See all 11 Serverless errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.