Contribute Media
A thank you to everyone who makes this possible: Read More

Dissecting memory mysteries of Python

Summary

Memory leak has been perennial problem for Python applications. This causes application to behave erroneously with Memory error and very slow operation. What is wrong with the application? How to find out the cause and fix it? This is the motivation for this talk.

Description

@ Kiwi PyCon 2013 - Saturday, 07 Sep 2013 - Track 2

Audience level

Intermediate

Abstract

Python is a dynamically typed language. Applications leave task of object memory management to Python VM. Python automatically manages memory using reference counting and garbage collection. But, Python memory manager may bloat the VM size, and sometimes it may consume complete main memory. It causes applications to deliver low performance and encounter unexpected memory errors.

This talk dissects the internals of CPython memory manager, its limitations and negative impact on application behavior. We demonstrate the problem of memory leaks by learning Python heap pattern, object graphs and memory profiling. Next, we suggest solutions to reduce memory footprints of applications, tools to diagnose and fix memory leaks and lesson learned as best development practices.

Slides

https://speakerdeck.com/nzpug/vishal-kanaujia-dissecting-memory-mysteries-of-python

Improve this page