8 Weeks Cassandra Workshop Series
Ending Aug 19
Great way to learn Cassandra. Excellent presentations, code walkthroughs, all aspects of cassandra
Memory Leaks in Python
-
Take snapshots and compare
start=tracemalloc.take_snapshot()
current = tracemalloc.take_snapshot()
stats = current.compare_to(start, ‘filename’)
for i, stat in enumerate(stats[:5], 1):
logging.info(“since_start”, i=i, stat=str(stat))
-
tracemalloc provides a way to view a stack trace for any memory allocation
current.statistics('traceback')
-
Instrument code with trace_leak()
Finding and Fixing Memory Leaks in Python
17 Jan 2019