Prabhat Chouhanprabhatchouhan.hashnode.dev·Jan 20, 2025Scaling in CloudIn today’s digital landscape, cloud computing has revolutionized the way businesses operate, offering unparalleled flexibility, cost-efficiency, and scalability. Among these benefits, scalability stands out as a critical aspect, enabling organization...33 readsCloud
Milan Jovanovićmilanjovanovic.hashnode.dev·Jan 17, 2025Scaling Monoliths: A Practical Guide for Growing SystemsMonoliths get a bad rap in our industry. We're told they're legacy, that they don't scale, and that we need microservices to succeed. After spending many years scaling systems from startups to enterprises, I can tell you this isn't true. A well-desig...scaling
manjula dubeblogs.manjuladube.com·Jan 17, 2025Scaling your product: Vertical vs. Horizontal – What’s the Difference? 🚀1️⃣ Vertical Scaling (Scale Up)Vertical scaling means upgrading your existing servers to make them more powerful by adding resources like:🔹 More CPU cores to handle intensive tasks.🔹 Increased RAM for managing more users or larger workloads.🔹 Expa...scaling software
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Jan 1, 20253. Scaling and Scheduling Pods in Kubernetes: All About DaemonSetsWhat is a DaemonSet in Kubernetes? Think of a DaemonSet as a dedicated delivery system that ensures every stop on a route gets exactly what it needs. In Kubernetes, it guarantees that a specific pod runs on every node in your cluster (or a subset of ...Devops
Alpheus Godswillalpheus.hashnode.dev·Dec 28, 2024Scaling React Applications Seamlessly with Kubernetes: A DevOps GuideOverview Scaling React projects involves several challenges, from speed optimization to effective state management. Also, teams must adopt strong DevOps processes for efficient deployment and management. This article will examine the challenges in sc...33 readsKubernetes
Dhruv Moradiyadhruvmoradiya.hashnode.dev·Dec 15, 2024Day 68 - Scaling with Terraform 🚀Scaling infrastructure is a critical aspect of modern cloud-based application management. Today, we’ll focus on what scaling is, how Terraform simplifies the process, and why it is a crucial skill for cloud developers. By following the hands-on tasks...90DayofdevopsTerraform
Nahidnahidislam.hashnode.dev·Dec 13, 2024AWS Auto Scaling vs. Load Balancing: Understanding the Key DifferencesIn cloud computing, maintaining application performance and ensuring availability are critical goals. Two essential tools offered by AWS to achieve these goals are Auto Scaling and Load Balancing. While they often work together, they serve different ...awsload
Lawal Afeezafeez1131.hashnode.dev·Dec 6, 2024How a Simple Export Feature Turned Into a Performance Bottleneck and How We Scaled Past 20,000 RecordsEver faced a situation where a simple record exporting feature evolves into a full-blown performance nightmare? 🚨 Let me walk you through our journey of scaling challenges, a story that might hit close to home for many engineers. The Starting Point:...2 likes·27 readsDjango
Ruban Sahooruban.hashnode.dev·Dec 3, 2024Design a Blogging PlatformIn this blog, we will study the factors that get affected by any system design decision. We will understand it while we design a blogging platform. We will deep dive into caching issues at scale and how to solve them, async processing, delegation, ka...System Designdatabase
Sumit Kumarsumit01kr.hashnode.dev·Nov 24, 2024AWS Lambda and Fargate Scale differently. Read How!!Lambda:When a Lambda function gets invoked it starts a small container, loads our code, and executes it. It happens every time the function is triggered or invoked.For each concurrent execution lambda creates a new container with the same code. No tw...AWS