Best of Distributed Systems — December 2023
- 1
- 2
Dev Genius·2y
Kafka Multiple Partitions with Spring Boot and Kubernetes
This article discusses the concepts of Kafka partitions, scalability, fault tolerance, messaging ordering, and consumer parallelism. It also provides instructions on deploying Kafka, Spring Boot applications, and Kafdrop on Kubernetes. Additionally, it demonstrates how to set up a Spring Boot producer and consumer application for Kafka.
- 3
- 4
Code Maze·2y
What Is Service Discovery in .NET and How to Use It?
Service Discovery in .NET allows developers to use logical names instead of IP addresses and ports to refer to external services in a networked environment. It simplifies the process of locating and interacting with services, especially in dynamic and distributed systems.
- 5
Dev Genius·2y
Retry Mechanism in Spring Boot(@Retryable and @Recover)
This article discusses the Retry Mechanism in Spring Boot using the @Retryable and @Recover annotations. It explains what the Retry Mechanism is, scenarios where it can be used, and provides an implementation example using Spring Boot.