the_OldSchool_coderthe-os-coder.hashnode.dev·Dec 23, 2024All About Backend Development: A Comprehensive Guide for Aspiring DevelopersBackend development is the backbone of modern applications, ensuring functionality, scalability, and security. In this guide, we delve into everything you need to know about backend development, including: The role of the backend in web and mobile a...Beginner Developers
Dhadve Yashnimbusnotes.hashnode.dev·Dec 22, 2024Scaling websockets to million connectionsUnderstanding how to scale Scaling a websocket is a hard task compared to http, as the connections are persistent in websocket and we cannot share the same connection between 2 different servers. Like in http we can just create many instances of our ...chat app based on microservicesgolang
Rudraksh Laddharudrakshladdha.hashnode.dev·Dec 22, 2024The Magic of Multi-Node Kubernetes Setup: Organizing Your ResourcesImagine you have a basket full of diverse food items. If someone asks for the smallest fruit, you might have to dig through the entire basket to find it, which takes time. But if you organize the items into separate baskets—one for fruits, another fo...Kubernetes
Aakashi Jaiswalaakashi.hashnode.dev·Dec 22, 2024Maximize Efficiency and Minimize Costs: The Magic of Virtualization!What is I/O Virtualization? I/O virtualization is a technology that abstracts and manages input/output resources in a computing environment. It allows multiple virtual machines (VMs) to share physical I/O devices, such as network cards and storage de...Cloud
Mustufa khancoder-class.hashnode.dev·Dec 22, 2024Scaling Java Microservices: Lessons Learned from Building Cloud-Native SolutionsIn today’s fast-paced world, where applications need to handle millions of requests per second while maintaining near-zero downtime, designing scalable and robust microservices is both an art and a science. Drawing from my experiences as a software e...Java
LakshmiPerumalmalalakshmi.hashnode.dev·Dec 21, 2024Spring Boot MicroServices kubernates tutorial - deploy to KubernatesNormally, we create Docker images using Dockerfiles. This involves creating a Dockerfile, providing the necessary information, and then running the docker build -d command to automatically generate Docker images. However, creating and maintaining Doc...Kubernetes
LakshmiPerumalmalalakshmi.hashnode.dev·Dec 21, 2024Spring Boot 3 Observability with Grafana Stack - OrdersIn this blog post - Spring Boot 3 Observability with Grafana Stack, we will learn how to implement Observability in our Spring Boot applications using Grafana Stack which comprises Grafana, Loki, and Tempo. What is Observability? In a nutshell, Obser...Java
LakshmiPerumalmalalakshmi.hashnode.dev·Dec 21, 2024Spring Boot 3 Observability with Grafana StackIn this blog post - Spring Boot 3 Observability with Grafana Stack, we will learn how to implement Observability in our Spring Boot applications using Grafana Stack which comprises Grafana, Loki, and Tempo. What is Observability? In a nutshell, Obse...Java
Puneet Chhabrapuneetchhabra.hashnode.dev·Dec 20, 2024Designing and Implementing a Scalable Notification SystemDesigning and implementing a notification system that can send various types of notifications (e.g., email, SMS, push notifications) based on user preferences. Project demonstration video: https://www.youtube.com/watch?v=UB79MBRyXrQ . It is recommend...Java
JealousGxblog.jealous.dev·Dec 17, 2024Building Scalable Microservices with Golang: Best Practices and Design TipsIn the world of modern software architecture, microservices have emerged as a game-changer. The need to break away from monolithic, monolithic applications has never been more pressing. But as we embrace microservices, the question becomes: How do we...golang