SlideShare a Scribd company logo
1 of 58
Download to read offline
BASEL | BERN | BRUGG | BUKAREST | DรœSSELDORF | FRANKFURT A.M. | FREIBURG I.BR. | GENF
HAMBURG | KOPENHAGEN | LAUSANNE | MANNHEIM | MรœNCHEN | STUTTGART | WIEN | ZรœRICH
http://guidoschmutz.wordpress.comgschmutz
Kafka as an Event Store โ€“ is it Good Enough?
Guido Schmutz
W-JAX Munich โ€“ 6.11.2019
gschmutz
Agenda
1. How do we build applications traditionally?
2. CQRS & Event Sourcing
3. What exactly is an Event Store?
4. Implementing Event Store
5. Summary
BASEL | BERN | BRUGG | BUKAREST | DรœSSELDORF | FRANKFURT A.M. | FREIBURG I.BR. | GENF
HAMBURG | KOPENHAGEN | LAUSANNE | MANNHEIM | MรœNCHEN | STUTTGART | WIEN | ZรœRICH
Guido
Working at Trivadis for more than 22 years
Consultant, Trainer, Platform Architect for Java,
Oracle, SOA and Big Data / Fast Data
Oracle Groundbreaker Ambassador & Oracle ACE
Director
@gschmutz guidoschmutz.wordpress.com
173rd
edition
gschmutz
How do we build applications
traditionally?
gschmutz
Data Access Layer
Monolithic System - using Layered Architecture
User Interface
Account UI
Service Layer
{ }
Account API
Database
Customer API
REST
Customer UI
Domain
Model
Account DAO
{ }REST
Customer DAO
DB Model
gschmutz
Data Access Layer
Monolithic System - using Layered Architecture
User Interface
Account UI
Service Layer
{ }
Account API
Database
Customer API
REST
Customer UI
Domain
Model
Account DAO
{ }REST
Customer DAO
DB Model
Object/Relational
Impedance Mismatch
โ€ข Traditional approach
to persistence
โ€ข Store current state
โ€ข CRUD operations
โ€ข Coupling between
read & write
โ€ข Increased Complexity
gschmutz
Data Access Layer
Monolithic System - using Layered Architecture
User Interface
Account UI
Service Layer
{ }
Account API
Database
Customer API
REST
Customer UI
Domain
Model
Account DAO
{ }REST
Customer DAO
DB Model
โ€ข Traditional approach
to persistence
โ€ข Store current state
โ€ข CRUD operations
โ€ข Coupling between
read & write
โ€ข Increased Complexity
SELECT acc.id, acc.account_number, acc.account_type.id,
acct.name, cus.first_name, cus.last_name,
addr.street, addr.city
FROM account_t acc
, account_type_t acct
, customer_t cus
, cust_adr_t cusa
, address_t addr
WHERE acc.account_type_id = acct.account_type_id
AND adc.customer_id = cus.customer_id
AND cusa.customer_id = cus.customer_id
AND cusa.address_id = addr.address_id
AND cusa.type = 'MAIN'
gschmutz
Microservices - using Layered Architecture
Microservices โ€ฆ
โ€ข are responsible for their data
โ€ข might use NoSQL instead of
RDBMS
โ€ข often still use traditional
approach to persistence
โ€ข โ€œData silosโ€ do no longer support
database join
โ€ข keep synchronous
communication to a minimum
Customer Microservice
{ }
Customer API
Customer
Customer Logic
Account Microservice
{ }
Account API
Account
Account Logic
Product Microservice
{ }
Product API
Product
Product Logic
Finance App
Finance UI UI Logic
GUI
REST
REST
REST
sync request/response
async, event pub/sub
gschmutz
Events
Distribute to all handlers
strong ordering reqโ€™s
No results
Queries
Route with load balancing
Sometimes scatter-gather
Provide result
Three mechanisms through which services can
interact
Commands
Route to single handler
Use consistent hashing
Provide Result
Adapted from Axon IQ
gschmutz
Domain Driven Design (DDD) โ€“ Concepts
โ€ข Domain Objects โ€“ hold the state of the
application
โ€ข Entity โ€“ Domain Objects with an identity
โ€ข Value Object โ€“ an immutable type that is
distinguishable only by the state of its
properties and has no identity
โ€ข Aggregate - A cluster of domain objects
that can be treated as a single unit
โ€ข Aggregate Root โ€“ one object of aggregate
is root object. Any reference from outside
goes through aggregate root
Aggregate Root
Account Aggregate
Customer
Aggregate
Aggregate Root
gschmutz
Microservices with Event-driven communication
This is Event Streaming and
not really Event Sourcing
Customer Microservice
{ }
Customer API
Customer
Customer Logic
Account Microservice
{ }
Order API
Order
Order Logic
Product Microservice
{ }
Product API
Product
Product Logic
REST
REST
REST
Event Hub
(pub/sub)
Customer
Mat View
sync request/response
async, event pub/sub
Finance App
Finance UI UI Logic
GUI
gschmutz
CQRS & Event Sourcing
gschmutz
Command Query Responsibility Segregation
(CQRS)
Optimize for write and read differently
API is split between
โ€ข commands - trigger changes in state
โ€ข queries - provide read access to the state
Still using CRUD pattern, but separates
โ€Rโ€ from CRUD
Might involve eventual consistency
between write and read model
Data Storage
Write Model
Read Model
(read-only)
Service
Command
API
Query
API
App
UI
Projection
Handler
UI Logic
CDC
command
query
project
read
insert
update
delete
1
2
3
4
gschmutz
Local CQRS vs. System Wide CQRS
Local CQRS System-Wide CQRS
Write Model
Read Model
(read-only)
Service
Command
API
Query
API
App
UI
Projection
Handler
UI Logic
CDC
command
query
project
read
insert
update
delete
Write Model
Read Model
(read-only)
Service
Command
API
App
UI
Projection
Handler
UI Logic
CDC
command
project
insert
update
delete
Service
Write Model
command
Command
API
insert
update
delete
gschmutz
Event Sourcing โ€“ Persist state-changing events
and not state
# Timestamp Aggregate ID Event Event Payload
1 10 A32B3DE AccountCreated { id: 123, accountType: Savings}
2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000}
3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000}
4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500}
AccountCreated
id: 123
accountType: Savings
MoneyDeposited
id: 123
amount: 1000
MoneyDeposited
id: 123
amount: 2000
MoneyWithdrawn
id: 123
amount: 500
10 20 100 2000
gschmutz
Event Sourcing
persists the state of an aggregate as a
sequence of state-changing events
Each event describes a state change
that occurred to the aggregate in the
past
new event is appended to the list of
events
an aggregateโ€™s current state is
reconstructed by replaying the events
=> a.k.a โ€rehydrationโ€
Rehydration also needed for queries
Event Store
ServiceApp
UI
UI Logic
Command API &
Handler
Event Handler(s)
Service
Subscribe
publish
publish
apply (append)
REST
Data Storage
trigger replycommand
command
1 2
3
4
5
5
gschmutz
Event Sourcing - โ€Rehydrateโ€ State
1. Create an empty Aggregate
object
2. Read all events stored for
that Aggregate from event
store
3. Apply each event to the
Aggregate object in the
correct order
AccountCreated
id: 123
accountType: Savings
MoneyDeposited
id: 123
amount: 1000
MoneyDeposited
id: 123
amount: 2000
MoneyWithdrawn
id: 123
amount: 500
Account
<empty>
Account
id: 123
accountType: Savings
balance: 0
Account
id: 123
accountType: Savings
balance: 3000
transactions: [+1000, +2000]
Account
id: 123
accountType: Savings
balance: 2500
transactions:[+1000, +2000, -500]
Account
id: 123
accountType: Savings
balance: 1000
transactions: [+1000]
applyTo
applyTo
applyTo
applyTo
gschmutz
Event Sourcing โ€“ Write Path CreateAccount
command
Create an event for every state change of Aggregate
Persist the stream to event store (preserving event order)
AccountCreated
id: 123
accountType: Savings
10
# Timestamp Aggregate ID Event Event Payload
1 10 A32B3DE AccountCreated { id: 123, accountType: Savings}
Account Aggregate
<empty>
gschmutz
Event Sourcing โ€“ Write Path DepositMoney
command
Create an event for every state change of Aggregate
Persist the stream to event store (preserving event order)
# Timestamp Aggregate ID Event Event Payload
1 10 A32B3DE AccountCreated { id: 123, accountType: Savings}
2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000}
AccountCreated
id: 123
accountType: Savings
MoneyDeposited
id: 123
amount: 1000
10 20
Account Aggregate
id: 123
accountType: Savings
balance: 0
gschmutz
Event Sourcing โ€“ Write Path DepositMoney
command
Create an event for every state change of Aggregate
Persist the stream to event store (preserving event order)
# Timestamp Aggregate ID Event Event Payload
1 10 A32B3DE AccountCreated { id: 123, accountType: Savings}
2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000}
3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000}
AccountCreated
id: 123
accountType: Savings
MoneyDeposited
id: 123
amount: 1000
MoneyDeposited
id: 123
amount: 2000
10 20 100
Account Aggregate
id: 123
accountType: Savings
balance: 1000
gschmutz
Event Sourcing โ€“ Write Path WithdrawMoney
command
Create an event for every state change of Aggregate
Persist the stream to event store (preserving event order)
# Timestamp Aggregate ID Event Event Payload
1 10 A32B3DE AccountCreated { id: 123, accountType: Savings}
2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000}
3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000}
4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500}
AccountCreated
id: 123
accountType: Savings
MoneyDeposited
id: 123
amount: 1000
MoneyDeposited
id: 123
amount: 2000
MoneyWithdrawn
id: 123
amount: 500
10 20 100 2000
Account Aggregate
id: 123
accountType: Savings
balance: 3000
gschmutz
Event Sourcing - Potential Benefits
1. Subscribe to changes from other
Aggregates
2. Examine a historical record of every
change that has ever been applied
on the model
3. Use the event store data for trend,
forcast and other business analytics
4. Consider โ€œwhat ifโ€ questions by
replaying events to Aggregates which
have experimental enhancements
5. Patch errors by adding โ€correctionโ€
events (if it is legally allowed)
6. Perform โ€œundoโ€ and โ€œredoโ€
operations by replying varying sets
of Events
gschmutz
Event Sourcing & CQRS
Event sourcing is commonly
combined with the CQRS pattern
Combines best of Event Sourcing and
CQRS
Project events published by Event
Store into Read Model (Materialized
Views)
Write Model and Read Model might
only support eventual consistency
AggregateApp
UI
UI Logic
Command API &
Handler
Event Handler(s)
REST
Data Storage
Query API Read Model
(read-only)
{ }
REST
Projection
Handler
command
query read
1
Event Store
publish
apply (append)
trigger reply
2
3
4
5
publish
project
5
6
gschmutz
Snapshot Optimization in Event Sequence
# Timestamp Aggregate ID Event Event Payload
1 10 A32B3DE AccountCreated { id: 123, accountType: Savings}
2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000}
3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000}
4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500}
# Timestamp Aggregate ID Event Event Payload
1 10 A32B3DE AccountCreated { id: 123, accountType: Savings}
2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000}
3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000}
4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500}
5 2000 A32B3DE AccountSnapshot { id: 123, accountType: Savings, amount: 2500}
6 3000 A32B3DE MoneyWithdrawn { id: 123, amount: 500}
Snapshots for optimizing rehydration
gschmutz
What is an Event Store?
gschmutz
Event Store Capabilities
1. Append Events efficiently
2. Read aggregateโ€™s events in order
3. Full Sequential Read (over all
aggregates)
4. Consistent writes
5. Event versioning
6. Subscribable event stream
7. Correction events (O)
8. Ingestion & event time, bi-
temporal (O)
9. Adhoc-Query on event store (O)
10.Snapshot Optimization (O)
11.High-Availability and Reliability (O)
gschmutz
How many Event Stores do we need ?
{ }
API
State
Logic
REST
Event Store
{ }
API
State
Logic
REST
Event Store
Microservice
{ }
API
State
Logic
REST
Event Store
Microservice
{ }
API
State
Logic
REST
Microservice
{ }
API
State
Logic
REST
Event Store
Event
Microservice
{ }
API
State
Logic
REST
OR
Microservice
Microservice
gschmutz
Implementing an Event Store
gschmutz
Event Store Implementations
โ€ข Event Store (https://eventstore.org/) โ€“ by Greg Young
โ€ข Axon Framework & Relational DB (https://axoniq.io/) - by Axon IQ
โ€ข Axon DB (https://axoniq.io/) - by Axon IQ
โ€ข Eventuate (https://eventuate.io/) โ€“ by Eventuate.io
โ€ข Serialized (https://serialized.io/) โ€“ by Serialized.io
โ€ข Build your own โ€ฆ.
โ€ข Apache Kafka ???
gschmutz
Implementing an Event Store:
using Kafka Broker
gschmutz
Apache Kafka โ€“ A Streaming Platform
Kafka Cluster
Consumer 1 Consume 2r
Broker 1 Broker 2 Broker 3
Zookeeper
Ensemble
ZK 1 ZK 2ZK 3
Schema
Registry
Service 1
Management
Control Center
Kafka Manager
KAdmin
Producer 1 Producer 2
kafkacat
Data Retention:
โ€ข Never
โ€ข Time (TTL) or Size-based
โ€ข Log-Compacted based
Producer3Producer3
ConsumerConsumer 3
gschmutz
No SPoF, highly available
Consumer polls for new messages based on
offset
Apache Kafka โ€“ A Streaming Platform
horizontally scalable, guaranteed order
gschmutz
Kafka as an Event Store
1. One, single-partitioned Kafka topic per Aggregate
2. One, partitioned Kafka topic per Aggregate Type
3. One single, highly partitioned Kafka topic for all Aggregate Types
Should you put several Event Types in the same Kafka topic?:
https://www.confluent.io/blog/put-several-event-types-kafka-topic/
gschmutz
1) One, single-partitioned Kafka topic per
Aggregate Instance
This will guarantee that the events are stored
in order
Reading state of an aggregate is as simple as
reading a topic from offset 0
Not really feasible as there will be just too
many topics needed
Kafka
Customer Aggregate
Account Aggregate
gschmutz
2) One, partitioned Kafka topic per Aggregate
Type
โ€ข Required number of partitions is dependent
on number of aggregate instances
โ€ข Events are produced with aggregate-id as the
key
โ€ข guarantees that events are stored in order
โ€ข For reading state of an aggregate, all data of
all aggregate instances have to be scanned =>
slow
โ€ข Possible optimization: only read the partition
where aggregate instance is stored
Kafka
Customer Aggregate
Account Aggregate
gschmutz
3) One single, highly partitioned Kafka topic for
all Aggregate Types
โ€ข Required number of partitions is dependent
on number of aggregate types * instances
โ€ข Events are produced with aggregate-id as the
key
โ€ข guarantees that events are stored in order
โ€ข For reading state of an aggregate, all data of
all aggregate types & instances have to be
scanned => really slow
โ€ข Possible optimization: only read the partition
where aggregate instance is stored
Kafka
Customer Aggregate
Account Aggregate
gschmutz
Kafka as an Event Store
# Capability Kafka Broker
1 Append events efficiently yes
2 Read aggregateโ€™s events in order not efficiently
3 Full sequential Read yes
4 Consistent Writes no
5 Event Versioning yes (if Avro is used)
6 Subscribeable Event Stream yes
7 Correction events (O) no
8 Event time & ingestion time, aka. Bi-temporal (O) no, but extra time can be passed in header
9 Snapshot Optimization (O) no
10 Ad-Hoc Query on Events (O) no
11 High-Availability and Reliability (O) yes
gschmutz
Event Store
Kafka is not a Database โ€ฆ a Database is not
Kafka
We can use Kafka to run part of our own Event
Store implementation
add a database to get missing capabilities
But be careful with Dual Write!
โ€ข Would need distributed transactions
โ€ข Otherwise no guarantee for both writes to
happen
Application
{ }
API DatabaseBiz Logic
REST
Event Hub
Other App
Consumer
gschmutz
Event Store
Kafka is not a Database โ€ฆ a Database is not
Kafka
We can use Kafka to run our own Event Store
implementation
adding a database to get missing capabilities
But be careful with Dual Write!
โ€ข Would need distributed transactions
โ€ข Otherwise no guarantee for both writes to
happen
Application
{ }
API DatabaseBiz Logic
REST
Event Hub
Other App
Consumer
gschmutz
Event StoreEvent Store
Two solutions for avoiding ยซdual writeยป
Write Event first then consume it to write it to
database
Write through database (CDC, outbox design
pattern)
Application
{ }
API
Database
Biz Logic
REST
Event Hub
Other App
Biz Logic
Application
{ }
API
Database
REST
Biz Logic
CDC
Event Hub
CDC
Connector
Other App
Biz Logic
Publish
gschmutz
Implementing an Event Store:
using Axon Framework
gschmutz
Axon
โ€ข Spring Boot with Axon Framework
for Application
โ€ข MongoDB for Event Store
โ€ข Kafka Broker for Event Bus
โ€ข Kafka Streams or KSQL for Projection
Handler
โ€ข Kafka Connect / Spring Boot to
persist in read model
โ€ข NoSQL and/or RDBMS for read
model
AggregateApp
UI
UI Logic
Command API &
Handler
Event Handler(s)
REST
Data Storage
Query API Read Model
(read-only)
{ }
REST
Projection Handler
publish
command
query read
project
Event Store
publish
apply (append)
trigger reply
gschmutz
Event Sourcing with Axon
Account
Events
Account
Command
Account Aggregate
Account Command
Response
Account App
Event Store
Account
Customer
Projection
Command Handler
Event Handler
Account Query
Projection Handler
Query Handler
Account Query
Account Query
Response
Customer
Event
https://github.com/gschmutz/various-demos/tree/master/event-sourcing
gschmutz
Event Sourcing with Axon - Aggregate
@Aggregate
public class AccountAggregate{
@AggregateIdentifier
private String id;
private BigDecimal balance;
private String forCustomerId;
private String accountType;
@CommandHandler
...
@EventSourcingHandler
...
gschmutz
Event Sourcing with Axon - Command Handler
@CommandHandler
public AccountAggregate(AccountCreateCommand command)
{
Assert.hasLength(command.getForCustomerId(),
"CustomerId must have a value");
Assert.hasLength(command.getAccountType(),
"AccountType must have a value");
...
apply(new AccountCreatedEvent(command.getId(),
command.getForCustomerId(),
command.getAccountType(),
new BigDecimal("0")));
}
gschmutz
Event Sourcing with Axon โ€“ Command Handler
@CommandHandler
public void on(WithdrawMoneyCommand command) {
Assert.isTrue(command.getAmount() > 0,
"Amount should be a positive number");
if(command.getAmount().compareTo(this.balance) > 0 ) {
throw new InsufficientBalanceException(
"Insufficient balance. Trying to withdraw:" +
command.getAmount() +
", but current balance is: " + this.balance);
}
apply(new MoneyWithdrawnEvent(command.getId(),
command.getAmount()));
}
gschmutz
Event Sourcing with Axon โ€“ Event Handler
@EventSourcingHandler
public void handle(AccountCreatedEvent event) {
id = event.getId();
forCustomerId = event.getForCustomerId();
accountType = event.getAccountType();
balance = event.getBalance();
}
@EventSourcingHandler
public void handle(MoneyWithdrawnEvent event) {
balance = balance.subtract(event.getAmount());
}
gschmutz
Event Sourcing with Axon โ€“ Projection Handler
public class AccountQueryController {
@Autowired
private AccountRepository accRepo;
@EventHandler
public void on(AccountCreatedEvent event,@Timestamp Instant instant) {
Account account = new Account(event.getId(),event.getBalance(),
event.getAccHolder(),event.getAccHolderName(),
instant.toString());
accRepo.insert(account);
}
@EventHandler
public void on(MoneyDepositedEvent event,@Timestamp Instant instant) {
Account account = accRepo.findByAccountNo(event.getId());
account.setBalance(account.getBalance().add(event.getAmount()));
account.setLastUpdated(instant.toString());
accRepo.save(account);
}
gschmutz
Axon with Axon DB
โ€ข Spring Boot with Axon Framework
for Application
โ€ข Axon DB for Event Store and Event
Bus
โ€ข Spring Boot for Projection Handler
โ€ข Spring Boot to persist in read
model
โ€ข NoSQL and/or RDBMS for read
model
AggregateApp
UI
UI Logic
Command API &
Handler
Event Handler(s)
REST
Data Storage
Query API Read Model
(read-only)
{ }
REST
Projection Handler
publish
command
query read
project
Event Store
publish
apply (append)
trigger reply
gschmutz
Axon as an Event Store
# Capability Axon Framework Axon Framework & Axon DB
1 Append events efficiently yes yes
2 Read aggregateโ€™s events in order yes yes
3 Full sequential Read yes yes
4 Consistent Writes yes yes
5 Event Versioning yes yes
6 Subscribeable Event Stream yes yes
7 Correction events (O) no no
8 Event time & ingestion time, aka. Bi-temporal (O) no no
9 Snapshot Optimization (O) yes yes
10 Ad-Hoc Query on Events (O) yes yes
11 High-Availability and Reliability (O) possible yes
gschmutz
Implementing an Event Store:
using Kafka and Kafka
Streams
gschmutz
Apache Kafka โ€“ A Streaming Platform
Source
Connector
Sink
Connector
trucking_
driver
KSQL Engine
Kafka Streams
Kafka Broker
gschmutz
Kafka & Kafka Streams
โ€ข Kafka Streams with State for Event
Store
โ€ข Kafka Broker for Event Bus
โ€ข Kafka Streams or KSQL for
Projection Handler
โ€ข No reply of events, current
snapshot is held in state store
AggregateApp
UI
UI Logic
Command API &
Handler
Event Handler(s)
REST
Data Storage
Query API Read Model
(read-only)
{ }
REST
Projection Handler
publish
command
query read
project
Event Store
publish
apply (append)
trigger reply
gschmutz
Account
Event Handler
Event Sourcing with Kafka Streams
Account
Created
Money
Deposited
Money
Withdrawn
Command
Account Command
Handler
Command
Response
Account API
Account
Snapshot
Account
Snapshot
Customer
Snapshot
Account
Customer API
Account
Customer
Projection
Account
Customer
Projector
Account
Customer Rec
persist
https://github.com/gschmutz/various-demos/tree/master/event-sourcing
gschmutz
Kafka & Kafka Streams as an Event Store
# Capability Kafka & Kafka Streams
1 Append events efficiently yes
2 Read aggregateโ€™s events in order no (snapshot state only holds current snapshot)
3 Full sequential Read no
4 Consistent Writes yes (only one event per aggregate in flight)
5 Event Versioning yes (if Avro used)
6 Subscribeable Event Stream yes
7 Correction events (O) no
8 Event time & ingestion time, aka. Bi-temporal (O) no
9 Snapshot Optimization (O) yes (snapshot state only)
10 Ad-Hoc Query on events (O) limited (KSQL, Presto on Kafka, Drill on Kafka, โ€ฆ)
11 High-Availability and Reliability (O) yes
gschmutz
Summary
gschmutz
Summary
โ€ข Event Sourcing and CQRS might be more natural to business people than
IT => we are used to work with โ€œCRUD based persistenceโ€
โ€ข Event Sourcing provides history and logging for free
โ€ข Kafka Broker alone is really โ€œjustโ€ Event Streaming, not Event Sourcing
โ€ข Axon Framework supports the implementation of Event Sourcing
applications with Pluggable Event Store and Event Bus implementations
โ€ข Axon DB implements an Event Store and an Event Bus
โ€ข Kafka and Kafka Streams with State Store supports event sourcing in a
โ€streaming fashionโ€ with current snapshot
Kafka as an event store - is it good enough?

More Related Content

What's hot

Introduction to Storm
Introduction to Storm Introduction to Storm
Introduction to Storm
Chandler Huang
ย 
Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL Databases
Derek Stainer
ย 

What's hot (20)

The Patterns of Distributed Logging and Containers
The Patterns of Distributed Logging and ContainersThe Patterns of Distributed Logging and Containers
The Patterns of Distributed Logging and Containers
ย 
MongoDB vs. Postgres Benchmarks
MongoDB vs. Postgres Benchmarks MongoDB vs. Postgres Benchmarks
MongoDB vs. Postgres Benchmarks
ย 
Distributed Transaction in Microservice
Distributed Transaction in MicroserviceDistributed Transaction in Microservice
Distributed Transaction in Microservice
ย 
Event Sourcing & CQRS, Kafka, Rabbit MQ
Event Sourcing & CQRS, Kafka, Rabbit MQEvent Sourcing & CQRS, Kafka, Rabbit MQ
Event Sourcing & CQRS, Kafka, Rabbit MQ
ย 
Bizweb Microservices Architecture
Bizweb Microservices ArchitectureBizweb Microservices Architecture
Bizweb Microservices Architecture
ย 
Microservices Architecture Part 2 Event Sourcing and Saga
Microservices Architecture Part 2 Event Sourcing and SagaMicroservices Architecture Part 2 Event Sourcing and Saga
Microservices Architecture Part 2 Event Sourcing and Saga
ย 
Vertx
VertxVertx
Vertx
ย 
Introduction to Storm
Introduction to Storm Introduction to Storm
Introduction to Storm
ย 
Exactly-once Stream Processing with Kafka Streams
Exactly-once Stream Processing with Kafka StreamsExactly-once Stream Processing with Kafka Streams
Exactly-once Stream Processing with Kafka Streams
ย 
Kafka as an Event Store - is it Good Enough?
Kafka as an Event Store - is it Good Enough?Kafka as an Event Store - is it Good Enough?
Kafka as an Event Store - is it Good Enough?
ย 
Decoupling your application using Symfony Messenger and events
Decoupling your application using Symfony Messenger and eventsDecoupling your application using Symfony Messenger and events
Decoupling your application using Symfony Messenger and events
ย 
Elastic-Engineering
Elastic-EngineeringElastic-Engineering
Elastic-Engineering
ย 
Sapo Microservices Architecture
Sapo Microservices ArchitectureSapo Microservices Architecture
Sapo Microservices Architecture
ย 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
ย 
Spring Boot
Spring BootSpring Boot
Spring Boot
ย 
Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL Databases
ย 
Real World Event Sourcing and CQRS
Real World Event Sourcing and CQRSReal World Event Sourcing and CQRS
Real World Event Sourcing and CQRS
ย 
MongoDB WiredTiger Internals
MongoDB WiredTiger InternalsMongoDB WiredTiger Internals
MongoDB WiredTiger Internals
ย 
Microservice Architecture with CQRS and Event Sourcing
Microservice Architecture with CQRS and Event SourcingMicroservice Architecture with CQRS and Event Sourcing
Microservice Architecture with CQRS and Event Sourcing
ย 
Introduction to memcached
Introduction to memcachedIntroduction to memcached
Introduction to memcached
ย 

Similar to Kafka as an event store - is it good enough?

Building Microservices with Scala, functional domain models and Spring Boot -...
Building Microservices with Scala, functional domain models and Spring Boot -...Building Microservices with Scala, functional domain models and Spring Boot -...
Building Microservices with Scala, functional domain models and Spring Boot -...
JAXLondon2014
ย 
Andrii Dembitskyi "Events in our applications Event bus and distributed systems"
Andrii Dembitskyi "Events in our applications Event bus and distributed systems"Andrii Dembitskyi "Events in our applications Event bus and distributed systems"
Andrii Dembitskyi "Events in our applications Event bus and distributed systems"
Fwdays
ย 

Similar to Kafka as an event store - is it good enough? (20)

Kafka as an Event Store (Guido Schmutz, Trivadis) Kafka Summit NYC 2019
Kafka as an Event Store (Guido Schmutz, Trivadis) Kafka Summit NYC 2019Kafka as an Event Store (Guido Schmutz, Trivadis) Kafka Summit NYC 2019
Kafka as an Event Store (Guido Schmutz, Trivadis) Kafka Summit NYC 2019
ย 
Developing event-driven microservices with event sourcing and CQRS (phillyete)
Developing event-driven microservices with event sourcing and CQRS (phillyete)Developing event-driven microservices with event sourcing and CQRS (phillyete)
Developing event-driven microservices with event sourcing and CQRS (phillyete)
ย 
Building and deploying microservices with event sourcing, CQRS and Docker (QC...
Building and deploying microservices with event sourcing, CQRS and Docker (QC...Building and deploying microservices with event sourcing, CQRS and Docker (QC...
Building and deploying microservices with event sourcing, CQRS and Docker (QC...
ย 
SVCC Developing Asynchronous, Message-Driven Microservices
SVCC Developing Asynchronous, Message-Driven Microservices  SVCC Developing Asynchronous, Message-Driven Microservices
SVCC Developing Asynchronous, Message-Driven Microservices
ย 
Building microservices with Scala, functional domain models and Spring Boot (...
Building microservices with Scala, functional domain models and Spring Boot (...Building microservices with Scala, functional domain models and Spring Boot (...
Building microservices with Scala, functional domain models and Spring Boot (...
ย 
Building Microservices with Scala, functional domain models and Spring Boot -...
Building Microservices with Scala, functional domain models and Spring Boot -...Building Microservices with Scala, functional domain models and Spring Boot -...
Building Microservices with Scala, functional domain models and Spring Boot -...
ย 
#JaxLondon: Building microservices with Scala, functional domain models and S...
#JaxLondon: Building microservices with Scala, functional domain models and S...#JaxLondon: Building microservices with Scala, functional domain models and S...
#JaxLondon: Building microservices with Scala, functional domain models and S...
ย 
Building and deploying microservices with event sourcing, CQRS and Docker (Ha...
Building and deploying microservices with event sourcing, CQRS and Docker (Ha...Building and deploying microservices with event sourcing, CQRS and Docker (Ha...
Building and deploying microservices with event sourcing, CQRS and Docker (Ha...
ย 
Building and deploying microservices with event sourcing, CQRS and Docker (Me...
Building and deploying microservices with event sourcing, CQRS and Docker (Me...Building and deploying microservices with event sourcing, CQRS and Docker (Me...
Building and deploying microservices with event sourcing, CQRS and Docker (Me...
ย 
Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)
Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)
Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)
ย 
Developing functional domain models with event sourcing (sbtb, sbtb2015)
Developing functional domain models with event sourcing (sbtb, sbtb2015)Developing functional domain models with event sourcing (sbtb, sbtb2015)
Developing functional domain models with event sourcing (sbtb, sbtb2015)
ย 
Building microservices with Scala, functional domain models and Spring Boot
Building microservices with Scala, functional domain models and Spring BootBuilding microservices with Scala, functional domain models and Spring Boot
Building microservices with Scala, functional domain models and Spring Boot
ย 
Events on the outside, on the inside and at the core (jfokus jfokus2016)
Events on the outside, on the inside and at the core (jfokus jfokus2016)Events on the outside, on the inside and at the core (jfokus jfokus2016)
Events on the outside, on the inside and at the core (jfokus jfokus2016)
ย 
Developing microservices with aggregates (devnexus2017)
Developing microservices with aggregates (devnexus2017)Developing microservices with aggregates (devnexus2017)
Developing microservices with aggregates (devnexus2017)
ย 
Developing microservices with aggregates (melbourne)
Developing microservices with aggregates (melbourne)Developing microservices with aggregates (melbourne)
Developing microservices with aggregates (melbourne)
ย 
#hacksummit 2016 - event-driven microservices โ€“ Events on the outside, on the...
#hacksummit 2016 - event-driven microservices โ€“ Events on the outside, on the...#hacksummit 2016 - event-driven microservices โ€“ Events on the outside, on the...
#hacksummit 2016 - event-driven microservices โ€“ Events on the outside, on the...
ย 
Andrii Dembitskyi "Events in our applications Event bus and distributed systems"
Andrii Dembitskyi "Events in our applications Event bus and distributed systems"Andrii Dembitskyi "Events in our applications Event bus and distributed systems"
Andrii Dembitskyi "Events in our applications Event bus and distributed systems"
ย 
Developing event-driven microservices with event sourcing and CQRS (london Ja...
Developing event-driven microservices with event sourcing and CQRS (london Ja...Developing event-driven microservices with event sourcing and CQRS (london Ja...
Developing event-driven microservices with event sourcing and CQRS (london Ja...
ย 
Developing event-driven microservices with event sourcing and CQRS (Shanghai)
Developing event-driven microservices with event sourcing and CQRS (Shanghai)Developing event-driven microservices with event sourcing and CQRS (Shanghai)
Developing event-driven microservices with event sourcing and CQRS (Shanghai)
ย 
Microservices in Java and Scala (sfscala)
Microservices in Java and Scala (sfscala)Microservices in Java and Scala (sfscala)
Microservices in Java and Scala (sfscala)
ย 

More from Guido Schmutz

Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?
Guido Schmutz
ย 
Location Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache KafkaLocation Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache Kafka
Guido Schmutz
ย 
Location Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using KafkaLocation Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using Kafka
Guido Schmutz
ย 
Streaming Visualisation
Streaming VisualisationStreaming Visualisation
Streaming Visualisation
Guido Schmutz
ย 
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache KafkaSolutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Guido Schmutz
ย 
Streaming Visualization
Streaming VisualizationStreaming Visualization
Streaming Visualization
Guido Schmutz
ย 

More from Guido Schmutz (20)

30 Minutes to the Analytics Platform with Infrastructure as Code
30 Minutes to the Analytics Platform with Infrastructure as Code30 Minutes to the Analytics Platform with Infrastructure as Code
30 Minutes to the Analytics Platform with Infrastructure as Code
ย 
Event Broker (Kafka) in a Modern Data Architecture
Event Broker (Kafka) in a Modern Data ArchitectureEvent Broker (Kafka) in a Modern Data Architecture
Event Broker (Kafka) in a Modern Data Architecture
ย 
Big Data, Data Lake, Fast Data - Dataserialiation-Formats
Big Data, Data Lake, Fast Data - Dataserialiation-FormatsBig Data, Data Lake, Fast Data - Dataserialiation-Formats
Big Data, Data Lake, Fast Data - Dataserialiation-Formats
ย 
ksqlDB - Stream Processing simplified!
ksqlDB - Stream Processing simplified!ksqlDB - Stream Processing simplified!
ksqlDB - Stream Processing simplified!
ย 
Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?
ย 
Event Hub (i.e. Kafka) in Modern Data Architecture
Event Hub (i.e. Kafka) in Modern Data ArchitectureEvent Hub (i.e. Kafka) in Modern Data Architecture
Event Hub (i.e. Kafka) in Modern Data Architecture
ย 
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache KafkaSolutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
ย 
Event Hub (i.e. Kafka) in Modern Data (Analytics) Architecture
Event Hub (i.e. Kafka) in Modern Data (Analytics) ArchitectureEvent Hub (i.e. Kafka) in Modern Data (Analytics) Architecture
Event Hub (i.e. Kafka) in Modern Data (Analytics) Architecture
ย 
Building Event Driven (Micro)services with Apache Kafka
Building Event Driven (Micro)services with Apache KafkaBuilding Event Driven (Micro)services with Apache Kafka
Building Event Driven (Micro)services with Apache Kafka
ย 
Location Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache KafkaLocation Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache Kafka
ย 
Solutions for bi-directional integration between Oracle RDBMS and Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS and Apache KafkaSolutions for bi-directional integration between Oracle RDBMS and Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS and Apache Kafka
ย 
What is Apache Kafka? Why is it so popular? Should I use it?
What is Apache Kafka? Why is it so popular? Should I use it?What is Apache Kafka? Why is it so popular? Should I use it?
What is Apache Kafka? Why is it so popular? Should I use it?
ย 
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache KafkaSolutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
ย 
Location Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using KafkaLocation Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using Kafka
ย 
Streaming Visualisation
Streaming VisualisationStreaming Visualisation
Streaming Visualisation
ย 
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache KafkaSolutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
ย 
Fundamentals Big Data and AI Architecture
Fundamentals Big Data and AI ArchitectureFundamentals Big Data and AI Architecture
Fundamentals Big Data and AI Architecture
ย 
Location Analytics - Real-Time Geofencing using Kafka
Location Analytics - Real-Time Geofencing using Kafka Location Analytics - Real-Time Geofencing using Kafka
Location Analytics - Real-Time Geofencing using Kafka
ย 
Streaming Visualization
Streaming VisualizationStreaming Visualization
Streaming Visualization
ย 
Streaming Visualization
Streaming VisualizationStreaming Visualization
Streaming Visualization
ย 

Recently uploaded

CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female serviceCALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
anilsa9823
ย 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
bodapatigopi8531
ย 
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 

Recently uploaded (20)

Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
ย 
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธcall girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
ย 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
ย 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
ย 
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female serviceCALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
ย 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanโ€™s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanโ€™s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanโ€™s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanโ€™s ...
ย 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
ย 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
ย 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
ย 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
ย 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
ย 
Vip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS LiveVip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS Live
ย 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
ย 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
ย 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
ย 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
ย 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
ย 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
ย 
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
ย 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
ย 

Kafka as an event store - is it good enough?

  • 1. BASEL | BERN | BRUGG | BUKAREST | DรœSSELDORF | FRANKFURT A.M. | FREIBURG I.BR. | GENF HAMBURG | KOPENHAGEN | LAUSANNE | MANNHEIM | MรœNCHEN | STUTTGART | WIEN | ZรœRICH http://guidoschmutz.wordpress.comgschmutz Kafka as an Event Store โ€“ is it Good Enough? Guido Schmutz W-JAX Munich โ€“ 6.11.2019
  • 2. gschmutz Agenda 1. How do we build applications traditionally? 2. CQRS & Event Sourcing 3. What exactly is an Event Store? 4. Implementing Event Store 5. Summary
  • 3. BASEL | BERN | BRUGG | BUKAREST | DรœSSELDORF | FRANKFURT A.M. | FREIBURG I.BR. | GENF HAMBURG | KOPENHAGEN | LAUSANNE | MANNHEIM | MรœNCHEN | STUTTGART | WIEN | ZรœRICH Guido Working at Trivadis for more than 22 years Consultant, Trainer, Platform Architect for Java, Oracle, SOA and Big Data / Fast Data Oracle Groundbreaker Ambassador & Oracle ACE Director @gschmutz guidoschmutz.wordpress.com 173rd edition
  • 4. gschmutz How do we build applications traditionally?
  • 5. gschmutz Data Access Layer Monolithic System - using Layered Architecture User Interface Account UI Service Layer { } Account API Database Customer API REST Customer UI Domain Model Account DAO { }REST Customer DAO DB Model
  • 6. gschmutz Data Access Layer Monolithic System - using Layered Architecture User Interface Account UI Service Layer { } Account API Database Customer API REST Customer UI Domain Model Account DAO { }REST Customer DAO DB Model Object/Relational Impedance Mismatch โ€ข Traditional approach to persistence โ€ข Store current state โ€ข CRUD operations โ€ข Coupling between read & write โ€ข Increased Complexity
  • 7. gschmutz Data Access Layer Monolithic System - using Layered Architecture User Interface Account UI Service Layer { } Account API Database Customer API REST Customer UI Domain Model Account DAO { }REST Customer DAO DB Model โ€ข Traditional approach to persistence โ€ข Store current state โ€ข CRUD operations โ€ข Coupling between read & write โ€ข Increased Complexity SELECT acc.id, acc.account_number, acc.account_type.id, acct.name, cus.first_name, cus.last_name, addr.street, addr.city FROM account_t acc , account_type_t acct , customer_t cus , cust_adr_t cusa , address_t addr WHERE acc.account_type_id = acct.account_type_id AND adc.customer_id = cus.customer_id AND cusa.customer_id = cus.customer_id AND cusa.address_id = addr.address_id AND cusa.type = 'MAIN'
  • 8. gschmutz Microservices - using Layered Architecture Microservices โ€ฆ โ€ข are responsible for their data โ€ข might use NoSQL instead of RDBMS โ€ข often still use traditional approach to persistence โ€ข โ€œData silosโ€ do no longer support database join โ€ข keep synchronous communication to a minimum Customer Microservice { } Customer API Customer Customer Logic Account Microservice { } Account API Account Account Logic Product Microservice { } Product API Product Product Logic Finance App Finance UI UI Logic GUI REST REST REST sync request/response async, event pub/sub
  • 9. gschmutz Events Distribute to all handlers strong ordering reqโ€™s No results Queries Route with load balancing Sometimes scatter-gather Provide result Three mechanisms through which services can interact Commands Route to single handler Use consistent hashing Provide Result Adapted from Axon IQ
  • 10. gschmutz Domain Driven Design (DDD) โ€“ Concepts โ€ข Domain Objects โ€“ hold the state of the application โ€ข Entity โ€“ Domain Objects with an identity โ€ข Value Object โ€“ an immutable type that is distinguishable only by the state of its properties and has no identity โ€ข Aggregate - A cluster of domain objects that can be treated as a single unit โ€ข Aggregate Root โ€“ one object of aggregate is root object. Any reference from outside goes through aggregate root Aggregate Root Account Aggregate Customer Aggregate Aggregate Root
  • 11. gschmutz Microservices with Event-driven communication This is Event Streaming and not really Event Sourcing Customer Microservice { } Customer API Customer Customer Logic Account Microservice { } Order API Order Order Logic Product Microservice { } Product API Product Product Logic REST REST REST Event Hub (pub/sub) Customer Mat View sync request/response async, event pub/sub Finance App Finance UI UI Logic GUI
  • 13. gschmutz Command Query Responsibility Segregation (CQRS) Optimize for write and read differently API is split between โ€ข commands - trigger changes in state โ€ข queries - provide read access to the state Still using CRUD pattern, but separates โ€Rโ€ from CRUD Might involve eventual consistency between write and read model Data Storage Write Model Read Model (read-only) Service Command API Query API App UI Projection Handler UI Logic CDC command query project read insert update delete 1 2 3 4
  • 14. gschmutz Local CQRS vs. System Wide CQRS Local CQRS System-Wide CQRS Write Model Read Model (read-only) Service Command API Query API App UI Projection Handler UI Logic CDC command query project read insert update delete Write Model Read Model (read-only) Service Command API App UI Projection Handler UI Logic CDC command project insert update delete Service Write Model command Command API insert update delete
  • 15. gschmutz Event Sourcing โ€“ Persist state-changing events and not state # Timestamp Aggregate ID Event Event Payload 1 10 A32B3DE AccountCreated { id: 123, accountType: Savings} 2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000} 3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000} 4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500} AccountCreated id: 123 accountType: Savings MoneyDeposited id: 123 amount: 1000 MoneyDeposited id: 123 amount: 2000 MoneyWithdrawn id: 123 amount: 500 10 20 100 2000
  • 16. gschmutz Event Sourcing persists the state of an aggregate as a sequence of state-changing events Each event describes a state change that occurred to the aggregate in the past new event is appended to the list of events an aggregateโ€™s current state is reconstructed by replaying the events => a.k.a โ€rehydrationโ€ Rehydration also needed for queries Event Store ServiceApp UI UI Logic Command API & Handler Event Handler(s) Service Subscribe publish publish apply (append) REST Data Storage trigger replycommand command 1 2 3 4 5 5
  • 17. gschmutz Event Sourcing - โ€Rehydrateโ€ State 1. Create an empty Aggregate object 2. Read all events stored for that Aggregate from event store 3. Apply each event to the Aggregate object in the correct order AccountCreated id: 123 accountType: Savings MoneyDeposited id: 123 amount: 1000 MoneyDeposited id: 123 amount: 2000 MoneyWithdrawn id: 123 amount: 500 Account <empty> Account id: 123 accountType: Savings balance: 0 Account id: 123 accountType: Savings balance: 3000 transactions: [+1000, +2000] Account id: 123 accountType: Savings balance: 2500 transactions:[+1000, +2000, -500] Account id: 123 accountType: Savings balance: 1000 transactions: [+1000] applyTo applyTo applyTo applyTo
  • 18. gschmutz Event Sourcing โ€“ Write Path CreateAccount command Create an event for every state change of Aggregate Persist the stream to event store (preserving event order) AccountCreated id: 123 accountType: Savings 10 # Timestamp Aggregate ID Event Event Payload 1 10 A32B3DE AccountCreated { id: 123, accountType: Savings} Account Aggregate <empty>
  • 19. gschmutz Event Sourcing โ€“ Write Path DepositMoney command Create an event for every state change of Aggregate Persist the stream to event store (preserving event order) # Timestamp Aggregate ID Event Event Payload 1 10 A32B3DE AccountCreated { id: 123, accountType: Savings} 2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000} AccountCreated id: 123 accountType: Savings MoneyDeposited id: 123 amount: 1000 10 20 Account Aggregate id: 123 accountType: Savings balance: 0
  • 20. gschmutz Event Sourcing โ€“ Write Path DepositMoney command Create an event for every state change of Aggregate Persist the stream to event store (preserving event order) # Timestamp Aggregate ID Event Event Payload 1 10 A32B3DE AccountCreated { id: 123, accountType: Savings} 2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000} 3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000} AccountCreated id: 123 accountType: Savings MoneyDeposited id: 123 amount: 1000 MoneyDeposited id: 123 amount: 2000 10 20 100 Account Aggregate id: 123 accountType: Savings balance: 1000
  • 21. gschmutz Event Sourcing โ€“ Write Path WithdrawMoney command Create an event for every state change of Aggregate Persist the stream to event store (preserving event order) # Timestamp Aggregate ID Event Event Payload 1 10 A32B3DE AccountCreated { id: 123, accountType: Savings} 2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000} 3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000} 4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500} AccountCreated id: 123 accountType: Savings MoneyDeposited id: 123 amount: 1000 MoneyDeposited id: 123 amount: 2000 MoneyWithdrawn id: 123 amount: 500 10 20 100 2000 Account Aggregate id: 123 accountType: Savings balance: 3000
  • 22. gschmutz Event Sourcing - Potential Benefits 1. Subscribe to changes from other Aggregates 2. Examine a historical record of every change that has ever been applied on the model 3. Use the event store data for trend, forcast and other business analytics 4. Consider โ€œwhat ifโ€ questions by replaying events to Aggregates which have experimental enhancements 5. Patch errors by adding โ€correctionโ€ events (if it is legally allowed) 6. Perform โ€œundoโ€ and โ€œredoโ€ operations by replying varying sets of Events
  • 23. gschmutz Event Sourcing & CQRS Event sourcing is commonly combined with the CQRS pattern Combines best of Event Sourcing and CQRS Project events published by Event Store into Read Model (Materialized Views) Write Model and Read Model might only support eventual consistency AggregateApp UI UI Logic Command API & Handler Event Handler(s) REST Data Storage Query API Read Model (read-only) { } REST Projection Handler command query read 1 Event Store publish apply (append) trigger reply 2 3 4 5 publish project 5 6
  • 24. gschmutz Snapshot Optimization in Event Sequence # Timestamp Aggregate ID Event Event Payload 1 10 A32B3DE AccountCreated { id: 123, accountType: Savings} 2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000} 3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000} 4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500} # Timestamp Aggregate ID Event Event Payload 1 10 A32B3DE AccountCreated { id: 123, accountType: Savings} 2 20 A32B3DE MoneyDeposited { id: 123, amount: 1000} 3 100 A32B3DE MoneyDeposited { id: 123, amount: 2000} 4 2000 A32B3DE MoneyWithdrawn { id: 123, amount: 500} 5 2000 A32B3DE AccountSnapshot { id: 123, accountType: Savings, amount: 2500} 6 3000 A32B3DE MoneyWithdrawn { id: 123, amount: 500} Snapshots for optimizing rehydration
  • 25. gschmutz What is an Event Store?
  • 26. gschmutz Event Store Capabilities 1. Append Events efficiently 2. Read aggregateโ€™s events in order 3. Full Sequential Read (over all aggregates) 4. Consistent writes 5. Event versioning 6. Subscribable event stream 7. Correction events (O) 8. Ingestion & event time, bi- temporal (O) 9. Adhoc-Query on event store (O) 10.Snapshot Optimization (O) 11.High-Availability and Reliability (O)
  • 27. gschmutz How many Event Stores do we need ? { } API State Logic REST Event Store { } API State Logic REST Event Store Microservice { } API State Logic REST Event Store Microservice { } API State Logic REST Microservice { } API State Logic REST Event Store Event Microservice { } API State Logic REST OR Microservice Microservice
  • 29. gschmutz Event Store Implementations โ€ข Event Store (https://eventstore.org/) โ€“ by Greg Young โ€ข Axon Framework & Relational DB (https://axoniq.io/) - by Axon IQ โ€ข Axon DB (https://axoniq.io/) - by Axon IQ โ€ข Eventuate (https://eventuate.io/) โ€“ by Eventuate.io โ€ข Serialized (https://serialized.io/) โ€“ by Serialized.io โ€ข Build your own โ€ฆ. โ€ข Apache Kafka ???
  • 30. gschmutz Implementing an Event Store: using Kafka Broker
  • 31. gschmutz Apache Kafka โ€“ A Streaming Platform Kafka Cluster Consumer 1 Consume 2r Broker 1 Broker 2 Broker 3 Zookeeper Ensemble ZK 1 ZK 2ZK 3 Schema Registry Service 1 Management Control Center Kafka Manager KAdmin Producer 1 Producer 2 kafkacat Data Retention: โ€ข Never โ€ข Time (TTL) or Size-based โ€ข Log-Compacted based Producer3Producer3 ConsumerConsumer 3
  • 32. gschmutz No SPoF, highly available Consumer polls for new messages based on offset Apache Kafka โ€“ A Streaming Platform horizontally scalable, guaranteed order
  • 33. gschmutz Kafka as an Event Store 1. One, single-partitioned Kafka topic per Aggregate 2. One, partitioned Kafka topic per Aggregate Type 3. One single, highly partitioned Kafka topic for all Aggregate Types Should you put several Event Types in the same Kafka topic?: https://www.confluent.io/blog/put-several-event-types-kafka-topic/
  • 34. gschmutz 1) One, single-partitioned Kafka topic per Aggregate Instance This will guarantee that the events are stored in order Reading state of an aggregate is as simple as reading a topic from offset 0 Not really feasible as there will be just too many topics needed Kafka Customer Aggregate Account Aggregate
  • 35. gschmutz 2) One, partitioned Kafka topic per Aggregate Type โ€ข Required number of partitions is dependent on number of aggregate instances โ€ข Events are produced with aggregate-id as the key โ€ข guarantees that events are stored in order โ€ข For reading state of an aggregate, all data of all aggregate instances have to be scanned => slow โ€ข Possible optimization: only read the partition where aggregate instance is stored Kafka Customer Aggregate Account Aggregate
  • 36. gschmutz 3) One single, highly partitioned Kafka topic for all Aggregate Types โ€ข Required number of partitions is dependent on number of aggregate types * instances โ€ข Events are produced with aggregate-id as the key โ€ข guarantees that events are stored in order โ€ข For reading state of an aggregate, all data of all aggregate types & instances have to be scanned => really slow โ€ข Possible optimization: only read the partition where aggregate instance is stored Kafka Customer Aggregate Account Aggregate
  • 37. gschmutz Kafka as an Event Store # Capability Kafka Broker 1 Append events efficiently yes 2 Read aggregateโ€™s events in order not efficiently 3 Full sequential Read yes 4 Consistent Writes no 5 Event Versioning yes (if Avro is used) 6 Subscribeable Event Stream yes 7 Correction events (O) no 8 Event time & ingestion time, aka. Bi-temporal (O) no, but extra time can be passed in header 9 Snapshot Optimization (O) no 10 Ad-Hoc Query on Events (O) no 11 High-Availability and Reliability (O) yes
  • 38. gschmutz Event Store Kafka is not a Database โ€ฆ a Database is not Kafka We can use Kafka to run part of our own Event Store implementation add a database to get missing capabilities But be careful with Dual Write! โ€ข Would need distributed transactions โ€ข Otherwise no guarantee for both writes to happen Application { } API DatabaseBiz Logic REST Event Hub Other App Consumer
  • 39. gschmutz Event Store Kafka is not a Database โ€ฆ a Database is not Kafka We can use Kafka to run our own Event Store implementation adding a database to get missing capabilities But be careful with Dual Write! โ€ข Would need distributed transactions โ€ข Otherwise no guarantee for both writes to happen Application { } API DatabaseBiz Logic REST Event Hub Other App Consumer
  • 40. gschmutz Event StoreEvent Store Two solutions for avoiding ยซdual writeยป Write Event first then consume it to write it to database Write through database (CDC, outbox design pattern) Application { } API Database Biz Logic REST Event Hub Other App Biz Logic Application { } API Database REST Biz Logic CDC Event Hub CDC Connector Other App Biz Logic Publish
  • 41. gschmutz Implementing an Event Store: using Axon Framework
  • 42. gschmutz Axon โ€ข Spring Boot with Axon Framework for Application โ€ข MongoDB for Event Store โ€ข Kafka Broker for Event Bus โ€ข Kafka Streams or KSQL for Projection Handler โ€ข Kafka Connect / Spring Boot to persist in read model โ€ข NoSQL and/or RDBMS for read model AggregateApp UI UI Logic Command API & Handler Event Handler(s) REST Data Storage Query API Read Model (read-only) { } REST Projection Handler publish command query read project Event Store publish apply (append) trigger reply
  • 43. gschmutz Event Sourcing with Axon Account Events Account Command Account Aggregate Account Command Response Account App Event Store Account Customer Projection Command Handler Event Handler Account Query Projection Handler Query Handler Account Query Account Query Response Customer Event https://github.com/gschmutz/various-demos/tree/master/event-sourcing
  • 44. gschmutz Event Sourcing with Axon - Aggregate @Aggregate public class AccountAggregate{ @AggregateIdentifier private String id; private BigDecimal balance; private String forCustomerId; private String accountType; @CommandHandler ... @EventSourcingHandler ...
  • 45. gschmutz Event Sourcing with Axon - Command Handler @CommandHandler public AccountAggregate(AccountCreateCommand command) { Assert.hasLength(command.getForCustomerId(), "CustomerId must have a value"); Assert.hasLength(command.getAccountType(), "AccountType must have a value"); ... apply(new AccountCreatedEvent(command.getId(), command.getForCustomerId(), command.getAccountType(), new BigDecimal("0"))); }
  • 46. gschmutz Event Sourcing with Axon โ€“ Command Handler @CommandHandler public void on(WithdrawMoneyCommand command) { Assert.isTrue(command.getAmount() > 0, "Amount should be a positive number"); if(command.getAmount().compareTo(this.balance) > 0 ) { throw new InsufficientBalanceException( "Insufficient balance. Trying to withdraw:" + command.getAmount() + ", but current balance is: " + this.balance); } apply(new MoneyWithdrawnEvent(command.getId(), command.getAmount())); }
  • 47. gschmutz Event Sourcing with Axon โ€“ Event Handler @EventSourcingHandler public void handle(AccountCreatedEvent event) { id = event.getId(); forCustomerId = event.getForCustomerId(); accountType = event.getAccountType(); balance = event.getBalance(); } @EventSourcingHandler public void handle(MoneyWithdrawnEvent event) { balance = balance.subtract(event.getAmount()); }
  • 48. gschmutz Event Sourcing with Axon โ€“ Projection Handler public class AccountQueryController { @Autowired private AccountRepository accRepo; @EventHandler public void on(AccountCreatedEvent event,@Timestamp Instant instant) { Account account = new Account(event.getId(),event.getBalance(), event.getAccHolder(),event.getAccHolderName(), instant.toString()); accRepo.insert(account); } @EventHandler public void on(MoneyDepositedEvent event,@Timestamp Instant instant) { Account account = accRepo.findByAccountNo(event.getId()); account.setBalance(account.getBalance().add(event.getAmount())); account.setLastUpdated(instant.toString()); accRepo.save(account); }
  • 49. gschmutz Axon with Axon DB โ€ข Spring Boot with Axon Framework for Application โ€ข Axon DB for Event Store and Event Bus โ€ข Spring Boot for Projection Handler โ€ข Spring Boot to persist in read model โ€ข NoSQL and/or RDBMS for read model AggregateApp UI UI Logic Command API & Handler Event Handler(s) REST Data Storage Query API Read Model (read-only) { } REST Projection Handler publish command query read project Event Store publish apply (append) trigger reply
  • 50. gschmutz Axon as an Event Store # Capability Axon Framework Axon Framework & Axon DB 1 Append events efficiently yes yes 2 Read aggregateโ€™s events in order yes yes 3 Full sequential Read yes yes 4 Consistent Writes yes yes 5 Event Versioning yes yes 6 Subscribeable Event Stream yes yes 7 Correction events (O) no no 8 Event time & ingestion time, aka. Bi-temporal (O) no no 9 Snapshot Optimization (O) yes yes 10 Ad-Hoc Query on Events (O) yes yes 11 High-Availability and Reliability (O) possible yes
  • 51. gschmutz Implementing an Event Store: using Kafka and Kafka Streams
  • 52. gschmutz Apache Kafka โ€“ A Streaming Platform Source Connector Sink Connector trucking_ driver KSQL Engine Kafka Streams Kafka Broker
  • 53. gschmutz Kafka & Kafka Streams โ€ข Kafka Streams with State for Event Store โ€ข Kafka Broker for Event Bus โ€ข Kafka Streams or KSQL for Projection Handler โ€ข No reply of events, current snapshot is held in state store AggregateApp UI UI Logic Command API & Handler Event Handler(s) REST Data Storage Query API Read Model (read-only) { } REST Projection Handler publish command query read project Event Store publish apply (append) trigger reply
  • 54. gschmutz Account Event Handler Event Sourcing with Kafka Streams Account Created Money Deposited Money Withdrawn Command Account Command Handler Command Response Account API Account Snapshot Account Snapshot Customer Snapshot Account Customer API Account Customer Projection Account Customer Projector Account Customer Rec persist https://github.com/gschmutz/various-demos/tree/master/event-sourcing
  • 55. gschmutz Kafka & Kafka Streams as an Event Store # Capability Kafka & Kafka Streams 1 Append events efficiently yes 2 Read aggregateโ€™s events in order no (snapshot state only holds current snapshot) 3 Full sequential Read no 4 Consistent Writes yes (only one event per aggregate in flight) 5 Event Versioning yes (if Avro used) 6 Subscribeable Event Stream yes 7 Correction events (O) no 8 Event time & ingestion time, aka. Bi-temporal (O) no 9 Snapshot Optimization (O) yes (snapshot state only) 10 Ad-Hoc Query on events (O) limited (KSQL, Presto on Kafka, Drill on Kafka, โ€ฆ) 11 High-Availability and Reliability (O) yes
  • 57. gschmutz Summary โ€ข Event Sourcing and CQRS might be more natural to business people than IT => we are used to work with โ€œCRUD based persistenceโ€ โ€ข Event Sourcing provides history and logging for free โ€ข Kafka Broker alone is really โ€œjustโ€ Event Streaming, not Event Sourcing โ€ข Axon Framework supports the implementation of Event Sourcing applications with Pluggable Event Store and Event Bus implementations โ€ข Axon DB implements an Event Store and an Event Bus โ€ข Kafka and Kafka Streams with State Store supports event sourcing in a โ€streaming fashionโ€ with current snapshot