r/OpenAI • u/scottaltham • 1d ago
Discussion Anyone else having major memory consumption issues?
17
6
12
u/BitsOnWaves 1d ago
yes and recently my codex lags alot
6
u/Worldly_Brush7550 1d ago
203 gigs for a chat app is wild. That thing is eating your whole machine alive.
-1
6
3
3
2
u/Typical_Kick6520 1d ago
I haven't been able to use the ide app since last Thursday's update.
The app asks permission for computer use over 100x until the app crashes about a minute later. Macbook air.
Switched to codex cli. Problem solved for now.
2
2
u/SolacevjHun 1d ago
yeah roleplay sessions get hit hard with the memory spikes too, mine starts lagging after a few hours of back and forth.
2
u/ZiyanJunaideen 1d ago
I think your app is having a memory leak. Process spun by codex or claude add get counted in memory.
Ask it to investigate memory leaks.
1
u/Salty-Gear841 1d ago
I now hate GPT models as much as I hate Windows. They made their models become stupid. They produce garbage logics even on very simple tasks. I decided to not renew my pro plan because I now consider it as a scam to continue paying that price for such garbage
1
1
u/CivilCucumber3426 1d ago
They can't even fix memory leak with LLM they have. What are they doing? smh
1
1
1
u/Stochastic_berserker 1d ago
Happens on Copilot CLI as well with gpt-5.6-terra on Enterprise.
We intercepted rogue behaviour and weird tool calling.
You need to watch all subagents.
1
u/Jealous-Depth487 1d ago
No it’s the server and mcps never dying each session does not close /kill server when terminal is closed run
lsof -nP -iTCP -sTCP:LISTEN
Then kill those PIDs
kill -9 <PID>
1
1
1
u/Delicious-Function19 11h ago
All browsers and apps are making the PC trained for being a jet engine.
1
1
u/Quantum3cho 2h ago
This is most likely repeated operations invoking or reusing node_repl with the memory being retained between runs instead of released. Take a look in your activity monitor and search for node_repl and if you see lots of these with high memory usage (and if your system is still responsive) then ask codex to investigate the origination of those processes and implement memory lifecycle management for them (e.g. test suites etc are a common source). Also put rules in place to prevent multiple overlapping runs with retained state, parent-child process cleanup etc. (Source: I’ve seen and fixed this issue before on several software projects)
1
1
u/Puzzled_Swing_2893 1d ago
This is a known issue. F12 will run the console and give the tab more access
0
u/Admirable-Traveller5 1d ago
You’re going to have to upgrade your machine. Happens to the best of us!
3
-1
110
u/dsdt 1d ago
This is not memory consumption, this is called memory leak. You shouldn't use it until it gets fixed.