Tagged articles

client-side load balancing

3 articles · Page 1 of 1
CodeSmart Hoops
CodeSmart Hoops
Sep 9, 2026 · Interview Experience

Spring Cloud LoadBalancer: 8 Classic Interview Questions with Deep-Dive Answers

This article presents eight detailed interview questions covering Spring Cloud LoadBalancer internals, including Ribbon migration reasons, client vs server load balancing, OpenFeign call chain, LoadBalancerClientFactory child contexts, ServiceInstanceListSupplier decorator chain, smooth weighted round-robin algorithm, consistent hashing with virtual nodes, and troubleshooting Connection refused errors after instance shutdown.

NacosOpenFeignRibbon
0 likes · 24 min read
Spring Cloud LoadBalancer: 8 Classic Interview Questions with Deep-Dive Answers
Java Architect Handbook
Java Architect Handbook
Jun 6, 2026 · Backend Development

Spring Cloud LoadBalancer vs Ribbon: Key Differences and Why Ribbon Was Replaced

The article explains the functional and architectural differences between Spring Cloud LoadBalancer and Netflix Ribbon, why Ribbon entered maintenance mode and was replaced, outlines migration steps, compares configuration, caching, reactive support, and provides code examples and common interview questions for Java developers.

JavaLoadBalancerRibbon
0 likes · 12 min read
Spring Cloud LoadBalancer vs Ribbon: Key Differences and Why Ribbon Was Replaced
Lobster Programming
Lobster Programming
Dec 8, 2025 · Backend Development

How Netflix Ribbon Implements Client‑Side Load Balancing in Java

This article explains Netflix's open‑source Ribbon client‑side load balancer, detailing how it intercepts @LoadBalanced RestTemplate calls, resolves service names to IPs using various algorithms, and forwards requests via HttpClient, while highlighting its key features such as in‑process balancing, multiple strategies, fault‑tolerance, and protocol support.

JavaRestTemplateRibbon
0 likes · 4 min read
How Netflix Ribbon Implements Client‑Side Load Balancing in Java