Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [memory-leaks]

A memory leak occurs when a program fails to release memory that it has allocated but is no longer using and is not recoverable.

0 votes
0 answers
16 views

Infinite Loop in React errorElement

I have a problem with an infinite loop/memory leak in react. The global error handler is initiated like this: export const routesConfig: RouteObject[] = [ { path: '/', element: <App />, ...
Kulu's user avatar
  • 143
1 vote
1 answer
24 views

CPU Memory Leak While Inference Models in Infinite Loop

I'm experiencing a CPU memory leak while running a Python script that processes text using various NLP models in an infinite loop. The script includes language translation, sentiment analysis, and ...
Amritesh Nandan's user avatar
0 votes
0 answers
22 views

Why does subsequent .NET Core application consume more memory?

I have a .NET Core 3.1 application running in Docker Windows Containers on a Windows Server 2022 machine. I noticed that each subsequent application instance consumes more memory than the previous ...
Vitalii Ivanov's user avatar
0 votes
0 answers
13 views

Memory Issue with Ray in Cluster Environment

I'm new to using Ray, and I've set up a workflow to read and process several .csv files using Pandas. Here's a snippet of my setup: with on_ray( num_cpus=6, object_store_memory=10 * 1024 * ...
Vgamero's user avatar
2 votes
1 answer
47 views

Tkinter canvas object tag_bind causing memory leak

If I monitor the Windows task manager while a program of mine is running, I see a memory usage number that goes up continuously. I wrote the attached code to demonstrate the problem. Once a tag_bind ...
agat's user avatar
  • 21
0 votes
0 answers
14 views

Geoserver EKS pod memory isssue [closed]

I am currently running Kartoza/GeoServer helm chart deployed to EKS(GeoServer version 2.24.0). We previously had a linux deployment in production and migrated to eks now. We're using EFS for data ...
Aditya Bhuvanraj's user avatar
1 vote
0 answers
46 views

Memory leak anxiety for SDL_ttf functions

I'm using SDL2 and SDL2_ttf libs in the code below. It runs OK for now but I'm anxious for leaking memory. Do I need to uncomment the commented lines and free the surface & texture pointers each ...
ssd's user avatar
  • 2,388
1 vote
1 answer
54 views

Memory / garbage collector issues with Java Spring service

I have a memory issue with a Java service (21) using the Spring framework (3.2.1). The service is quite simple. It exposes a REST endpoint. When this endpoint is called, the service makes an HTTP ...
SkyBlue's user avatar
  • 13
0 votes
0 answers
29 views

Mongo c driver cursor memory leak when iterating via cursor_next()

I am using the mongo-c-driver version 1.25.1 I have a process running inside a docker container which is using this driver. I am attempting to sync all collections from one database to another. I dont ...
cdevto's user avatar
  • 1
0 votes
0 answers
21 views

MaxListenersExceededWarning:Possible EventEmitter memory leak detected.11 close listeners added to [TLSSocket]

this is the error that i encounter whenever i try to install packages. how do i fix it? i am not an advanced developer so kindly be as descriptive as possible (node:6461) MaxListenersExceededWarning: ...
Imrana Sumbul's user avatar
1 vote
0 answers
35 views

Memory not released on skybox entity

So the issue is on realityView, I'm adding a skybox conditionally, since sometimes I don't want it to show anything, but when the view dismiss, the memory is not released.. everytime I change the ...
Zack Routin's user avatar
0 votes
0 answers
47 views

cAdvisor reports high WSS, but low RSS and cache memory usage

I observed the following cAdvisor memory metrics for a container deployed in Kubernetes Service on Azure and am struggling to come up with an explanation. It's a .NET 6 program running in the ...
scharnyw's user avatar
  • 2,634
-1 votes
1 answer
33 views

wxMathPlot plot freezes the system on resize

I have a plot created using wxMathplot library, at initial lunch the plot works perfect, but when I resize the window it stucks and the laptop freezes until I restart it, before the freeze, I noticed ...
Hzine's user avatar
  • 123
1 vote
1 answer
62 views

Valgrind is still showing memory is reachable with addrec() [closed]

The following code is for creating and managing hash table: hash.c: #include <stdio.h> #include <stdlib.h> #include "hash.h" typedef struct node { record_t rec; struct ...
bigmacBucky's user avatar
-1 votes
0 answers
39 views

MaxListenersExceededWarning: Possible EventEmitter memory leak detected - client fetch

I get the following error after navigating between two pages a couple of times. (node:14880) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 timeout listeners added to [...
Ank's user avatar
  • 181

15 30 50 per page
1
2 3 4 5
1365