Tag

Round Robin

0 views collected around this technical thread.

FunTester
FunTester
May 26, 2025 · Backend Development

Thread‑Safe Round Robin Load Balancer Using Java AtomicInteger

This article explains how to implement a thread‑safe round‑robin load balancer in Java using AtomicInteger, discusses its advantages and limitations, provides sample code for single‑thread and multithreaded scenarios, and suggests further optimizations such as health checks, weighted routing, and dynamic server updates.

AtomicIntegerBackendJava
0 likes · 11 min read
Thread‑Safe Round Robin Load Balancer Using Java AtomicInteger
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Nov 27, 2024 · Backend Development

Comprehensive Guide to Nginx Load Balancing and Algorithms

This article provides an in‑depth overview of Nginx as a high‑performance load‑balancing middleware, explaining its core concepts, configuration syntax, and the four main balancing algorithms—Round Robin, Weighted Round Robin, IP Hash, and Least Connections—along with practical code examples.

Load BalancingNginxRound Robin
0 likes · 4 min read
Comprehensive Guide to Nginx Load Balancing and Algorithms
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Apr 2, 2024 · Backend Development

Five Common Nginx Load Balancing Strategies Explained

This article introduces and details five widely used Nginx load‑balancing algorithms—Round Robin, IP Hash, Least Connections, Weighted, and Weighted Round Robin—explaining their principles, configuration examples, and typical application scenarios for backend services.

Load BalancingNginxRound Robin
0 likes · 5 min read
Five Common Nginx Load Balancing Strategies Explained
Architecture & Thinking
Architecture & Thinking
Mar 14, 2024 · Backend Development

Mastering Load Balancing: Which Strategy Suits Your System?

This article explains the role of load balancing in distributed systems and details five common strategies—Round Robin, Weighted Round Robin, IP Hash, Least Connections, and Least Response Time—highlighting their mechanisms, advantages, drawbacks, and suitable scenarios for optimal system performance.

Load BalancingRound Robinip_hash
0 likes · 9 min read
Mastering Load Balancing: Which Strategy Suits Your System?
IT Services Circle
IT Services Circle
Sep 18, 2023 · Fundamentals

DNS Load Balancing: Mapping One Domain to Multiple IPs and Resolution Strategies

The article explains how DNS load balancing enables a single domain name to resolve to multiple IP addresses, describes common DNS resolution strategies such as round‑robin, weighted, and response‑time, and outlines the advantages and limitations of using DNS for load distribution.

DNSDomainLoad Balancing
0 likes · 6 min read
DNS Load Balancing: Mapping One Domain to Multiple IPs and Resolution Strategies
HelloTech
HelloTech
Nov 15, 2022 · Backend Development

Investigation of Elasticsearch RestClient Load‑Balancing and Traffic Skew Issues

The investigation revealed that Elasticsearch RestClient’s built‑in round‑robin and dead‑node blacklisting redirected traffic from failed data‑node addresses—mistakenly included in the static IP list—onto a single client node, causing severe load imbalance and timeouts, which were eliminated after correcting the IP list.

ElasticsearchJava ClientLoad Balancing
0 likes · 17 min read
Investigation of Elasticsearch RestClient Load‑Balancing and Traffic Skew Issues
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Oct 23, 2022 · Backend Development

Five Core Load Balancing Algorithms Explained

This article introduces the essential concept of load balancing in distributed systems and provides a detailed overview of five fundamental algorithms—Round Robin, Weighted Round Robin, Random, Least Connections, and Source IP Hash—explaining their mechanisms and suitable scenarios.

BackendHashingLoad Balancing
0 likes · 4 min read
Five Core Load Balancing Algorithms Explained
360 Zhihui Cloud Developer
360 Zhihui Cloud Developer
Dec 10, 2019 · Backend Development

Build a Simple Go Load Balancer with Round‑Robin and Health Checks

This article walks through building a simple Go load balancer using round‑robin distribution, reverse proxy, atomic indexing, health checks, and concurrency‑safe data structures, providing complete code examples and explanations for each component.

GoReverse ProxyRound Robin
0 likes · 12 min read
Build a Simple Go Load Balancer with Round‑Robin and Health Checks
Architecture Digest
Architecture Digest
Apr 17, 2017 · Backend Development

Java Load Balancing Algorithms: Round Robin, Random, Source‑IP Hash, Weighted Round Robin, Weighted Random, and Least Connections

This article explains the concept of load balancing and provides Java implementations of several common algorithms—including Round Robin, Random, Source‑IP Hash, Weighted Round Robin, Weighted Random, and a discussion of Least Connections—highlighting their principles, advantages, drawbacks, and concurrency considerations.

BackendJavaLoad Balancing
0 likes · 14 min read
Java Load Balancing Algorithms: Round Robin, Random, Source‑IP Hash, Weighted Round Robin, Weighted Random, and Least Connections
Architecture Digest
Architecture Digest
Apr 16, 2017 · Operations

Common Load‑Balancing Strategies and Their Reliability Analysis in Distributed Systems

The article reviews hardware and software load‑balancing, explains classic strategies such as round‑robin, random, minimum‑response‑time, least‑connections and hash, and quantitatively evaluates their fault‑tolerance using probability formulas and example scenarios in distributed systems.

Load BalancingRound Robindistributed systems
0 likes · 10 min read
Common Load‑Balancing Strategies and Their Reliability Analysis in Distributed Systems
Practical DevOps Architecture
Practical DevOps Architecture
Mar 20, 2015 · Operations

Common Load Balancing Algorithms and Their Characteristics

This article explains various load‑balancing scheduling algorithms—including Round Robin, Weighted Round Robin, Least Connection, Weighted Least Connection, Adaptive Agent‑Based balancing, Fixed Weighted, Weighted Response, and Source IP Hash—detailing how each distributes traffic and handles server capacity differences.

Load BalancingRound Robinleast connection
0 likes · 7 min read
Common Load Balancing Algorithms and Their Characteristics