Instructional Video3:57
Curated Video

Design Microservices Architecture with Patterns and Principles - Circuit Breaker Pattern

Higher Ed
In this video, you will learn the Circuit Breaker pattern, which is a resiliency pattern that helps protect microservices from cascading failures. You will learn how the Circuit Breaker acts as a safety mechanism by monitoring the...
Instructional Video3:39
Curated Video

Design Microservices Architecture with Patterns and Principles - Microservices Resiliency Patterns

Higher Ed
In this video, we will explore various resiliency patterns specifically designed for microservices architectures and discuss patterns such as Circuit Breaker, Bulkhead, Timeout, and Fallback, which help enhance the fault-tolerance and...
Instructional Video7:27
Curated Video

Design Microservices Architecture with Patterns and Principles - Adapt: Microservices Using Containers and Orchestrators

Higher Ed
In this video, the adaptation of existing microservices to leverage containers and orchestrators is discussed, the process of containerizing microservices, modifying deployment configurations, and integrating with container orchestration...
Instructional Video4:18
Curated Video

Design Microservices Architecture with Patterns and Principles - What Are Container Orchestrators?

Higher Ed
This video explains container orchestrators in microservices deployments, how container orchestrators, such as Kubernetes, help in managing and coordinating containerized applications across a cluster of machines. This clip is from the...
Instructional Video2:20
Curated Video

Design Microservices Architecture with Patterns and Principles - Docker Containers, Images, and Registries

Higher Ed
This video dives deeper into Docker's core components: containers, images, and registries. It explains how containers are created from images, which are stored in registries. The video also discusses the benefits of using Docker images...
Instructional Video3:46
Curated Video

Design Microservices Architecture with Patterns and Principles - Problem: Deploy Microservices at Any Time with Zero-Downtime and Flexible Scale

Higher Ed
This video discusses the challenges of deploying microservices in a distributed caching environment while ensuring zero downtime and flexible scalability. It explores strategies and solutions to address these challenges and maintain the...
Instructional Video3:03
Curated Video

Design Microservices Architecture with Patterns and Principles - Real-World Examples of Event-Driven Microservices Architecture

Higher Ed
This video showcases real-world examples and case studies of organizations that have implemented event-driven microservices architectures and examines their architecture design, the challenges they faced, and the benefits they achieved...
Instructional Video2:53
Curated Video

Design Microservices Architecture with Patterns and Principles - Event-Driven Microservices Architecture

Higher Ed
This video dives deeper into the design and structure of event-driven microservices architectures and how events are used. The video explores event-driven patterns such as event sourcing, event-driven communication, and event-driven data...
Instructional Video3:04
Curated Video

Design Microservices Architecture with Patterns and Principles - Introduction - Event-Driven Microservices Architectures

Higher Ed
This video introduces the concept of event-driven architecture in the context of microservices, explains the fundamental principles and characteristics of event-driven systems, and highlights the benefits of using events as a means of...
Instructional Video2:14
Curated Video

Design Microservices Architecture with Patterns and Principles - Adapt Microservice Architecture with SAGA, Transactional Outbox, and CDC Pattern

Higher Ed
This video delves into the adaptation of an existing microservices architecture to incorporate the SAGA pattern, Transactional Outbox pattern, and CDC and discusses the necessary modifications and enhancements required to enable...
Instructional Video7:11
Curated Video

Design Microservices Architecture with Patterns and Principles - Design: Microservices Architecture with SAGA, Outbox Pattern, and CDC

Higher Ed
This video explores the design considerations and principles for building a robust microservices architecture using the SAGA pattern, Transactional Outbox pattern, and Change Data Capture (CDC). This clip is from the chapter...
Instructional Video5:45
Curated Video

Design Microservices Architecture with Patterns and Principles - CDC - Change Data Capture with Outbox Pattern

