DEV Community

Sandeep Vishnu
Sandeep Vishnu

Posted on

๐Ÿ—๏ธ Building a Simple Load Balancer with Spring Boot: A Step-by-Step Guide

In today's microservices architecture, load balancers play a crucial role in distributing traffic across multiple service instances. This article will walk you through building a simple yet functional load balancer using Spring Boot, complete with health checking and round-robin load distribution.

Project Overview ๐Ÿ“‹

Our load balancer implementation consists of three main components:

  1. Load Balancer Serviceย โš–๏ธ: The core component that handles request distribution
  2. API Serviceย ๐Ÿ”Œ: Multiple instances of a demo service that will receive the distributed traffic
  3. Common Moduleย ๐Ÿ“ฆ: Shared DTOs and utilities

The complete project uses Spring Boot 3.2.0 and Java 21 โ˜•, showcasing modern Java features and enterprise-grade patterns.

Architecture ๐Ÿ—๏ธ

Here's a high-level view of our system architecture:

High-level view of our system architecture

The system works as follows:

  1. Clients send requests to the load balancer on port 8080 ๐Ÿ“ก
  2. The load balancer maintains a pool of healthy API services ๐ŸŠ
  3. API services send heartbeat messages every 5 seconds to register themselves ๐Ÿ’—
  4. The Health Check Service monitors service health and removes unresponsive instances ๐Ÿฅ
  5. The Load Balancer Service distributes incoming requests across healthy instances using round-robin ๐Ÿ”„
  6. Each API service runs on a different port (8081-8085) and processes the forwarded requests ๐Ÿ”Œ

Let's dive into each component in detail.

Implementation ๐Ÿ’ป

1. Common DTOs ๐Ÿ“

First, let's look at our shared data structures. These are used for communication between services:

// HeartbeatRequest.java
public record HeartbeatRequest(
        String serviceId,
        String host,
        int port,
        String status,
        long timestamp
) {}

// HeartbeatResponse.java
public record HeartbeatResponse(
        boolean acknowledged,
        String message,
        long timestamp
) {}
Enter fullscreen mode Exit fullscreen mode

2. Service Node Model ๐Ÿข

The load balancer keeps track of service instances using the ServiceNode record:

public record ServiceNode(
        String serviceId,
        String host,
        int port,
        boolean healthy,
        Instant lastHeartbeat
) {}
Enter fullscreen mode Exit fullscreen mode

3. Load Balancer Service โš–๏ธ

The core load balancing logic is implemented in LoadBalancerService:

@Service
public class LoadBalancerService {
    private final ConcurrentHashMap<String, ServiceNode> serviceNodes = new ConcurrentHashMap<>();
    private final AtomicInteger currentNodeIndex = new AtomicInteger(0);

    public void registerNode(ServiceNode node) {
        serviceNodes.put(node.serviceId(), node);
    }

    public void removeNode(String serviceId) {
        serviceNodes.remove(serviceId);
    }

    public ServiceNode getNextAvailableNode() {
        List<ServiceNode> healthyNodes = serviceNodes.values().stream()
                .filter(ServiceNode::healthy)
                .toList();

        if (healthyNodes.isEmpty()) {
            throw new IllegalStateException("No healthy nodes available");
        }

        int index = currentNodeIndex.getAndIncrement() % healthyNodes.size();
        return healthyNodes.get(index);
    }

    public List<ServiceNode> getAllNodes() {
        return new ArrayList<>(serviceNodes.values());
    }
}
Enter fullscreen mode Exit fullscreen mode

4. Health Check Service ๐Ÿฅ

The HealthCheckService manages service registration and health monitoring:

@Service
@Slf4j
public class HealthCheckService {
    private final LoadBalancerService loadBalancerService;
    private static final long HEALTH_CHECK_TIMEOUT_SECONDS = 30;

    public HealthCheckService(LoadBalancerService loadBalancerService) {
        this.loadBalancerService = loadBalancerService;
    }

    public HeartbeatResponse processHeartbeat(HeartbeatRequest request) {
        ServiceNode node = new ServiceNode(
                request.serviceId(),
                request.host(),
                request.port(),
                true,
                Instant.now()
        );
        loadBalancerService.registerNode(node);

        return new HeartbeatResponse(true, "Heartbeat acknowledged",
                Instant.now().toEpochMilli());
    }

    @Scheduled(fixedRate = 10000)// Check every 10 seconds
    public void checkNodeHealth() {
        Instant threshold = Instant.now().minus(HEALTH_CHECK_TIMEOUT_SECONDS,
                ChronoUnit.SECONDS);

        loadBalancerService.getAllNodes().stream()
                .filter(node -> node.lastHeartbeat().isBefore(threshold))
                .forEach(node -> loadBalancerService.removeNode(node.serviceId()));
    }
}
Enter fullscreen mode Exit fullscreen mode

5. Proxy Controller ๐Ÿ”„

The ProxyController handles incoming requests and forwards them to the appropriate service:

@Slf4j
@RestController
public class ProxyController {
    private final LoadBalancerService loadBalancerService;
    private final HealthCheckService healthCheckService;
    private final RestTemplate restTemplate;

    @PostMapping("/heartbeat")
    public HeartbeatResponse handleHeartbeat(@RequestBody HeartbeatRequest request) {
        return healthCheckService.processHeartbeat(request);
    }

