Skip to main content

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.

1 vote
2 answers
25 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
16 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
9 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
0 votes
0 answers
25 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
28 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
30 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
61 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
0 votes
0 answers
24 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
  • 183
1 vote
0 answers
21 views

Huge memory consumption when iterating systemd journal

Dear community, here are the story description and 2 questions: I'm trying to fix significant memory consumption in a systemd (--version is 250) journal forwarding application. Our application is ...
user3518295's user avatar
0 votes
1 answer
51 views

Jemalloc with java on Mac

trying to load jemalloc for java program to find native memory leak ,but unable to get it worked. Steps performed so far versions : Mac OS 14.3 , JDK 11 , jemalloc - 5.3.0 1.Installed jemalloc via ...
prasannajoshi's user avatar
0 votes
1 answer
45 views

Using _CrtDumpMemoryLeaks to detect memory leaks in C++ DLL

Our C# code is calling an unmanaged C++ DLL. I want to have the ability to catch all unmanaged memory leaks that may occur while we're using the unmanaged code. May I call _CrtSetDbgFlag at the ...
eugen_nw's user avatar
  • 147
0 votes
0 answers
38 views

Chrome takes up unproportioned memory in web app

I have a web app I am developing using Angular 14, and I've had windows task manager open while I was using it. I've noticed the memory that chrome is using is somewhere around 1.5GB (with only my app'...
Eric Krief's user avatar
-3 votes
0 answers
33 views

Are the following dynamic slices garbage collected in go?

In the following simplified code, are the pipe.stats automatically deallocated when a new pipe is created? package main var pipe = &Pipe{} type Stat struct { Counter int } type Pipe struct {...
Dibom's user avatar
  • 55
1 vote
0 answers
22 views

Unity Editor never releasing memory

I've been working on my unity project, and this happened: So, my project has some Recursive functions, since it is about making a chess engine(rule-based AI). And when I test it out, I find my memory ...
E_ple's user avatar
  • 35
0 votes
0 answers
22 views

Why Chrome tab memory keeps growing and heap size stays the same until it runs out of memory?

I tried to analyze the memory snapshot using chrome memory tool, As well as trying to use the performance analysis tool, so far I have not found the reason, is it possible to debug the contents of ...
Zoe Lee's user avatar

15 30 50 per page
1
2 3 4 5
1365