Hi everyone,
We’ve been experiencing random HTTP 500 errors in two of our production Next.js applications deployed on Vercel. The issue started around October 26th, 2025, and we haven’t been able to determine a clear cause yet.
Setup overview
App 1:
- Next.js 14.2.5
- Node.js 20
- Fluid Compute: Disabled
- Region:
eu-central-1 - Stable in production for several months, with no recent code changes. The issue started appearing recently without any configuration changes.
App 2:
- Next.js 15.5.2
- Node.js 22
- Fluid Compute: Enabled
- Region:
eu-central-1 - Newer app in production. We initially suspected Inngest, since the problem appeared soon after adding it, but the errors persist even after uninstalling it.
Both applications use the Inngest SDK, and both connect to Supabase (also hosted in the same region). Supabase logs show no connection errors or abrupt disconnections, so the database layer doesn’t appear to be involved.
Error details
The issue occurs randomly during HTTP requests. In many cases, it affects the same endpoint (the one typically hit first when users open the app), but it has also occurred on other routes.
In the Vercel logs, we consistently see entries like:
Node.js process exited with signal: 6 (SIGABRT) (core dumped)or occasionally:
Node.js process exited with signal: 11 (SIGSEGV) (core dumped)Immediately after, we see low-level memory errors such as:
double free or corruption (out)corrupted double-linked listmunmap_chunk(): invalid pointerfree(): invalid pointerAdditional notes
- No corresponding errors appear in our application logs.
- The issue occurs sporadically, typically under normal production load (not under heavy stress).
- The same code runs fine locally without crashes.
- This started recently without code changes, which makes us suspect a potential platform or runtime-level issue (Node or infrastructure related).
Has anyone else seen similar behavior recently, especially in the eu-central-1 region? Any guidance or insights from would be greatly appreciated. In particular, how to debug these kind of low level errors in production
Thanks in advance


