Skip to main content
Filter by
Sorted by
Tagged with
6 votes
1 answer
2k views

I have java(spring boot framework version: 2.7.11 & open jdk:11) based microservice. When this microservice is not serving any requests, each pod of the microservice is using about 470MB. We have ...
0 votes
3 answers
9k views

I'm having memory problem as working with very large dataset and getting memory leaks with char[] and Strings, don't know why! So I am thinking of writing some processed data in a file and not store ...
0 votes
1 answer
102 views

I'm working with a Vue 3 component that plays videos using the native tag. I dynamically change the src of the video based on a prop (videoName) and I need to avoid memory leaks. Despite cleaning up ...
4 votes
1 answer
12k views

I've created a simple Angular app with one Form and a Table (PrimeNg DataTable). Just to get a substantial difference in memory utilization with initial and final readings, I performed multiple Form ...
1 vote
0 answers
57 views

We're experiencing a consistent 1-1.5 second delay in our Angular SSR v20.2.2 application that occurs after all Angular rendering completes but before the response is sent to the client. The delay ...
2 votes
1 answer
23k views

I am use spring boot maven project and implement @async for multi-threading request processing but i get below error: java.lang.OutOfMemoryError: Java heap space 2020-07-13 17:04:15.752 Unexpected ...
12 votes
1 answer
5k views

I'm trying to figure out exactly how to get which variable is referencing something in a detached DOM tree. I've isolated the problem down to two simple views, and I'm trying to use Chrome Dev Tools (...
0 votes
1 answer
147 views

I am currently working on a .NET 9 WinForms program that contains an ImageViewer, which is a seperate window where you can scroll through a series of images. My problem is that even after closing the ...
0 votes
1 answer
120 views

I have a jupyter notebook running on the kernel opt/conda/bin/python in my Google Compute Engine machine (Debian). The first cell of my notebook loads image data from the disk and saves it in the ...
0 votes
0 answers
35 views

So i have a very relatively simple java application spring 2.3.7 on java 8 that microservice simply calls DB to save update or retrive base64 image string thats all. So i have deployed that in my ...
6 votes
2 answers
6k views

I'm running Puppeteer script both on my Amazon Linux EC2 Instance and my Macbook Air (OSX). The script has to stay in tact at one page and repeatedly perform form-filling tasks over and over again. I'...
18 votes
4 answers
8k views

Using objgraph, I found a bunch of objects like this: Will Python's garbage collector deal with cycles like this, or will it leak? A slightly wider view of the loop:
0 votes
1 answer
575 views

When UIAlertView is shown in iOS 6.1.2, the app gets memory leaks like the following: __NSDictionaryM 1 0x1e5c6000 32 Bytes TextInput __92-[TIResourcePathManager fetchAssetsWithNames:...
3 votes
1 answer
98 views

While writing a new Perl module which was capable of using AnyEvent, my benchmarking tests showed that it was slowing down dramatically over time. Turning off AnyEvent cured the problem, which ...
1 vote
0 answers
59 views

I'm running a minimal Python Flask app with one API endpoint which make a simple call to retrieve data from the a Cassandra Datastax DB inside a for loop. # Day-2-Day Power @app.route("/d2d_new_2/...
7 votes
7 answers
5k views

A follow-up question to Memory leaks when calling ITK from Visual Studio DLL I refined the problem to the simplest example. struct A { public: A() { mp_data = new int(0x42); ...
5 votes
3 answers
10k views

My app needs to take a large array of nested instances of map[string]interface{} and turn them into flattened maps. For example: { "foo": { "jim"...
51 votes
1 answer
19k views

I have a basic knowledge of memory leaks and what can cause them. That's why I don't understand if I have a problem in my code or is it a false positive. I don't know which part of the code I should ...
0 votes
1 answer
476 views

I'm converting some old C++ code to use shared_ptr, unique_ptr and weak_ptr, and I keep running into design problems. I have "generator" methods that return new objects, and accessor methods that ...
40 votes
8 answers
17k views

I would like to understand what kind of code causes memory leaks in JavaScript and created the script below. However, when I run the script in Safari 6.0.4 on OS X the memory consumption shown in the ...
2 votes
1 answer
182 views

I have faced a matplotlib memory leakage problem while working on my python project that I can't solve. Nothing I found regarding this problem helped. Here is a very simplified script causing ...
4 votes
3 answers
9k views

I have tried finding memory leaks in my vue app. I have used chrome dev tools memory heap snap shot for that. But I was not able to find any. I tried looking for tutorials or videos on youtube and ...
1 vote
1 answer
166 views

I have encountered a memory management problem in a Spring Boot application, and would like to get advice on how to properly clean up direct memory. Configuration: JDK: OpenJDK Runtime Environment (...
0 votes
2 answers
264 views

I encountered a strange problem when analyzing memory leaks in windbg... Memory was lost... !address -summary shows MEM_COMMIT = 3.3G 0:048> !address -summary ...
0 votes
3 answers
2k views

Running a single script with only two users as a single scenario without any pacing, just think time set to 3 seconds and random (50%-150%) I experience that the web app server runs of of memory after ...

1
2 3 4 5
410