Setting Up a Robust PostgreSQL High-Availability Cluster on Azure

Setting Up a Robust PostgreSQL High-Availability Cluster on Azure Are you looking to deploy a production-ready PostgreSQL cluster on Azure? This guide will walk you through setting up a highly available PostgreSQL environment. I’ve spent countless hours testing these configurations, and I’m excited to share what actually works in the real world. Understanding Your Options When setting up PostgreSQL on Azure, you have several deployment options: Production Features High availability with automatic failover Zone-redundant or same-zone replicas Advanced monitoring and alerting Flexible compute resources Comprehensive storage options 1....

January 30, 2025 · 6 min · Hemant Kumar

Building a scalable backend service with Node.js, TypeScript, PostgreSQL and Docker

Introduction I built a Nodejs project over the weekend. Just thought I’d share and guide others with the design and build process of a scalable backend service with Node.js, TypeScript, Nginx and Docker without using any existing Nodejs frameworks. I used the find-my-way router to implement a REST API. And for the database, I’m using PostgreSQL because it’s reliable and scalable relational database. The aim was to build a backend service that can handle thousands of requests per second without any performance degradation....

April 20, 2022 · 6 min · Hemant Kumar