Keeps Timing out and asking to try again but the partial code it tried to build are still counted in usage! Is there some kind of “Rush Hour” when too many users are working with Cursor that I should stay away from?
I see the screenshot. This is an OOM crash (out of memory), error code -536870904. It’s a different issue and not related to the provider errors from the previous post.
On Windows, Cursor’s renderer can hit a ~4 GB memory limit (an Electron limitation). With long chats or agent sessions, that can lead to a crash.
What you can do:
Rotate chats: Don’t work in one very long chat. Start a new chat regularly, especially before big tasks.
Monitor memory: Press Ctrl+Shift+P then Developer: Open Process Explorer. Watch the renderer process. If it’s getting close to 3.5 GB, it’s time to start a new chat.
Check extensions: Try launching from the command line with cursor --disable-extensions. Some extensions can significantly increase memory usage.
Clear chats: If it crashes right on startup, delete older chats via the Chat History panel.
Also check the console: Ctrl+Shift+P then Developer: Toggle Developer Tools then Console. Do you see lines like [otel.error] or OTLPExporterError? If yes, that can point to an additional memory leak.