Recent Posts

Curious Case of Python 2 and Integers

6 minute read

In Detecting Memory Leak in Python, scenarios were shown where python does not release memory when we created a huge list and then explicitly deleted it. The...

Site Wide Memory Leak: An On-Call Story

3 minute read

This happened a while back, sometime in the year of 2017. I was on-call for the week and it was the weekend. Usually, things are quiet over the weekends but ...

Serverless Meets CI/CD

less than 1 minute read

I have been attending LSPE [Large Scale Production Engineering] Meetup for last two years. And for the last one, I decided to give it back to the community. ...

Detecting Memory Leak in Python

5 minute read

In production, a memory leak will not always bubble up. And there could be multiple reasons behind it. You may not be getting enough traffic. Frequent deploy...