Higher Ed
This video explores the combination of CDC with the Outbox pattern to achieve a reliable and scalable approach for capturing and processing database changes within a microservices architecture and how CDC can be used to extract and...
Instructional Video3:58
Curated Video

Design Microservices Architecture with Patterns and Principles - Transactional Outbox Pattern in Microservices

Higher Ed
This video focuses on the implementation of the Transactional Outbox pattern in a microservices architecture, the benefits of using the pattern in this context, decoupling services, and improving performance, and provides practical...
Instructional Video2:52
Curated Video

Design Microservices Architecture with Patterns and Principles - Transactional Outbox Pattern

Higher Ed
This video introduces the Transactional Outbox pattern as a solution to the dual write problem, how the pattern works by using an outbox table to capture domain events within the transactional boundary and subsequently processing these...
Instructional Video5:00
Curated Video

Design Microservices Architecture with Patterns and Principles - Problem: Dual Write Problem

Higher Ed
This video addresses the challenge of maintaining consistency between multiple data stores when performing dual writes in a distributed system, the potential issues that can arise, such as data inconsistencies and transactional failures,...
Instructional Video2:20
Curated Video

Design Microservices Architecture with Patterns and Principles - Compensating Transaction Pattern

Higher Ed
This video introduces the compensating transaction pattern to rollback or undo the effects of a previous transaction in the event of a failure or error, how compensating transactions can be used in conjunction with the SAGA pattern to...
Instructional Video3:06
Curated Video

Design Microservices Architecture with Patterns and Principles - SAGA Pattern - Orchestration-Based SAGA Implementation

Higher Ed
This video explores the orchestration-based implementation of the SAGA pattern, where a central orchestrator service coordinates and controls the sequence of transactions across multiple services. This clip is from the chapter...
Instructional Video5:04
Curated Video

Design Microservices Architecture with Patterns and Principles - SAGA Pattern - Choreography-Based SAGA Implementation

Higher Ed
This video dives into the choreography-based implementation of the SAGA pattern, where each service is responsible for coordinating its own local transactions and emitting events to trigger subsequent transactions in other services. This...
Instructional Video4:43
Curated Video

Design Microservices Architecture with Patterns and Principles - SAGA Pattern for Distributed Transactions

Higher Ed
This video introduces the SAGA (Step-by-Step Atomicity Guarantees) pattern as a solution to managing distributed transactions in a microservices architecture and explains the concept of a saga, which is a sequence of local transactions,...
Instructional Video5:50
Curated Video

Design Microservices Architecture with Patterns and Principles - Microservices Transactional Boundaries

Higher Ed
This video discusses various strategies for defining transactional boundaries between microservices, such as using event-driven architectures, compensating transactions, or adopting a saga pattern to ensure data consistency and...
Instructional Video3:37
Curated Video

Design Microservices Architecture with Patterns and Principles - Microservices Bounded Context for Transactional Boundaries

Higher Ed
This video explores the concept of bounded contexts, which are distinct areas within a microservices architecture that have their own transactional boundaries, allowing for independent data management and transactional consistency. This...
Instructional Video7:06
Curated Video

Design Microservices Architecture with Patterns and Principles - Microservices Distributed Transactions

Higher Ed
This video explains the challenges and complexities of managing transactions in a distributed microservices environment, including the need for coordination and consistency across multiple services. This clip is from the chapter...
Instructional Video2:03
Curated Video

Design Microservices Architecture with Patterns and Principles - Transaction Management of Monolithic Architecture-2

Higher Ed
This video discusses how transactions are typically managed in a monolithic architecture, where a single database is used to maintain transactional consistency and explores the limitations and drawbacks of this approach when...
Instructional Video2:11
Curated Video

Design Microservices Architecture with Patterns and Principles - Event Sourcing Pattern

Higher Ed
This video focuses on the synchronization aspect of CQRS and explains various approaches and strategies to ensure consistency between the read and write databases in a CQRS-based system, including using event sourcing, eventual...