SlideShare a Scribd company logo
Redis and Kafka
Advanced Microservices Design Patterns Simplified
ALLEN TERLETO
SENIOR DIRECTOR, CUSTOMER SOLUTIONS AND FIELD ENGINEERING
https://www.linkedin.com/in/allenterleto/
AUGUST 2020
2
Explore demand and goals for Microservices
1
Microservices
Architecture
Define the characteristics of a Microservice
2
Quick introduction of Kafka and Redis
3
Advanced Microservices Architecture Patterns
4
+
Redis and Kafka - Simplifying Advanced Design Patterns within Microservices Architectures (Allen Terleto, RedisLabs) Kafka Summit 2020
What is holding back organizations from improving time-to-market?
4
Some Manager: We need more communication on and between our teams
Jeff Bezos: “No. Communication is terrible”
Software Evolution from Monolithic to Microservices
5 Source: https://www.martinfowler.com/microservices/
Characteristics of Microservices Architecture
6
Source: https://www.martinfowler.com/microservices/
1. Componentization via Services
2. Organized around Business Capabilities
3. Smart endpoints & dumb pipes
4. Decentralized Governance
5. Decentralized Data Management
6. Products not Projects
7. Infrastructure Automation
8. Design for failure
9. Evolutionary Design
API Gateway
Microservice
Message Broker
Microservice Microservice
There’s a lot to this.. so where do we begin?
7
There’s a lot to this.. so where do we begin?
8
Open Source In-Memory Database
supporting a variety of data structures and
data models optimized for
real-time and high-throughput use-cases
Open Source Stream Processing Platform
supporting distributed messaging
publish-subscribe data feeds for near-
real-time and high-throughput use-cases
9
Open Source Redis Modules
10 For more info check out: https://redislabs.com/community/redis-modules-hub/
Beautiful Chaos known as Microservices Architecture
12
Design Pattern - Bounded Context | Domain Driven Design
13
RedisAIRediSearch
risk:profile
input:tensors
output:tensors
RedisBloom
Authenticate
Digital Identity
user:profile
behavioral:profile
transaction:profile
geolocation
trusted:devices
Probabilistic Fraud
Detection Checkpoint
Transaction
Risk Scoring
user:transcations
Approve | Decline
Payment
Solution
• Practice Domain-Driven Design (DDD) principles
• Simplify complex domain models by dividing them into
separate Bounded Contexts; manageable by small teams
• Choose optimal data model based on each microservice’s data
access patterns and SLAs (RediSearch, RedisBloom, RedisAI, etc.)
Challenge
• Efficient communication between software
developers and domain experts
• Smaller autonomous teams are more productive
• Common terminology to establish requirements,
acceptance criteria, test cases, etc.
Bounded Context Bounded Context
Design Anti-Pattern – Two-Phase Commit Transactions
15
REDIS STREAMS
API Gateway
Microservice Microservice
write write
Challenge
• Each microservice can have its own database
however some business transactions will span
multiple Business Contexts
• In a Microservices Architecture, the Two-Phase
Commit protocol is an anti-pattern, since one or
more out of the hundreds or thousands of
microservices can, at any time, become unavailable
commit commitSolution
• Embrace eventual consistency and change mental model
from conforming to traditional ACID constraints
• Apply appropriate design patterns –
Message Broker, Saga, CQRS, Message Relay, Outbox, etc.
Design Pattern – Publish-Subscribe Message Broker
16
Kafka Message Broker
RediSearch RedisBloom
API Gateway
Authenticate
Digital Identity
Probabilistic Fraud
Detection Checkpoint
Challenge
• Two-Phase Commit protocol is an anti-pattern
• Transactions will span multiple business contexts
• Microservices can become unavailable at anytime
Solution
• Embrace event-driven architecture principles
• Inter-service communication (events) asynchronously
flow through a publish-subscribe Message Broker
• Zero, one, or more microservices can subscribe to
events that are relevant to their Business Context;
each at their own pace
• Microservices, recently recovered from unavailability, can
catch up to all the events they missed while unavailable
publish
subscribe subscribe
Design Pattern – Choreography-based Saga (State Machine)
17
Kafka Message Broker
RedisAIRedisBloom
Probabilistic Fraud
Detection Checkpoint
Transaction
Risk Scoring
Approve | Decline
Payment
YesNo
YesNo
Challenge
• Transactions will span multiple Business Contexts and the Two-Phase Commit protocol is an anti-pattern
• Microservices can include decision-logic that impacts which downstream services are in the transactional scope
Solution
• Saga is a sequence of local transactions
• Choreography-based Sagas are not
centrally coordinated
• Has roots in Finite-State Machine
• Each local transaction updates its
database and publishes an event to
trigger the next local transaction
• Sagas allow for unavailability along
their Chain-of-Responsibility, rollback
compensation for failures, and can replay the entire transaction
Design Pattern – Transactional Outbox | Message Relay
18
RediSearch
Kafka Message Broker
Authenticate
Digital Identity
RedisGears
user:profile
behavioral:profile
transaction:profile
geolocation
trusted:devices
Challenge
• Writing atomically to a database and a message broker can add
unnecessary code complexity
• Message Broker unavailability would force decisions about each
microservice’s trade-offs between availability and consistency
Solution
• Separate the concern of managing inter-service communication
by using an event-driven Message Relay
• RedisGears can be used to easily implement the Transactional
Outbox pattern by listening for events within Redis databases and
relaying event notifications (write-behind pattern) to a Message
Broker for downstream inter-service communication
• Redis-based microservices would avoid code complexity, concerns
with Message Broker unavailability, and performance overhead
Design Pattern – Capturing Telemetry
19
RedisGears
RedisTimeSeries
Analytics Dashboard
RediSearch
user:profile
behavioral:profile
transaction:profile
geolocation
trusted:devices
RedisAI
risk:profile
input:tensors
output:tensors
RedisBloom
user:transcations
RedisGears RedisGears
RedisTimeSeries
Challenge
• Telemetry is built on three pillars –
metrics, logs, and tracing
• Metrics are used for holistic observability
of a distributed-system in real time
• Metrics and tracing visualization often use
an underlying data model called “time-series”
Solution
• RedisTimeSeries has a native time-series data
model supporting high-volume inserts, low-
latency reads, aggregated queries, search-by
labels, downsampling, retention, indexing, etc.
• Metrics can be collected at various levels –
KPIs, application SLAs, infrastructure utilization, etc.
How can developers visualize time-series telemetry data?
20 Download for free: https://redislabs.com/redisinsight/
How can business analysts visualize time-series telemetry data?
21 For more info check out: https://github.com/mikhailredis/redis-pop-up-store and https://github.com/RedisTimeSeries/grafana-redis-datasource
Design Pattern – Event Sourcing
22
RedisAI
Analytics Dashboard
Redis Streams
risk:profile
input:tensors
output:tensors
RedisBloom
user:transcations
RedisGears RedisGears
Kafka Message Broker
Challenge
• Observability, tracing, and auditing of Choreography-based
Sagas is difficult across a decoupled chain of microservices
Solution
• Event Sourcing implies recording every microservice’s state
change as an immutable event; acting as a source of truth
• It is composed of a Message Broker and Event Store
• Based on the ordered sequence of events persisted in the
event store, a microservice can replay/rebuild its system
state by reprocessing recorded events at any time
• Redis Streams is an immutable in-memory append-only log
data structure perfectly suited and used as an Event Store
• Visualizing a stream of events can provide real-time
observability of the system’s state and instant recovery/replay
How can we visualize a stream of events?
23
Design Pattern – CQRS (Command Query Responsibility Segregation)
24
API Gateway
Approve | Decline
Payment
Payment History
RedisCDC
Redis Enterprise
readwrite
Challenge
• Each microservice should choose an optimal data model
for its unique data access patterns and SLAs
• There is no single data model optimally suited for all needs
Solution
• CQRS implies maintaining separate data structures for
writing (command) and reading (query) information
• Allows a microservice with extreme durability SLAs to use a
write-optimized database, while another microservice that
requires access to the same data uses a read-optimized database
• Managing eventual consistency between models is commonly
handled using the Transaction Log Tailing pattern
(a.k.a. Change-Data-Capture) or Message Relay pattern (covered earlier)
• RedisCDC provides a seamless drop-in-solution to keep heterogenous databases in-synch with Redis
Design Pattern – Shared Data (Microservice Level)
25
API Gateway
Approve | Decline
Payment
Payment History
RedisCDC
Redis Enterprise
readwrite
Clearing & Settlement
read
Challenge
• Multiple microservices need to
query the same data which
could be sourced from multiple
downstream microservices
Solution
• Implement the CQRS pattern
to build a view-only database
composed of replicated state-
change events from one or more
source databases
• Redis is optimally suited as a view-only
database, or microservices-cache,
because it inherently guarantees atomicity
for each operation, across multiple clients,
and provides sub-millisecond latency at scale
Design Pattern – Shared Data (Global Level)
26
Redis Enterprise
user:session
oauth:token
Kafka Message Broker
RediSearch RedisBloom
API Gateway
Authenticate
Digital Identity
Probabilistic Fraud
Detection Checkpoint
Challenge
• Session state, client authentication tokens,
and/or other global data may need to
be shared across hundreds of microservices
• A shared database, or ephemeral cache,
would couple all microservices together
• A global database could become
a single-point of failure user:transcations
user:profile
behavioral:profile
transaction:profile
geolocation
trusted:devices
Solution
• API Gateway deploys its own isolated and
highly-available database to store global data
• Redis is used across thousands of
microservices architectures in production
to manage session state and client authentication tokens
Retrospective
27
Challenges
• There’s more to microservices than breaking off chunks of code from a monolith
• Data Management quickly becomes a pain point if best practices are not considered
• Decentralization comes with trades-offs to complexity, technology sprawl, observability, etc.
Solutions
• Microservices design patterns help avoid complexity at scale
• Redis supports multiple models optimally suitable to simplify their implementation
• Kafka and Redis help turn Microservices Architecture’s beautiful chaos into controlled chaos
Check out my interview with Chris Richardson from
28
https://www.youtube.com/watch?v=q5Z8-cwGBXQ
Free Redis Microservices e-book for Developers
29 https://redislabs.com/docs/redis-microservices-for-dummies/
Check out these free resources to learn more about Redis
30
• http://redis.io/
• https://university.redislabs.com/
• https://docs.redislabs.com/latest/rs/
• https://www.youtube.com/c/RedisUniversity
Thank you!
redislabs.com

