When was the last time when one of yours K8s master went down and what did you do about it and also do we know why did the k8s master went down. In this blog post, we will go through one of the same scenarios which happened within our k8s cluster and understand the details … Continue reading Things to do: K8s Master going down
Category: Uncategorized
Whitelisting IPs with NGINX Ingress K8s
Understand how to whitelist IPs with NGINX via Ingress Objects and securing your kubernetes infrastructure
High Number of Postgres Connections with Play + Slick
In this post, we will go through one of the recent interesting scenarios which we faced while debugging high number of postgres connections. Recently i started looking into pg_stat_activity to have a better understanding about the queries which were taking up a lot of time on postgres. For people thinking what is pg_stat_activity, it is … Continue reading High Number of Postgres Connections with Play + Slick
Improving Software Development with Learnings from LSMs
How can one improve the software development process in a startup where the time to delivery of a feature is of utmost importance. Lets understand how we improve the feature development process by applying some learnings from LSMs
READ Committed Isolation Level in Postgres
One of the interesting issues which happened on our development enviornments on postgres servers
Improving Software design through Execution Flows
In this blog post, lets understand how one can leverage execution flow between the classes in a software to improve the design of the softwares
Scala Futures in Detail – Part 1
In this blog post, lets understand the basic differences between synchronous and asynchronous computations.
Scala Futures in Detail – Part 2
In this blog post, we will build a deep understanding about how are scala futures implemented and how are other operations on scala futures implemented