    @RequestMapping(value = "/**")
    public ResponseEntity<?> proxyRequest(HttpServletRequest request)
            throws URISyntaxException, IOException {
        var node = loadBalancerService.getNextAvailableNode();
        String targetUrl = String.format("http://%s:%d%s",
                node.host(),
                node.port(),
                request.getRequestURI()
        );

// Copy headers
        HttpHeaders headers = new HttpHeaders();
        Enumeration<String> headerNames = request.getHeaderNames();
        while (headerNames.hasMoreElements()) {
            String headerName = headerNames.nextElement();
            headers.addAll(headerName,
                    Collections.list(request.getHeaders(headerName)));
        }

// Forward the request
        ResponseEntity<String> response = restTemplate.exchange(
                new URI(targetUrl),
                HttpMethod.valueOf(request.getMethod()),
                new HttpEntity<>(StreamUtils.copyToByteArray(
                        request.getInputStream()), headers),
                String.class
        );

        return new ResponseEntity<>(response.getBody(),
                response.getHeaders(),
                response.getStatusCode());
    }
}
Enter fullscreen mode Exit fullscreen mode

6. API Service Implementation ๐Ÿ”Œ

The API service includes a heartbeat configuration to register with the load balancer:

@Slf4j
@Component
public class HeartbeatConfig {
    private final RestTemplate restTemplate;
    private final String serviceId = UUID.randomUUID().toString();

    @Value("${server.port}")
    private int serverPort;

    @Value("${loadbalancer.url}")
    private String loadBalancerUrl;

    @Scheduled(fixedRate = 5000)// Send heartbeat every 5 seconds
    public void sendHeartbeat() {
        try {
            String hostname = InetAddress.getLocalHost().getHostName();

            var request = new HeartbeatRequest(
                    serviceId,
                    hostname,
                    serverPort,
                    "UP",
                    Instant.now().toEpochMilli()
            );

            restTemplate.postForObject(
                    loadBalancerUrl + "/heartbeat",
                    request,
                    void.class
            );

            log.info("Heartbeat sent successfully to {}", loadBalancerUrl);
        } catch (Exception e) {
            log.error("Failed to send heartbeat: {}", e.getMessage());
        }
    }
}

Enter fullscreen mode Exit fullscreen mode

Deployment with Docker Compose ๐Ÿณ

The project includes Docker support for easy deployment. Here's a snippet from the docker-compose.yml:

services:
  load-balancer:
    build:
      context: .
      dockerfile: load-balancer/Dockerfile
    ports:
      - "8080:8080"
    networks:
      - app-network

  api-service-1:
    build:
      context: .
      dockerfile: api-service/Dockerfile
    environment:
      - SERVER_PORT=8081
      - LOADBALANCER_URL=http://load-balancer:8080
    networks:
      - app-network

  api-service-2:
    build:
      context: .
      dockerfile: api-service/Dockerfile
    environment:
      - SERVER_PORT=8082
      - LOADBALANCER_URL=http://load-balancer:8080
    networks:
      - app-network

networks:
  app-network:
    driver: bridge
Enter fullscreen mode Exit fullscreen mode

Key Features โœจ

  1. Round-Robin Load Balancing ๐Ÿ”„: Requests are distributed evenly across healthy service instances
  2. Health Checking ๐Ÿฅ: Regular heartbeat monitoring ensures only healthy instances receive traffic
  3. Dynamic Service Registration ๐Ÿ“: Services can join or leave the cluster at any time
  4. Request Forwarding ๐Ÿ“จ: All HTTP methods and headers are properly forwarded
  5. Docker Support ๐Ÿณ: Easy deployment with Docker Compose
  6. Modular Design ๐Ÿงฉ: Clean separation of concerns with distinct modules

Testing the Load Balancer ๐Ÿงช

To test the load balancer:

  1. Start the system using Docker Compose:
docker-compose up --build
Enter fullscreen mode Exit fullscreen mode
  1. Send requests to the load balancer (port 8080):
curl http://localhost:8080/api/demo
Enter fullscreen mode Exit fullscreen mode

You should see responses from different service instances as the load balancer distributes the requests. ๐Ÿ”„

Monitoring and Metrics ๐Ÿ“Š

The application includes Spring Boot Actuator endpoints for monitoring:

management:
  endpoints:
    web:
      exposure:
        include: health,info,metrics
  endpoint:
    health:
      show-details: always
Enter fullscreen mode Exit fullscreen mode

Conclusion ๐ŸŽฏ

This implementation demonstrates a simple but functional load balancer using Spring Boot. While it may not have all the features of production-grade load balancers like Nginx or HAProxy, it serves as an excellent learning tool and could be extended with additional features like:

  • Weighted round-robin โš–๏ธ
  • Least connections algorithm ๐Ÿ”—
  • Sticky sessions ๐Ÿช
  • Circuit breakers ๐Ÿ”Œ
  • Rate limiting ๐Ÿšฆ

For reference, the entire code implementation can also be found at this Github Repository: https://github.com/sandeepkv93/SimpleLoadBalancer ๐Ÿ“š

Remember that in production environments, you might want to use battle-tested solutions like Nginx, HAProxy, or cloud provider load balancers. However, understanding how load balancers work under the hood is valuable knowledge for any software engineer. ๐ŸŽ“

Top comments (0)