pymemtrace
pymemtrace copied to clipboard
Python memory tracing.
Introduction
pymemtrace provides tools for tracking and understanding Python memory usage at different levels, at different
granularities and with different runtime costs.
Full documentation: https://pymemtrace.readthedocs.io
pymemtrace Tools
The tools provided by pymemtrace:
processis a very lightweight way of logging the total memory usage at regular time intervals. It can plot memory over time with plotting programs such asgnuplot. Seesome process examples <https://pymemtrace.readthedocs.io/en/latest/examples/process.html>_cPyMemTraceis a memory tracer written in C that can report total memory usage for every function call/return for both C and Python sections. See somecPyMemTrace examples <https://pymemtrace.readthedocs.io/en/latest/examples/c_py_mem_trace.html>_ and atechnical note on cPyMemTrace <https://pymemtrace.readthedocs.io/en/latest/tech_notes/cPyMemTrace.html>_.- DTrace: Here are a number of D scripts that can trace the low level
malloc()andfree()system calls and report how much memory was allocated and by whom. See someDTrace examples <https://pymemtrace.readthedocs.io/en/latest/examples/dtrace.html>_ and atechnical note on DTrace <https://pymemtrace.readthedocs.io/en/latest/tech_notes/dtrace.html>_. trace_mallocis a convenience wrapper around the Python standard librarytracemallocmodule. This can report Python memory usage by module and line compensating for the cost oftracemalloc. This can take memory snapshots before and after code blocks and show the change on memory caused by that code. See sometrace_malloc examples <https://pymemtrace.readthedocs.io/en/latest/examples/trace_malloc.html>_debug_malloc_statsis a wrapper around thesys._debugmallocstatsfunction that can take snapshots of memory before and after code execution and report the significant differences of the Python small object allocator. See somedebug_malloc_stats examples <https://pymemtrace.readthedocs.io/en/latest/examples/debug_malloc_stats.html>_
Tool Characteristics
Each tool can be characterised by:
- Memory Granularity: In how much detail is a memory change is observed.
An example of coarse memory granularity is measuring the
Resident Set Size <https://en.wikipedia.org/wiki/Resident_set_size>_ which is normally in chunks of 4096 bytes. An example of fine memory granularity is recording everymalloc()andfree(). - Execution Granularity: In how much code detail is the memory change observed. An example of coarse execution granularity is measuring the memory usage every second. An example of fine execution granularity is recording the memory usage every Python line.
- Memory Cost: How much extra memory the tool needs.
- Execution Cost: How much the execution time is increased.
Clearly there are trade-offs between these depending on the problem you are trying to solve.
.. list-table:: Tool Characteristics :widths: 15 30 30 30 30 :header-rows: 1
-
- Tool
- Memory Granularity
- Execution Granularity
- Memory Cost
- Execution Cost
-
process- RSS (total Python and C memory).
- Regular time intervals.
- Near zero.
- Near zero.
-
cPyMemTrace- RSS (total Python and C memory).
- Per Python line, Python function and C function call.
- Near zero.
- x10 to x20.
-
- DTrace
- Every
malloc()andfree(). - Per function call and return.
- Minimal.
- x90 to x100.
-
trace_malloc- Every Python object.
- Per Python line, per function call.
- Significant but compensated.
- x900 for small objects, x6 for large objects.
-
debug_malloc_stats- Python memory pool.
- Snapshots the CPython memory pool either side of a block of code.
- Minimal.
- x2000+ for small objects, x12 for large objects.
Package Metadata
.. image:: https://img.shields.io/pypi/v/pymemtrace.svg :target: https://pypi.python.org/pypi/pymemtrace
.. image:: https://img.shields.io/travis/paulross/pymemtrace.svg :target: https://travis-ci.org/paulross/pymemtrace
.. image:: https://readthedocs.org/projects/pymemtrace/badge/?version=latest :target: https://pymemtrace.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
.. image:: https://pyup.io/repos/github/paulross/pymemtrace/shield.svg :target: https://pyup.io/repos/github/paulross/pymemtrace/ :alt: Updates
Licence
Python memory tracing.
- Free software: MIT license
- Documentation: https://pymemtrace.readthedocs.io.
- Project: https://github.com/paulross/pymemtrace.
Credits
Phil Smith (AHL) with whom a casual lunch time chat lead to the creation of an earlier, but quite different
implementation, of cPyMemTrace in pure Python.
This package was created with Cookiecutter_ and the audreyr/cookiecutter-pypackage_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _audreyr/cookiecutter-pypackage: https://github.com/audreyr/cookiecutter-pypackage