Article(s)
About 1 min
Article(s) 관련
Learnk8s — the Kubernetes training company
We help you get started on your Kubernetes journey through comprehensive online, in person or remote training.
Milan Jovanović | Helping You Become a Better .NET Engineer
The .NET Weekly is a newsletter that delivers 1 practical tip on .NET & sofwtare architecture that you can easily implement.
Learnk8s — the Kubernetes training company
learnk8s.io
Scaling Microservices with Message Queues, Spring Boot and Kubernetes
Learn how to scale SpringBoot apps in Kubernetes using the autoscaler and a message broker such as Kafka, RabbitMQ or ActiveMQ.
Scaling Celery workers with RabbitMQ on Kubernetes
Learn how to use Kubernetes and KEDA to scale Celery workers based on the number of messages in a RabbitMQ queue
Milan Jovanović | Helping You Become a Better .NET Engineer
milanjovanovic.tech
Implementing The Saga Pattern With Rebus And RabbitMQ
Designing long-lived processes in a distributed environment is an interesting engineering challenge. And a well known pattern for solving this problem is a Saga. A Saga is a sequence of local transactions, where each local transaction updates the Saga state and publishes a message triggering the next step in the Saga. Sagas come in two forms: Orchestrated Choreographed With an orchestrated Saga, there's a central component responsible for orchestrating the individual steps. In a choreographed Saga, processes work independently but coordinate with each other using events.