More Related Content

PPTX
Enhance your multi-cloud application performance using Redis Enterprise P2
PDF
고급 클라우드 아키텍처 방법론- 양승도 솔루션즈 아키텍트:: AWS Cloud Track 2 Advanced
PDF
Best Practices with Azure Kubernetes Services
PDF
Redis + Kafka = Performance at Scale | Julien Ruaux, Redis Labs
PDF
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...
PDF
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
PPTX
Elastic Stack Introduction
PPTX
Microservices Part 3 Service Mesh and Kafka
Enhance your multi-cloud application performance using Redis Enterprise P2
고급 클라우드 아키텍처 방법론- 양승도 솔루션즈 아키텍트:: AWS Cloud Track 2 Advanced
Best Practices with Azure Kubernetes Services
Redis + Kafka = Performance at Scale | Julien Ruaux, Redis Labs
데이터 분석가를 위한 신규 분석 서비스 - 김기영, AWS 분석 솔루션즈 아키텍트 / 변규현, 당근마켓 소프트웨어 엔지니어 :: AWS r...
Amazon RDS Proxy 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
Elastic Stack Introduction
Microservices Part 3 Service Mesh and Kafka

What's hot (20)

PDF
데브시스터즈 데이터 레이크 구축 이야기 : Data Lake architecture case study (박주홍 데이터 분석 및 인프라 팀...
PDF
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
PDF
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
PPTX
글로벌 기업들의 효과적인 데이터 분석을 위한 Data Lake 구축 및 분석 사례 - 김준형 (AWS 솔루션즈 아키텍트)
PDF
마이크로서비스를 위한 AWS 아키텍처 패턴 및 모범 사례 - AWS Summit Seoul 2017
PDF
[115]쿠팡 서비스 클라우드 마이그레이션 통해 배운것들
PDF
Redis and Kafka - Advanced Microservices Design Patterns Simplified
PDF
Aws glue를 통한 손쉬운 데이터 전처리 작업하기
PDF
CQRS + Event Sourcing
PDF
Implementing Domain Events with Kafka
PDF
마이크로서비스 기반 클라우드 아키텍처 구성 모범 사례 - 윤석찬 (AWS 테크에반젤리스트)
PPTX
Azure Application Modernization
PDF
NATS Streaming - an alternative to Apache Kafka?
PDF
[2018] 고객 사례를 통해 본 클라우드 전환 전략
PPTX
MSA ( Microservices Architecture ) 발표 자료 다운로드
PDF
AWS Personalize 중심으로 살펴본 추천 시스템 원리와 구축
PDF
천만사용자를 위한 AWS 클라우드 아키텍처 진화하기 – 문종민, AWS솔루션즈 아키텍트:: AWS Summit Online Korea 2020
PPTX
AWS 기반 대규모 트래픽 견디기 - 장준엽 (구로디지털 모임) :: AWS Community Day 2017
PDF
[네전따] 네트워크 엔지니어에게 쿠버네티스는 어떤 의미일까요
PDF
쿠버네티스를 이용한 기능 브랜치별 테스트 서버 만들기 (GitOps CI/CD)
데브시스터즈 데이터 레이크 구축 이야기 : Data Lake architecture case study (박주홍 데이터 분석 및 인프라 팀...
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
글로벌 기업들의 효과적인 데이터 분석을 위한 Data Lake 구축 및 분석 사례 - 김준형 (AWS 솔루션즈 아키텍트)
마이크로서비스를 위한 AWS 아키텍처 패턴 및 모범 사례 - AWS Summit Seoul 2017
[115]쿠팡 서비스 클라우드 마이그레이션 통해 배운것들
Redis and Kafka - Advanced Microservices Design Patterns Simplified
Aws glue를 통한 손쉬운 데이터 전처리 작업하기
CQRS + Event Sourcing
Implementing Domain Events with Kafka
마이크로서비스 기반 클라우드 아키텍처 구성 모범 사례 - 윤석찬 (AWS 테크에반젤리스트)
Azure Application Modernization
NATS Streaming - an alternative to Apache Kafka?
[2018] 고객 사례를 통해 본 클라우드 전환 전략
MSA ( Microservices Architecture ) 발표 자료 다운로드
AWS Personalize 중심으로 살펴본 추천 시스템 원리와 구축
천만사용자를 위한 AWS 클라우드 아키텍처 진화하기 – 문종민, AWS솔루션즈 아키텍트:: AWS Summit Online Korea 2020
AWS 기반 대규모 트래픽 견디기 - 장준엽 (구로디지털 모임) :: AWS Community Day 2017
[네전따] 네트워크 엔지니어에게 쿠버네티스는 어떤 의미일까요
쿠버네티스를 이용한 기능 브랜치별 테스트 서버 만들기 (GitOps CI/CD)
Ad

Similar to Redis and Kafka - Simplifying Advanced Design Patterns within Microservices Architectures (Allen Terleto, RedisLabs) Kafka Summit 2020 (20)

PPTX
Best Practices Building Cloud Scale Apps with Microservices
PDF
[WSO2Con EU 2017] Microservices for Enterprises
PDF
Microservices Patterns with GoldenGate
PDF
Microservices for Enterprises
PPTX
The Journey of IT – Mainframe to Serverless
PDF
Modern Software Architecture - Cloud Scale Computing
PPSX
Microservices Architecture, Monolith Migration Patterns
PDF
Stateful on Stateless - The Future of Applications in the Cloud
PDF
Cloud Data Strategy event London
PDF
Microservices: Where do they fit within a rapidly evolving integration archit...
PPTX
Alex Thissen (Xpirit) - Een verschuiving in architectuur: op weg naar microse...
PPTX
Iot cloud service v2.0
PDF
Closer Look at Cloud Centric Architectures
PPTX
Introduction to microservices
PDF
Enterprise Integration in Cloud Native Microservices Architectures
PDF
Microservices Design Principles.pdf
PPTX
An introduction to Microservices
PPTX
Grid and Cloud Computing Lecture-2a.pptx
PDF
A Guide on What Are Microservices: Pros, Cons, Use Cases, and More
PDF
Final_CloudEventFrankfurt2017 (1).pdf
Best Practices Building Cloud Scale Apps with Microservices
[WSO2Con EU 2017] Microservices for Enterprises
Microservices Patterns with GoldenGate
Microservices for Enterprises
The Journey of IT – Mainframe to Serverless
Modern Software Architecture - Cloud Scale Computing
Microservices Architecture, Monolith Migration Patterns
Stateful on Stateless - The Future of Applications in the Cloud
Cloud Data Strategy event London
Microservices: Where do they fit within a rapidly evolving integration archit...
Alex Thissen (Xpirit) - Een verschuiving in architectuur: op weg naar microse...
Iot cloud service v2.0
Closer Look at Cloud Centric Architectures
Introduction to microservices
Enterprise Integration in Cloud Native Microservices Architectures
Microservices Design Principles.pdf
An introduction to Microservices
Grid and Cloud Computing Lecture-2a.pptx
A Guide on What Are Microservices: Pros, Cons, Use Cases, and More
Final_CloudEventFrankfurt2017 (1).pdf
Ad

More from HostedbyConfluent (20)

PDF
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
PDF
Renaming a Kafka Topic | Kafka Summit London
PDF
Evolution of NRT Data Ingestion Pipeline at Trendyol
PDF
Ensuring Kafka Service Resilience: A Dive into Health-Checking Techniques
PDF
Exactly-once Stream Processing with Arroyo and Kafka
PDF
Fish Plays Pokemon | Kafka Summit London
PDF
Tiered Storage 101 | Kafla Summit London
PDF
Building a Self-Service Stream Processing Portal: How And Why
PDF
From the Trenches: Improving Kafka Connect Source Connector Ingestion from 7 ...
PDF
Future with Zero Down-Time: End-to-end Resiliency with Chaos Engineering and ...
PDF
Navigating Private Network Connectivity Options for Kafka Clusters
PDF
Apache Flink: Building a Company-wide Self-service Streaming Data Platform
PDF
Explaining How Real-Time GenAI Works in a Noisy Pub
PDF
TL;DR Kafka Metrics | Kafka Summit London
PDF
A Window Into Your Kafka Streams Tasks | KSL
PDF
Mastering Kafka Producer Configs: A Guide to Optimizing Performance
PDF
Data Contracts Management: Schema Registry and Beyond
PDF
Code-First Approach: Crafting Efficient Flink Apps
PDF
Debezium vs. the World: An Overview of the CDC Ecosystem
PDF
Beyond Tiered Storage: Serverless Kafka with No Local Disks
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Renaming a Kafka Topic | Kafka Summit London
Evolution of NRT Data Ingestion Pipeline at Trendyol
Ensuring Kafka Service Resilience: A Dive into Health-Checking Techniques
Exactly-once Stream Processing with Arroyo and Kafka
Fish Plays Pokemon | Kafka Summit London
Tiered Storage 101 | Kafla Summit London
Building a Self-Service Stream Processing Portal: How And Why
From the Trenches: Improving Kafka Connect Source Connector Ingestion from 7 ...
Future with Zero Down-Time: End-to-end Resiliency with Chaos Engineering and ...
Navigating Private Network Connectivity Options for Kafka Clusters
Apache Flink: Building a Company-wide Self-service Streaming Data Platform
Explaining How Real-Time GenAI Works in a Noisy Pub
TL;DR Kafka Metrics | Kafka Summit London
A Window Into Your Kafka Streams Tasks | KSL
Mastering Kafka Producer Configs: A Guide to Optimizing Performance
Data Contracts Management: Schema Registry and Beyond
Code-First Approach: Crafting Efficient Flink Apps
Debezium vs. the World: An Overview of the CDC Ecosystem
Beyond Tiered Storage: Serverless Kafka with No Local Disks

Recently uploaded (20)

PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Modernizing your data center with Dell and AMD
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Machine learning based COVID-19 study performance prediction
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
KodekX | Application Modernization Development
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
Cloud computing and distributed systems.
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
“AI and Expert System Decision Support & Business Intelligence Systems”
The AUB Centre for AI in Media Proposal.docx
Modernizing your data center with Dell and AMD
Building Integrated photovoltaic BIPV_UPV.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
The Rise and Fall of 3GPP – Time for a Sabbatical?
MYSQL Presentation for SQL database connectivity
Machine learning based COVID-19 study performance prediction
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Diabetes mellitus diagnosis method based random forest with bat algorithm
Spectral efficient network and resource selection model in 5G networks
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Chapter 3 Spatial Domain Image Processing.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
NewMind AI Weekly Chronicles - August'25 Week I
KodekX | Application Modernization Development
Reach Out and Touch Someone: Haptics and Empathic Computing
NewMind AI Monthly Chronicles - July 2025
Cloud computing and distributed systems.
Bridging biosciences and deep learning for revolutionary discoveries: a compr...

Redis and Kafka - Simplifying Advanced Design Patterns within Microservices Architectures (Allen Terleto, RedisLabs) Kafka Summit 2020

  • 1. Redis and Kafka Advanced Microservices Design Patterns Simplified ALLEN TERLETO SENIOR DIRECTOR, CUSTOMER SOLUTIONS AND FIELD ENGINEERING https://www.linkedin.com/in/allenterleto/ AUGUST 2020
  • 2. 2 Explore demand and goals for Microservices 1 Microservices Architecture Define the characteristics of a Microservice 2 Quick introduction of Kafka and Redis 3 Advanced Microservices Architecture Patterns 4 +
  • 4. What is holding back organizations from improving time-to-market? 4 Some Manager: We need more communication on and between our teams Jeff Bezos: “No. Communication is terrible”
  • 5. Software Evolution from Monolithic to Microservices 5 Source: https://www.martinfowler.com/microservices/
  • 6. Characteristics of Microservices Architecture 6 Source: https://www.martinfowler.com/microservices/ 1. Componentization via Services 2. Organized around Business Capabilities 3. Smart endpoints & dumb pipes 4. Decentralized Governance 5. Decentralized Data Management 6. Products not Projects 7. Infrastructure Automation 8. Design for failure 9. Evolutionary Design API Gateway Microservice Message Broker Microservice Microservice
  • 7. There’s a lot to this.. so where do we begin? 7
  • 8. There’s a lot to this.. so where do we begin? 8
  • 9. Open Source In-Memory Database supporting a variety of data structures and data models optimized for real-time and high-throughput use-cases Open Source Stream Processing Platform supporting distributed messaging publish-subscribe data feeds for near- real-time and high-throughput use-cases 9
  • 10. Open Source Redis Modules 10 For more info check out: https://redislabs.com/community/redis-modules-hub/
  • 11. Beautiful Chaos known as Microservices Architecture 12
  • 12. Design Pattern - Bounded Context | Domain Driven Design 13 RedisAIRediSearch risk:profile input:tensors output:tensors RedisBloom Authenticate Digital Identity user:profile behavioral:profile transaction:profile geolocation trusted:devices Probabilistic Fraud Detection Checkpoint Transaction Risk Scoring user:transcations Approve | Decline Payment Solution • Practice Domain-Driven Design (DDD) principles • Simplify complex domain models by dividing them into separate Bounded Contexts; manageable by small teams • Choose optimal data model based on each microservice’s data access patterns and SLAs (RediSearch, RedisBloom, RedisAI, etc.) Challenge • Efficient communication between software developers and domain experts • Smaller autonomous teams are more productive • Common terminology to establish requirements, acceptance criteria, test cases, etc. Bounded Context Bounded Context
  • 13. Design Anti-Pattern – Two-Phase Commit Transactions 15 REDIS STREAMS API Gateway Microservice Microservice write write Challenge • Each microservice can have its own database however some business transactions will span multiple Business Contexts • In a Microservices Architecture, the Two-Phase Commit protocol is an anti-pattern, since one or more out of the hundreds or thousands of microservices can, at any time, become unavailable commit commitSolution • Embrace eventual consistency and change mental model from conforming to traditional ACID constraints • Apply appropriate design patterns – Message Broker, Saga, CQRS, Message Relay, Outbox, etc.
  • 14. Design Pattern – Publish-Subscribe Message Broker 16 Kafka Message Broker RediSearch RedisBloom API Gateway Authenticate Digital Identity Probabilistic Fraud Detection Checkpoint Challenge • Two-Phase Commit protocol is an anti-pattern • Transactions will span multiple business contexts • Microservices can become unavailable at anytime Solution • Embrace event-driven architecture principles • Inter-service communication (events) asynchronously flow through a publish-subscribe Message Broker • Zero, one, or more microservices can subscribe to events that are relevant to their Business Context; each at their own pace • Microservices, recently recovered from unavailability, can catch up to all the events they missed while unavailable publish subscribe subscribe
  • 15. Design Pattern – Choreography-based Saga (State Machine) 17 Kafka Message Broker RedisAIRedisBloom Probabilistic Fraud Detection Checkpoint Transaction Risk Scoring Approve | Decline Payment YesNo YesNo Challenge • Transactions will span multiple Business Contexts and the Two-Phase Commit protocol is an anti-pattern • Microservices can include decision-logic that impacts which downstream services are in the transactional scope Solution • Saga is a sequence of local transactions • Choreography-based Sagas are not centrally coordinated • Has roots in Finite-State Machine • Each local transaction updates its database and publishes an event to trigger the next local transaction • Sagas allow for unavailability along their Chain-of-Responsibility, rollback compensation for failures, and can replay the entire transaction
  • 16. Design Pattern – Transactional Outbox | Message Relay 18 RediSearch Kafka Message Broker Authenticate Digital Identity RedisGears user:profile behavioral:profile transaction:profile geolocation trusted:devices Challenge • Writing atomically to a database and a message broker can add unnecessary code complexity • Message Broker unavailability would force decisions about each microservice’s trade-offs between availability and consistency Solution • Separate the concern of managing inter-service communication by using an event-driven Message Relay • RedisGears can be used to easily implement the Transactional Outbox pattern by listening for events within Redis databases and relaying event notifications (write-behind pattern) to a Message Broker for downstream inter-service communication • Redis-based microservices would avoid code complexity, concerns with Message Broker unavailability, and performance overhead
  • 17. Design Pattern – Capturing Telemetry 19 RedisGears RedisTimeSeries Analytics Dashboard RediSearch user:profile behavioral:profile transaction:profile geolocation trusted:devices RedisAI risk:profile input:tensors output:tensors RedisBloom user:transcations RedisGears RedisGears RedisTimeSeries Challenge • Telemetry is built on three pillars – metrics, logs, and tracing • Metrics are used for holistic observability of a distributed-system in real time • Metrics and tracing visualization often use an underlying data model called “time-series” Solution • RedisTimeSeries has a native time-series data model supporting high-volume inserts, low- latency reads, aggregated queries, search-by labels, downsampling, retention, indexing, etc. • Metrics can be collected at various levels – KPIs, application SLAs, infrastructure utilization, etc.
  • 18. How can developers visualize time-series telemetry data? 20 Download for free: https://redislabs.com/redisinsight/
  • 19. How can business analysts visualize time-series telemetry data? 21 For more info check out: https://github.com/mikhailredis/redis-pop-up-store and https://github.com/RedisTimeSeries/grafana-redis-datasource
  • 20. Design Pattern – Event Sourcing 22 RedisAI Analytics Dashboard Redis Streams risk:profile input:tensors output:tensors RedisBloom user:transcations RedisGears RedisGears Kafka Message Broker Challenge • Observability, tracing, and auditing of Choreography-based Sagas is difficult across a decoupled chain of microservices Solution • Event Sourcing implies recording every microservice’s state change as an immutable event; acting as a source of truth • It is composed of a Message Broker and Event Store • Based on the ordered sequence of events persisted in the event store, a microservice can replay/rebuild its system state by reprocessing recorded events at any time • Redis Streams is an immutable in-memory append-only log data structure perfectly suited and used as an Event Store • Visualizing a stream of events can provide real-time observability of the system’s state and instant recovery/replay
  • 21. How can we visualize a stream of events? 23
  • 22. Design Pattern – CQRS (Command Query Responsibility Segregation) 24 API Gateway Approve | Decline Payment Payment History RedisCDC Redis Enterprise readwrite Challenge • Each microservice should choose an optimal data model for its unique data access patterns and SLAs • There is no single data model optimally suited for all needs Solution • CQRS implies maintaining separate data structures for writing (command) and reading (query) information • Allows a microservice with extreme durability SLAs to use a write-optimized database, while another microservice that requires access to the same data uses a read-optimized database • Managing eventual consistency between models is commonly handled using the Transaction Log Tailing pattern (a.k.a. Change-Data-Capture) or Message Relay pattern (covered earlier) • RedisCDC provides a seamless drop-in-solution to keep heterogenous databases in-synch with Redis
  • 23. Design Pattern – Shared Data (Microservice Level) 25 API Gateway Approve | Decline Payment Payment History RedisCDC Redis Enterprise readwrite Clearing & Settlement read Challenge • Multiple microservices need to query the same data which could be sourced from multiple downstream microservices Solution • Implement the CQRS pattern to build a view-only database composed of replicated state- change events from one or more source databases • Redis is optimally suited as a view-only database, or microservices-cache, because it inherently guarantees atomicity for each operation, across multiple clients, and provides sub-millisecond latency at scale
  • 24. Design Pattern – Shared Data (Global Level) 26 Redis Enterprise user:session oauth:token Kafka Message Broker RediSearch RedisBloom API Gateway Authenticate Digital Identity Probabilistic Fraud Detection Checkpoint Challenge • Session state, client authentication tokens, and/or other global data may need to be shared across hundreds of microservices • A shared database, or ephemeral cache, would couple all microservices together • A global database could become a single-point of failure user:transcations user:profile behavioral:profile transaction:profile geolocation trusted:devices Solution • API Gateway deploys its own isolated and highly-available database to store global data • Redis is used across thousands of microservices architectures in production to manage session state and client authentication tokens
  • 25. Retrospective 27 Challenges • There’s more to microservices than breaking off chunks of code from a monolith • Data Management quickly becomes a pain point if best practices are not considered • Decentralization comes with trades-offs to complexity, technology sprawl, observability, etc. Solutions • Microservices design patterns help avoid complexity at scale • Redis supports multiple models optimally suitable to simplify their implementation • Kafka and Redis help turn Microservices Architecture’s beautiful chaos into controlled chaos
  • 26. Check out my interview with Chris Richardson from 28 https://www.youtube.com/watch?v=q5Z8-cwGBXQ
  • 27. Free Redis Microservices e-book for Developers 29 https://redislabs.com/docs/redis-microservices-for-dummies/
  • 28. Check out these free resources to learn more about Redis 30 • http://redis.io/ • https://university.redislabs.com/ • https://docs.redislabs.com/latest/rs/ • https://www.youtube.com/c/RedisUniversity