Skip to content Skip to sidebar Skip to footer
Showing posts with the label Memory Leaks

Memory Profiler For Google Cloud Function?

I'm running a Google cloud function and getting out-of-memory error: Error: memory limit exceed… Read more Memory Profiler For Google Cloud Function?

Is It Possible To Monitor Copy On Write For Forked Linux Processes? (specifically Python)

I have a set of python processes that share a large object (sharing is done by forking the processe… Read more Is It Possible To Monitor Copy On Write For Forked Linux Processes? (specifically Python)

Why Can't Objgraph Capture The Growth Of Np.array()?

See the code: import objgraph import numpy as np objgraph.show_growth() j = 20 y = [] for i in rang… Read more Why Can't Objgraph Capture The Growth Of Np.array()?

Why Does Not Django Release Fetched Db Objects?

I have very simple django app: models.py: class Product(models.Model): name = models.CharFi… Read more Why Does Not Django Release Fetched Db Objects?

Python Memory Leak Using Binascii, Zlib, Struct, And Numpy

I have a python script which is processing a large amount of data from compressed ASCII. After a s… Read more Python Memory Leak Using Binascii, Zlib, Struct, And Numpy