SlideShare a Scribd company logo
1 of 81
Download to read offline
Event-sourced 
architectures 
with Akka 
@Sander_Mak 
Luminis Technologies
Today's journey 
Event-sourcing 
Actors 
Akka Persistence 
Design for ES
Event-sourcing 
Is all about getting 
the facts straight
Typical 3 layer architecture 
UI/Client 
Service layer 
Database 
fetch ↝ modify ↝ store
Typical 3 layer architecture 
UI/Client 
Service layer 
Database 
fetch ↝ modify ↝ store 
Databases are 
shared mutable state
Typical entity modelling 
Concert 
! 
artist: String 
date: Date 
availableTickets: int 
price: int 
... 
TicketOrder 
! 
noOfTickets: int 
userId: String 
1 *
Typical entity modelling 
Concert 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
TicketOrder 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
noOfTickets = 3 
userId = 1
Typical entity modelling 
Changing the price 
Concert 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
TicketOrder 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
noOfTickets = 3 
userId = 1
Typical entity modelling 
Changing the price 
Concert 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
TicketOrder 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
noOfTickets = 3 
userId = 1 
✘100
Typical entity modelling 
Canceling an order 
Concert 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
TicketOrder 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
noOfTickets = 3 
userId = 1
Typical entity modelling 
Canceling an order 
Concert 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
TicketOrder 
TicketOrder 
! 
noOfTickets = 3 
userId = 1 
! 
noOfTickets = 3 
userId = 1
Update or delete statements in your app? 
Congratulations, you are 
! 
LOSING DATA EVERY DAY
Event-sourced modelling 
ConcertCreated 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
TicketsOrdered 
TicketsOrdered 
! 
noOfTickets = 3 
userId = 1 
TicketsOrdered 
! 
noOfTickets = 3 
! 
userId = 1 
noOfTickets = 3 
userId = 1 
time
Event-sourced modelling 
TicketsOrdered 
TicketsOrdered 
Changing the price 
ConcertCreated 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
TicketsOrdered 
! 
noOfTickets = 3 
userId = 1 
! 
noOfTickets = 3 
! 
userId = 1 
noOfTickets = 3 
userId = 1 
time
Event-sourced modelling 
TicketsOrdered 
TicketsOrdered 
Changing the price 
ConcertCreated 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
PriceChanged 
! 
price = 100 
TicketsOrdered 
! 
noOfTickets = 3 
userId = 1 
! 
noOfTickets = 3 
! 
userId = 1 
noOfTickets = 3 
userId = 1 
time
Event-sourced modelling 
ConcertCreated 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
PriceChanged 
! 
price = 100 
TicketsOrdered 
TicketsOrdered 
! 
noOfTickets = 3 
userId = 1 
TicketsOrdered 
! 
noOfTickets = 3 
! 
userId = 1 
noOfTickets = 3 
userId = 1 
Canceling an order 
time
Event-sourced modelling 
ConcertCreated 
! 
artist = Aerosmith 
availableTickets = 100 
price = 10 
... 
! 
PriceChanged 
! 
price = 100 
OrderCancelled 
! 
userId = 1 
TicketsOrdered 
TicketsOrdered 
! 
noOfTickets = 3 
userId = 1 
TicketsOrdered 
! 
noOfTickets = 3 
! 
userId = 1 
noOfTickets = 3 
userId = 1 
Canceling an order 
time
Event-sourced modelling 
‣ Immutable events 
‣ Append-only storage (scalable) 
‣ Replay events: reconstruct historic state 
‣ Events as integration mechanism 
‣ Events as audit mechanism
Event-sourcing: capture all changes to 
application state as a sequence of events 
Events: where from?
Commands & Events 
Do something (active) 
It happened. 
Deal with it. 
(facts) 
Can be rejected (validation) 
Can be responded to
Querying & event-sourcing 
How do you query a log?
Querying & event-sourcing 
How do you query a log? 
Command 
Query 
Responsibility 
Segregation
CQRS without ES 
Command Query 
UI/Client 
Service layer 
Database
CQRS without ES 
Command Query 
UI/Client 
Service layer 
Database 
Command Query 
UI/Client 
Command 
Model 
Datastore 
Query 
Model(s) 
DaDtaastatosrtoere Datastore 
?
Event-sourced CQRS 
Command Query 
UI/Client 
Command 
Model 
Journal 
Query 
Model(s) 
DaDtaastatosrtoere Datastore 
Events
Actors 
‣ Mature and open source 
‣ Scala & Java API 
‣ Akka Cluster
Actors 
"an island of consistency in a sea of concurrency" 
Actor 
! 
! 
! 
mailbox 
state 
behavior 
async message 
send 
Process message: 
‣ update state 
‣ send messages 
‣ change behavior 
Don't worry about 
concurrency
Actors 
A good fit for event-sourcing? 
Actor 
! 
! 
! 
mailbox 
state 
behavior 
mailbox is non-durable 
(lost messages) 
state is transient
Actors 
Just store all incoming messages? 
Actor 
! 
! 
! 
mailbox 
state 
behavior 
async message 
send 
store in journal 
Problems with 
command-sourcing: 
‣ side-effects 
‣ poisonous 
(failing) messages
Persistence 
‣ Experimental Akka module 
‣ Scala & Java API 
‣ Actor state persistence based 
on event-sourcing
Persistent Actor 
PersistentActor 
actor-id 
! 
! 
state 
! 
event 
async message 
send (command) 
‣ Derive events from 
commands 
‣ Store events 
‣ Update state 
‣ Perform side-effects 
event 
journal (actor-id)
Persistent Actor 
PersistentActor 
actor-id 
! 
! 
state 
! 
event 
! 
Recover by replaying 
events, that update the 
state (no side-effects) 
! 
event 
journal (actor-id)
Persistent Actor 
! 
case object Increment // command 
case object Incremented // event 
! 
class CounterActor extends PersistentActor { 
def persistenceId = "counter" 
! 
var state = 0 
! 
val receiveCommand: Receive = { 
case Increment => persist(Incremented) { evt => 
state += 1 
println("incremented") 
} 
} 
! 
val receiveRecover: Receive = { 
case Incremented => state += 1 
} 
}
Persistent Actor 
! 
case object Increment // command 
case object Incremented // event 
! 
class CounterActor extends PersistentActor { 
def persistenceId = "counter" 
! 
var state = 0 
! 
val receiveCommand: Receive = { 
case Increment => persist(Incremented) { evt => 
state += 1 
println("incremented") 
} 
} 
! 
val receiveRecover: Receive = { 
case Incremented => state += 1 
} 
}
Persistent Actor 
! 
case object Increment // command 
case object Incremented // event 
! 
class CounterActor extends PersistentActor { 
def persistenceId = "counter" 
! 
var state = 0 
! 
val receiveCommand: Receive = { 
case Increment => persist(Incremented) { evt => 
state += 1 
println("incremented") 
} 
} 
! 
val receiveRecover: Receive = { 
case Incremented => state += 1 
} 
} 
async callback 
(but safe to close 
over state)
Persistent Actor 
! 
case object Increment // command 
case object Incremented // event 
! 
class CounterActor extends PersistentActor { 
def persistenceId = "counter" 
! 
var state = 0 
! 
val receiveCommand: Receive = { 
case Increment => persist(Incremented) { evt => 
state += 1 
println("incremented") 
} 
} 
! 
val receiveRecover: Receive = { 
case Incremented => state += 1 
} 
}
Persistent Actor 
! 
case object Increment // command 
case object Incremented // event 
! 
class CounterActor extends PersistentActor { 
def persistenceId = "counter" 
! 
var state = 0 
! 
val receiveCommand: Receive = { 
case Increment => persist(Incremented) { evt => 
state += 1 
println("incremented") 
} 
} 
! 
val receiveRecover: Receive = { 
case Incremented => state += 1 
} 
} 
Isn't recovery 
with lots of events 
slow?
Snapshots 
class SnapshottingCounterActor extends PersistentActor { 
def persistenceId = "snapshotting-counter" 
! 
var state = 0 
! 
val receiveCommand: Receive = { 
case Increment => persist(Incremented) { evt => 
state += 1 
println("incremented") 
} 
case "takesnapshot" => saveSnapshot(state) 
} 
! 
val receiveRecover: Receive = { 
case Incremented => state += 1 
case SnapshotOffer(_, snapshotState: Int) => state = snapshotState 
} 
}
Snapshots 
class SnapshottingCounterActor extends PersistentActor { 
def persistenceId = "snapshotting-counter" 
! 
var state = 0 
! 
val receiveCommand: Receive = { 
case Increment => persist(Incremented) { evt => 
state += 1 
println("incremented") 
} 
case "takesnapshot" => saveSnapshot(state) 
} 
! 
val receiveRecover: Receive = { 
case Incremented => state += 1 
case SnapshotOffer(_, snapshotState: Int) => state = snapshotState 
} 
}
Journal & Snapshot 
Cassandra 
Cassandra 
Kafka Kafka 
MongoDB 
HBase 
DynamoDB 
MongoDB 
HBase 
MapDB 
JDBC JDBC 
Plugins:
Plugins: 
Serialization 
Default: Java serialization 
Pluggable through Akka: 
‣ Protobuf 
‣ Kryo 
‣ Avro 
‣ Your own
Persistent View 
Persistent 
Actor 
journal 
Persistent 
View 
Persistent 
View 
Views poll the journal 
‣ Eventually consistent 
‣ Polling configurable 
‣ Actor may be inactive 
‣ Views track single 
persistence-id 
‣ Views can have own 
snapshots 
snapshot store 
other 
datastore
Persistent View 
! 
"The Database is a cache 
of a subset of the log" 
- Pat Helland 
Persistent 
Actor 
journal 
Persistent 
View 
Persistent 
View 
snapshot store 
other 
datastore
Persistent View 
! 
case object ComplexQuery 
class CounterView extends PersistentView { 
override def persistenceId: String = "counter" 
override def viewId: String = "counter-view" 
var queryState = 0 
def receive: Receive = { 
case Incremented if isPersistent => { 
queryState = someVeryComplicatedCalculation(queryState) 
// Or update a document/graph/relational database 
} 
case ComplexQuery => { 
sender() ! queryState; 
// Or perform specialized query on datastore 
} 
} 
}
Persistent View 
! 
case object ComplexQuery 
class CounterView extends PersistentView { 
override def persistenceId: String = "counter" 
override def viewId: String = "counter-view" 
var queryState = 0 
def receive: Receive = { 
case Incremented if isPersistent => { 
queryState = someVeryComplicatedCalculation(queryState) 
// Or update a document/graph/relational database 
} 
case ComplexQuery => { 
sender() ! queryState; 
// Or perform specialized query on datastore 
} 
} 
}
Persistent View 
! 
case object ComplexQuery 
class CounterView extends PersistentView { 
override def persistenceId: String = "counter" 
override def viewId: String = "counter-view" 
var queryState = 0 
def receive: Receive = { 
case Incremented if isPersistent => { 
queryState = someVeryComplicatedCalculation(queryState) 
// Or update a document/graph/relational database 
} 
case ComplexQuery => { 
sender() ! queryState; 
// Or perform specialized query on datastore 
} 
} 
}
Sell concert tickets 
ConcertActor 
! 
! 
price 
availableTickets 
startTime 
salesRecords 
! 
Commands: 
CreateConcert 
BuyTickets 
ChangePrice 
AddCapacity 
journal 
ConcertHistoryView 
! 
! 
! 
! 
60 
45 
30 
15 
0 
100 
50 
0 
$50 $75 $100 
code @ bit.ly/akka-es
Scaling out: Akka Cluster 
Single writer: persistent actor must be singleton, views may be anywhere 
Cluster node Cluster node Cluster node 
Persistent 
Persistent 
Actor 
id = "1" 
Actor 
id = "1" 
Persistent 
Actor 
id = "1" 
Persistent 
Actor 
id = "2" 
Persistent 
Actor 
id = "1" 
Persistent 
Actor 
id = "3" 
distributed journal
Scaling out: Akka Cluster 
Single writer: persistent actor must be singleton, views may be anywhere 
How are persistent actors distributed over cluster? 
Cluster node Cluster node Cluster node 
Persistent 
Persistent 
Actor 
id = "1" 
Actor 
id = "1" 
Persistent 
Actor 
id = "1" 
Persistent 
Actor 
id = "2" 
Persistent 
Actor 
id = "1" 
Persistent 
Actor 
id = "3" 
distributed journal
Scaling out: Akka Cluster 
Sharding: Coordinator assigns ShardRegions to nodes (consistent hashing) 
Actors in shard can be activated/passivated, rebalanced 
Cluster node Cluster node Cluster node 
Persistent 
Persistent 
Actor 
id = "1" 
Actor 
id = "1" 
Persistent 
Actor 
id = "1" 
Persistent 
Actor 
id = "2" 
Persistent 
Actor 
id = "1" 
Persistent 
Actor 
id = "3" 
Shard 
Region 
Shard 
Region 
Shard 
Region 
Coordinator 
distributed journal
Scaling out: Sharding 
val idExtractor: ShardRegion.IdExtractor = { 
case cmd: Command => (cmd.concertId, cmd) 
} 
IdExtractor allows ShardRegion 
to route commands to actors
Scaling out: Sharding 
val idExtractor: ShardRegion.IdExtractor = { 
case cmd: Command => (cmd.concertId, cmd) 
} 
IdExtractor allows ShardRegion 
to route commands to actors 
val shardResolver: ShardRegion.ShardResolver = 
msg => msg match { 
case cmd: Command => hash(cmd.concert) 
} 
ShardResolver assigns new 
actors to shards
Scaling out: Sharding 
val idExtractor: ShardRegion.IdExtractor = { 
case cmd: Command => (cmd.concertId, cmd) 
} 
IdExtractor allows ShardRegion 
to route commands to actors 
val shardResolver: ShardRegion.ShardResolver = 
msg => msg match { 
case cmd: Command => hash(cmd.concert) 
} 
ShardResolver assigns new 
actors to shards 
ClusterSharding(system).start( 
typeName = "Concert", 
entryProps = Some(ConcertActor.props()), 
idExtractor = ConcertActor.idExtractor, 
shardResolver = ConcertActor.shardResolver) 
Initialize ClusterSharding 
extension
Scaling out: Sharding 
val idExtractor: ShardRegion.IdExtractor = { 
case cmd: Command => (cmd.concertId, cmd) 
} 
IdExtractor allows ShardRegion 
to route commands to actors 
val shardResolver: ShardRegion.ShardResolver = 
msg => msg match { 
case cmd: Command => hash(cmd.concert) 
} 
ShardResolver assigns new 
actors to shards 
ClusterSharding(system).start( 
typeName = "Concert", 
entryProps = Some(ConcertActor.props()), 
idExtractor = ConcertActor.idExtractor, 
shardResolver = ConcertActor.shardResolver) 
Initialize ClusterSharding 
extension 
val concertRegion: ActorRef = ClusterSharding(system).shardRegion("Concert") 
concertRegion ! BuyTickets(concertId = 123, user = "Sander", quantity = 1)
Design for event-sourcing
DDD+CQRS+ES 
DDD: Domain Driven Design 
Fully consistent Fully consistent 
Aggregate 
! 
Aggregate 
! 
Eventual 
Consistency 
Root entity 
enteitnytity entity 
Root entity 
entity entity
DDD+CQRS+ES 
DDD: Domain Driven Design 
Fully consistent Fully consistent 
Aggregate 
! 
Aggregate 
! 
Eventual 
Consistency 
Root entity 
enteitnytity entity 
Root entity 
entity entity 
Persistent 
Actor 
Persistent 
Actor 
Message 
passing
DDD+CQRS+ES 
DDD: Domain Driven Design 
Fully consistent Fully consistent 
Aggregate 
! 
Aggregate 
! 
Eventual 
Consistency 
Akka Persistence is not a DDD/CQRS framework 
But it comes awfully close 
Root entity 
enteitnytity entity 
Root entity 
entity entity 
Persistent 
Actor 
Persistent 
Actor 
Message 
passing
Designing aggregates 
Focus on events 
Structural representation(s) follow ERD
Designing aggregates 
Focus on events 
Structural representation(s) follow ERD 
Size matters. Faster replay, less write contention 
Don't store derived info (use views)
Designing aggregates 
Focus on events 
Structural representation(s) follow ERD 
Size matters. Faster replay, less write contention 
Don't store derived info (use views) 
With CQRS read-your-writes is not the default 
When you need this, model it in a single Aggregate
Between aggregates 
‣ Send commands to other aggregates by id 
! 
‣ No distributed transactions 
‣ Use business level ack/nacks 
‣ SendInvoice -> InvoiceSent/InvoiceCouldNotBeSent 
‣ Compensating actions for failure 
‣ No guaranteed delivery 
‣ Alternative: AtLeastOnceDelivery
Between systems 
System integration through event-sourcing 
topic 1 topic 2 derived 
Kafka 
Application 
Akka 
Persistence 
Spark 
Streaming 
External 
Application
Designing commands 
‣ Self-contained 
‣ Unit of atomic change 
‣ Granularity and intent
Designing commands 
‣ Self-contained 
‣ Unit of atomic change 
‣ Granularity and intent 
UpdateAddress 
street = ... 
city = ... vs 
ChangeStreet 
street = ... 
ChangeCity 
street = ...
Designing commands 
‣ Self-contained 
‣ Unit of atomic change 
‣ Granularity and intent 
UpdateAddress 
street = ... 
city = ... vs 
ChangeStreet 
street = ... 
ChangeCity 
street = ... 
Move 
street = ... 
city = ... vs
Designing events 
CreateConcert
Designing events 
CreateConcert ConcertCreated 
Past tense 
Irrefutable
Designing events 
CreateConcert ConcertCreated 
Past tense 
Irrefutable 
TicketsBought 
newCapacity = 99
Designing events 
CreateConcert ConcertCreated 
Past tense 
Irrefutable 
TicketsBought 
newCapacity = 99 
TicketsBought 
quantity = 1 
Delta-based 
No derived info
Designing events 
CreateConcert 
ConcertCreated 
ConcertCreated 
Past tense 
Irrefutable 
TicketsBought 
newCapacity = 99 
TicketsBought 
quantity = 1 
Delta-based 
No derived info
Designing events 
CreateConcert 
ConcertCreated ConcertCreated 
who/when/.. 
Add metadata 
to all events 
ConcertCreated 
Past tense 
Irrefutable 
TicketsBought 
newCapacity = 99 
TicketsBought 
quantity = 1 
Delta-based 
No derived info
Versioning 
Actor logic: 
v1 and v2 
event v2 
event v2 
event v1 
event v1
Versioning 
Actor logic: 
v1 and v2 
event v2 
event v2 
event v1 
event v1 
Actor logic: 
v2 
event v2 
event v2 
event v2 
event v1 
event v2 
event v1
Versioning 
Actor logic: 
v1 and v2 
event v2 
event v2 
event v1 
event v1 
Actor logic: 
v2 
event v2 
event v2 
event v2 
event v1 
event v2 
event v1 
Actor logic: 
v2 
event v2 
event v2 
snapshot 
event v1 
event v1
Versioning 
Actor logic: 
v1 and v2 
event v2 
event v2 
event v1 
event v1 
Actor logic: 
v2 
event v2 
event v2 
event v2 
event v1 
event v2 
event v1 
Actor logic: 
v2 
event v2 
event v2 
snapshot 
event v1 
event v1 
‣ Be backwards 
compatible 
‣ Avro/Protobuf 
‣ Serializer can do 
translation 
! 
‣ Snapshot 
versioning: 
harder
In conclusion 
Event-sourcing is... 
Powerful 
but unfamiliar
In conclusion 
Event-sourcing is... 
Powerful 
but unfamiliar 
Combines well with 
UI/Client 
Command 
Model 
Journal 
Query 
Model 
DaDtaastatosrtoere Datastore 
Events 
DDD/CQRS
In conclusion 
Event-sourcing is... 
Powerful 
but unfamiliar 
Combines well with 
UI/Client 
Command 
Model 
Journal 
Query 
Model 
DaDtaastatosrtoere Datastore 
Events 
DDD/CQRS 
Not a
In conclusion 
Akka Actors & Akka Persistence 
A good fit for 
event-sourcing 
PersistentActor 
actor-id 
! 
! 
state 
! 
async message 
send 
(command) 
event 
event 
journal (actor-id) 
Experimental, view 
improvements needed
Thank you. 
! 
code @ bit.ly/akka-es 
@Sander_Mak 
Luminis Technologies

More Related Content

What's hot

Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...
Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...
Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...Flink Forward
 
Spark streaming
Spark streamingSpark streaming
Spark streamingWhiteklay
 
Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...
Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...
Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...Soroosh Khodami
 
Introduction to Actor Model and Akka
Introduction to Actor Model and AkkaIntroduction to Actor Model and Akka
Introduction to Actor Model and AkkaYung-Lin Ho
 
Apache Flink and what it is used for
Apache Flink and what it is used forApache Flink and what it is used for
Apache Flink and what it is used forAljoscha Krettek
 
Apache Flink: API, runtime, and project roadmap
Apache Flink: API, runtime, and project roadmapApache Flink: API, runtime, and project roadmap
Apache Flink: API, runtime, and project roadmapKostas Tzoumas
 
Flink history, roadmap and vision
Flink history, roadmap and visionFlink history, roadmap and vision
Flink history, roadmap and visionStephan Ewen
 
Tame the small files problem and optimize data layout for streaming ingestion...
Tame the small files problem and optimize data layout for streaming ingestion...Tame the small files problem and optimize data layout for streaming ingestion...
Tame the small files problem and optimize data layout for streaming ingestion...Flink Forward
 
Airflow Clustering and High Availability
Airflow Clustering and High AvailabilityAirflow Clustering and High Availability
Airflow Clustering and High AvailabilityRobert Sanders
 
Evening out the uneven: dealing with skew in Flink
Evening out the uneven: dealing with skew in FlinkEvening out the uneven: dealing with skew in Flink
Evening out the uneven: dealing with skew in FlinkFlink Forward
 
Multithreading and Actors
Multithreading and ActorsMultithreading and Actors
Multithreading and ActorsDiego Pacheco
 
Apache Flink @ NYC Flink Meetup
Apache Flink @ NYC Flink MeetupApache Flink @ NYC Flink Meetup
Apache Flink @ NYC Flink MeetupStephan Ewen
 
Stream processing with Apache Flink (Timo Walther - Ververica)
Stream processing with Apache Flink (Timo Walther - Ververica)Stream processing with Apache Flink (Timo Walther - Ververica)
Stream processing with Apache Flink (Timo Walther - Ververica)KafkaZone
 
Handling eventual consistency in a transactional world with Matteo Cimini and...
Handling eventual consistency in a transactional world with Matteo Cimini and...Handling eventual consistency in a transactional world with Matteo Cimini and...
Handling eventual consistency in a transactional world with Matteo Cimini and...HostedbyConfluent
 
Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...
Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...
Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...Flink Forward
 
Unified Big Data Processing with Apache Spark (QCON 2014)
Unified Big Data Processing with Apache Spark (QCON 2014)Unified Big Data Processing with Apache Spark (QCON 2014)
Unified Big Data Processing with Apache Spark (QCON 2014)Databricks
 
PySpark Best Practices
PySpark Best PracticesPySpark Best Practices
PySpark Best PracticesCloudera, Inc.
 
Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...
Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...
Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...HostedbyConfluent
 

What's hot (20)

Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...
Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...
Streaming Event Time Partitioning with Apache Flink and Apache Iceberg - Juli...
 
Spark streaming
Spark streamingSpark streaming
Spark streaming
 
Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...
Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...
Why And When Should We Consider Stream Processing In Our Solutions Teqnation ...
 
Introduction to Actor Model and Akka
Introduction to Actor Model and AkkaIntroduction to Actor Model and Akka
Introduction to Actor Model and Akka
 
Apache Flink and what it is used for
Apache Flink and what it is used forApache Flink and what it is used for
Apache Flink and what it is used for
 
Apache Flink: API, runtime, and project roadmap
Apache Flink: API, runtime, and project roadmapApache Flink: API, runtime, and project roadmap
Apache Flink: API, runtime, and project roadmap
 
Flink history, roadmap and vision
Flink history, roadmap and visionFlink history, roadmap and vision
Flink history, roadmap and vision
 
react redux.pdf
react redux.pdfreact redux.pdf
react redux.pdf
 
Tame the small files problem and optimize data layout for streaming ingestion...
Tame the small files problem and optimize data layout for streaming ingestion...Tame the small files problem and optimize data layout for streaming ingestion...
Tame the small files problem and optimize data layout for streaming ingestion...
 
Airflow Clustering and High Availability
Airflow Clustering and High AvailabilityAirflow Clustering and High Availability
Airflow Clustering and High Availability
 
Evening out the uneven: dealing with skew in Flink
Evening out the uneven: dealing with skew in FlinkEvening out the uneven: dealing with skew in Flink
Evening out the uneven: dealing with skew in Flink
 
Multithreading and Actors
Multithreading and ActorsMultithreading and Actors
Multithreading and Actors
 
Apache Flink @ NYC Flink Meetup
Apache Flink @ NYC Flink MeetupApache Flink @ NYC Flink Meetup
Apache Flink @ NYC Flink Meetup
 
Stream processing with Apache Flink (Timo Walther - Ververica)
Stream processing with Apache Flink (Timo Walther - Ververica)Stream processing with Apache Flink (Timo Walther - Ververica)
Stream processing with Apache Flink (Timo Walther - Ververica)
 
Handling eventual consistency in a transactional world with Matteo Cimini and...
Handling eventual consistency in a transactional world with Matteo Cimini and...Handling eventual consistency in a transactional world with Matteo Cimini and...
Handling eventual consistency in a transactional world with Matteo Cimini and...
 
Java script aula 07 - eventos
Java script   aula 07 - eventosJava script   aula 07 - eventos
Java script aula 07 - eventos
 
Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...
Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...
Flink Forward Berlin 2017: Stefan Richter - A look at Flink's internal data s...
 
Unified Big Data Processing with Apache Spark (QCON 2014)
Unified Big Data Processing with Apache Spark (QCON 2014)Unified Big Data Processing with Apache Spark (QCON 2014)
Unified Big Data Processing with Apache Spark (QCON 2014)
 
PySpark Best Practices
PySpark Best PracticesPySpark Best Practices
PySpark Best Practices
 
Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...
Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...
Analyzing Petabyte Scale Financial Data with Apache Pinot and Apache Kafka | ...
 

Similar to Event-sourced architectures with Akka

DDDing Tools = Akka Persistence
DDDing Tools = Akka PersistenceDDDing Tools = Akka Persistence
DDDing Tools = Akka PersistenceKonrad Malawski
 
Resilient Applications with Akka Persistence - Scaladays 2014
Resilient Applications with Akka Persistence - Scaladays 2014Resilient Applications with Akka Persistence - Scaladays 2014
Resilient Applications with Akka Persistence - Scaladays 2014Björn Antonsson
 
Akka persistence == event sourcing in 30 minutes
Akka persistence == event sourcing in 30 minutesAkka persistence == event sourcing in 30 minutes
Akka persistence == event sourcing in 30 minutesKonrad Malawski
 
HBase RowKey design for Akka Persistence
HBase RowKey design for Akka PersistenceHBase RowKey design for Akka Persistence
HBase RowKey design for Akka PersistenceKonrad Malawski
 
Async Redux Actions With RxJS - React Rally 2016
Async Redux Actions With RxJS - React Rally 2016Async Redux Actions With RxJS - React Rally 2016
Async Redux Actions With RxJS - React Rally 2016Ben Lesh
 
Using Akka Persistence to build a configuration datastore
Using Akka Persistence to build a configuration datastoreUsing Akka Persistence to build a configuration datastore
Using Akka Persistence to build a configuration datastoreAnargyros Kiourkos
 
Data in Motion: Streaming Static Data Efficiently
Data in Motion: Streaming Static Data EfficientlyData in Motion: Streaming Static Data Efficiently
Data in Motion: Streaming Static Data EfficientlyMartin Zapletal
 
RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術名辰 洪
 
Think Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJSThink Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJSAdam L Barrett
 
Reactive Summit 2017
Reactive Summit 2017Reactive Summit 2017
Reactive Summit 2017janm399
 
rx.js make async programming simpler
rx.js make async programming simplerrx.js make async programming simpler
rx.js make async programming simplerAlexander Mostovenko
 
WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...
WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...
WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...GeeksLab Odessa
 
Server Side Events
Server Side EventsServer Side Events
Server Side Eventsthepilif
 
Data in Motion: Streaming Static Data Efficiently 2
Data in Motion: Streaming Static Data Efficiently 2Data in Motion: Streaming Static Data Efficiently 2
Data in Motion: Streaming Static Data Efficiently 2Martin Zapletal
 
Implementing Server Side Data Synchronization for Mobile Apps
Implementing Server Side Data Synchronization for Mobile AppsImplementing Server Side Data Synchronization for Mobile Apps
Implementing Server Side Data Synchronization for Mobile AppsMichele Orselli
 
RxJS - The Reactive extensions for JavaScript
RxJS - The Reactive extensions for JavaScriptRxJS - The Reactive extensions for JavaScript
RxJS - The Reactive extensions for JavaScriptViliam Elischer
 

Similar to Event-sourced architectures with Akka (20)

DDDing Tools = Akka Persistence
DDDing Tools = Akka PersistenceDDDing Tools = Akka Persistence
DDDing Tools = Akka Persistence
 
Resilient Applications with Akka Persistence - Scaladays 2014
Resilient Applications with Akka Persistence - Scaladays 2014Resilient Applications with Akka Persistence - Scaladays 2014
Resilient Applications with Akka Persistence - Scaladays 2014
 
Akka persistence == event sourcing in 30 minutes
Akka persistence == event sourcing in 30 minutesAkka persistence == event sourcing in 30 minutes
Akka persistence == event sourcing in 30 minutes
 
HBase RowKey design for Akka Persistence
HBase RowKey design for Akka PersistenceHBase RowKey design for Akka Persistence
HBase RowKey design for Akka Persistence
 
Async Redux Actions With RxJS - React Rally 2016
Async Redux Actions With RxJS - React Rally 2016Async Redux Actions With RxJS - React Rally 2016
Async Redux Actions With RxJS - React Rally 2016
 
Using Akka Persistence to build a configuration datastore
Using Akka Persistence to build a configuration datastoreUsing Akka Persistence to build a configuration datastore
Using Akka Persistence to build a configuration datastore
 
Kotlin Redux
Kotlin ReduxKotlin Redux
Kotlin Redux
 
Data in Motion: Streaming Static Data Efficiently
Data in Motion: Streaming Static Data EfficientlyData in Motion: Streaming Static Data Efficiently
Data in Motion: Streaming Static Data Efficiently
 
RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術
 
Think Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJSThink Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJS
 
Reactive Summit 2017
Reactive Summit 2017Reactive Summit 2017
Reactive Summit 2017
 
Advanced redux
Advanced reduxAdvanced redux
Advanced redux
 
rx.js make async programming simpler
rx.js make async programming simplerrx.js make async programming simpler
rx.js make async programming simpler
 
WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...
WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...
WebCamp:Front-end Developers Day. Александр Мостовенко "Rx.js - делаем асинхр...
 
Rxjs kyivjs 2015
Rxjs kyivjs 2015Rxjs kyivjs 2015
Rxjs kyivjs 2015
 
Server Side Events
Server Side EventsServer Side Events
Server Side Events
 
ReactJS
ReactJSReactJS
ReactJS
 
Data in Motion: Streaming Static Data Efficiently 2
Data in Motion: Streaming Static Data Efficiently 2Data in Motion: Streaming Static Data Efficiently 2
Data in Motion: Streaming Static Data Efficiently 2
 
Implementing Server Side Data Synchronization for Mobile Apps
Implementing Server Side Data Synchronization for Mobile AppsImplementing Server Side Data Synchronization for Mobile Apps
Implementing Server Side Data Synchronization for Mobile Apps
 
RxJS - The Reactive extensions for JavaScript
RxJS - The Reactive extensions for JavaScriptRxJS - The Reactive extensions for JavaScript
RxJS - The Reactive extensions for JavaScript
 

More from Sander Mak (@Sander_Mak)

TypeScript: coding JavaScript without the pain
TypeScript: coding JavaScript without the painTypeScript: coding JavaScript without the pain
TypeScript: coding JavaScript without the painSander Mak (@Sander_Mak)
 
The Ultimate Dependency Manager Shootout (QCon NY 2014)
The Ultimate Dependency Manager Shootout (QCon NY 2014)The Ultimate Dependency Manager Shootout (QCon NY 2014)
The Ultimate Dependency Manager Shootout (QCon NY 2014)Sander Mak (@Sander_Mak)
 
Cross-Build Injection attacks: how safe is your Java build?
Cross-Build Injection attacks: how safe is your Java build?Cross-Build Injection attacks: how safe is your Java build?
Cross-Build Injection attacks: how safe is your Java build?Sander Mak (@Sander_Mak)
 
Hibernate Performance Tuning (JEEConf 2012)
Hibernate Performance Tuning (JEEConf 2012)Hibernate Performance Tuning (JEEConf 2012)
Hibernate Performance Tuning (JEEConf 2012)Sander Mak (@Sander_Mak)
 

More from Sander Mak (@Sander_Mak) (20)

Scalable Application Development @ Picnic
Scalable Application Development @ PicnicScalable Application Development @ Picnic
Scalable Application Development @ Picnic
 
Coding Your Way to Java 13
Coding Your Way to Java 13Coding Your Way to Java 13
Coding Your Way to Java 13
 
Coding Your Way to Java 12
Coding Your Way to Java 12Coding Your Way to Java 12
Coding Your Way to Java 12
 
Java Modularity: the Year After
Java Modularity: the Year AfterJava Modularity: the Year After
Java Modularity: the Year After
 
Desiging for Modularity with Java 9
Desiging for Modularity with Java 9Desiging for Modularity with Java 9
Desiging for Modularity with Java 9
 
Modules or microservices?
Modules or microservices?Modules or microservices?
Modules or microservices?
 
Migrating to Java 9 Modules
Migrating to Java 9 ModulesMigrating to Java 9 Modules
Migrating to Java 9 Modules
 
Java 9 Modularity in Action
Java 9 Modularity in ActionJava 9 Modularity in Action
Java 9 Modularity in Action
 
Java modularity: life after Java 9
Java modularity: life after Java 9Java modularity: life after Java 9
Java modularity: life after Java 9
 
Provisioning the IoT
Provisioning the IoTProvisioning the IoT
Provisioning the IoT
 
TypeScript: coding JavaScript without the pain
TypeScript: coding JavaScript without the painTypeScript: coding JavaScript without the pain
TypeScript: coding JavaScript without the pain
 
The Ultimate Dependency Manager Shootout (QCon NY 2014)
The Ultimate Dependency Manager Shootout (QCon NY 2014)The Ultimate Dependency Manager Shootout (QCon NY 2014)
The Ultimate Dependency Manager Shootout (QCon NY 2014)
 
Modular JavaScript
Modular JavaScriptModular JavaScript
Modular JavaScript
 
Modularity in the Cloud
Modularity in the CloudModularity in the Cloud
Modularity in the Cloud
 
Cross-Build Injection attacks: how safe is your Java build?
Cross-Build Injection attacks: how safe is your Java build?Cross-Build Injection attacks: how safe is your Java build?
Cross-Build Injection attacks: how safe is your Java build?
 
Scala & Lift (JEEConf 2012)
Scala & Lift (JEEConf 2012)Scala & Lift (JEEConf 2012)
Scala & Lift (JEEConf 2012)
 
Hibernate Performance Tuning (JEEConf 2012)
Hibernate Performance Tuning (JEEConf 2012)Hibernate Performance Tuning (JEEConf 2012)
Hibernate Performance Tuning (JEEConf 2012)
 
Akka (BeJUG)
Akka (BeJUG)Akka (BeJUG)
Akka (BeJUG)
 
Fork Join (BeJUG 2012)
Fork Join (BeJUG 2012)Fork Join (BeJUG 2012)
Fork Join (BeJUG 2012)
 
Fork/Join for Fun and Profit!
Fork/Join for Fun and Profit!Fork/Join for Fun and Profit!
Fork/Join for Fun and Profit!
 

Recently uploaded

OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
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 GoalsJhone kinadey
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionOnePlan Solutions
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdfPearlKirahMaeRagusta1
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesVictorSzoltysek
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 

Recently uploaded (20)

OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
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
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 

Event-sourced architectures with Akka

  • 1. Event-sourced architectures with Akka @Sander_Mak Luminis Technologies
  • 2. Today's journey Event-sourcing Actors Akka Persistence Design for ES
  • 3. Event-sourcing Is all about getting the facts straight
  • 4. Typical 3 layer architecture UI/Client Service layer Database fetch ↝ modify ↝ store
  • 5. Typical 3 layer architecture UI/Client Service layer Database fetch ↝ modify ↝ store Databases are shared mutable state
  • 6. Typical entity modelling Concert ! artist: String date: Date availableTickets: int price: int ... TicketOrder ! noOfTickets: int userId: String 1 *
  • 7. Typical entity modelling Concert ! artist = Aerosmith availableTickets = 100 price = 10 ... ! TicketOrder TicketOrder ! noOfTickets = 3 userId = 1 TicketOrder ! noOfTickets = 3 userId = 1 noOfTickets = 3 userId = 1
  • 8. Typical entity modelling Changing the price Concert ! artist = Aerosmith availableTickets = 100 price = 10 ... ! TicketOrder TicketOrder ! noOfTickets = 3 userId = 1 TicketOrder ! noOfTickets = 3 userId = 1 noOfTickets = 3 userId = 1
  • 9. Typical entity modelling Changing the price Concert ! artist = Aerosmith availableTickets = 100 price = 10 ... ! TicketOrder TicketOrder ! noOfTickets = 3 userId = 1 TicketOrder ! noOfTickets = 3 userId = 1 noOfTickets = 3 userId = 1 ✘100
  • 10. Typical entity modelling Canceling an order Concert ! artist = Aerosmith availableTickets = 100 price = 10 ... ! TicketOrder TicketOrder ! noOfTickets = 3 userId = 1 TicketOrder ! noOfTickets = 3 userId = 1 noOfTickets = 3 userId = 1
  • 11. Typical entity modelling Canceling an order Concert ! artist = Aerosmith availableTickets = 100 price = 10 ... ! TicketOrder TicketOrder ! noOfTickets = 3 userId = 1 ! noOfTickets = 3 userId = 1
  • 12. Update or delete statements in your app? Congratulations, you are ! LOSING DATA EVERY DAY
  • 13. Event-sourced modelling ConcertCreated ! artist = Aerosmith availableTickets = 100 price = 10 ... ! TicketsOrdered TicketsOrdered ! noOfTickets = 3 userId = 1 TicketsOrdered ! noOfTickets = 3 ! userId = 1 noOfTickets = 3 userId = 1 time
  • 14. Event-sourced modelling TicketsOrdered TicketsOrdered Changing the price ConcertCreated ! artist = Aerosmith availableTickets = 100 price = 10 ... ! TicketsOrdered ! noOfTickets = 3 userId = 1 ! noOfTickets = 3 ! userId = 1 noOfTickets = 3 userId = 1 time
  • 15. Event-sourced modelling TicketsOrdered TicketsOrdered Changing the price ConcertCreated ! artist = Aerosmith availableTickets = 100 price = 10 ... ! PriceChanged ! price = 100 TicketsOrdered ! noOfTickets = 3 userId = 1 ! noOfTickets = 3 ! userId = 1 noOfTickets = 3 userId = 1 time
  • 16. Event-sourced modelling ConcertCreated ! artist = Aerosmith availableTickets = 100 price = 10 ... ! PriceChanged ! price = 100 TicketsOrdered TicketsOrdered ! noOfTickets = 3 userId = 1 TicketsOrdered ! noOfTickets = 3 ! userId = 1 noOfTickets = 3 userId = 1 Canceling an order time
  • 17. Event-sourced modelling ConcertCreated ! artist = Aerosmith availableTickets = 100 price = 10 ... ! PriceChanged ! price = 100 OrderCancelled ! userId = 1 TicketsOrdered TicketsOrdered ! noOfTickets = 3 userId = 1 TicketsOrdered ! noOfTickets = 3 ! userId = 1 noOfTickets = 3 userId = 1 Canceling an order time
  • 18. Event-sourced modelling ‣ Immutable events ‣ Append-only storage (scalable) ‣ Replay events: reconstruct historic state ‣ Events as integration mechanism ‣ Events as audit mechanism
  • 19. Event-sourcing: capture all changes to application state as a sequence of events Events: where from?
  • 20. Commands & Events Do something (active) It happened. Deal with it. (facts) Can be rejected (validation) Can be responded to
  • 21. Querying & event-sourcing How do you query a log?
  • 22. Querying & event-sourcing How do you query a log? Command Query Responsibility Segregation
  • 23. CQRS without ES Command Query UI/Client Service layer Database
  • 24. CQRS without ES Command Query UI/Client Service layer Database Command Query UI/Client Command Model Datastore Query Model(s) DaDtaastatosrtoere Datastore ?
  • 25. Event-sourced CQRS Command Query UI/Client Command Model Journal Query Model(s) DaDtaastatosrtoere Datastore Events
  • 26. Actors ‣ Mature and open source ‣ Scala & Java API ‣ Akka Cluster
  • 27. Actors "an island of consistency in a sea of concurrency" Actor ! ! ! mailbox state behavior async message send Process message: ‣ update state ‣ send messages ‣ change behavior Don't worry about concurrency
  • 28. Actors A good fit for event-sourcing? Actor ! ! ! mailbox state behavior mailbox is non-durable (lost messages) state is transient
  • 29. Actors Just store all incoming messages? Actor ! ! ! mailbox state behavior async message send store in journal Problems with command-sourcing: ‣ side-effects ‣ poisonous (failing) messages
  • 30. Persistence ‣ Experimental Akka module ‣ Scala & Java API ‣ Actor state persistence based on event-sourcing
  • 31. Persistent Actor PersistentActor actor-id ! ! state ! event async message send (command) ‣ Derive events from commands ‣ Store events ‣ Update state ‣ Perform side-effects event journal (actor-id)
  • 32. Persistent Actor PersistentActor actor-id ! ! state ! event ! Recover by replaying events, that update the state (no side-effects) ! event journal (actor-id)
  • 33. Persistent Actor ! case object Increment // command case object Incremented // event ! class CounterActor extends PersistentActor { def persistenceId = "counter" ! var state = 0 ! val receiveCommand: Receive = { case Increment => persist(Incremented) { evt => state += 1 println("incremented") } } ! val receiveRecover: Receive = { case Incremented => state += 1 } }
  • 34. Persistent Actor ! case object Increment // command case object Incremented // event ! class CounterActor extends PersistentActor { def persistenceId = "counter" ! var state = 0 ! val receiveCommand: Receive = { case Increment => persist(Incremented) { evt => state += 1 println("incremented") } } ! val receiveRecover: Receive = { case Incremented => state += 1 } }
  • 35. Persistent Actor ! case object Increment // command case object Incremented // event ! class CounterActor extends PersistentActor { def persistenceId = "counter" ! var state = 0 ! val receiveCommand: Receive = { case Increment => persist(Incremented) { evt => state += 1 println("incremented") } } ! val receiveRecover: Receive = { case Incremented => state += 1 } } async callback (but safe to close over state)
  • 36. Persistent Actor ! case object Increment // command case object Incremented // event ! class CounterActor extends PersistentActor { def persistenceId = "counter" ! var state = 0 ! val receiveCommand: Receive = { case Increment => persist(Incremented) { evt => state += 1 println("incremented") } } ! val receiveRecover: Receive = { case Incremented => state += 1 } }
  • 37. Persistent Actor ! case object Increment // command case object Incremented // event ! class CounterActor extends PersistentActor { def persistenceId = "counter" ! var state = 0 ! val receiveCommand: Receive = { case Increment => persist(Incremented) { evt => state += 1 println("incremented") } } ! val receiveRecover: Receive = { case Incremented => state += 1 } } Isn't recovery with lots of events slow?
  • 38. Snapshots class SnapshottingCounterActor extends PersistentActor { def persistenceId = "snapshotting-counter" ! var state = 0 ! val receiveCommand: Receive = { case Increment => persist(Incremented) { evt => state += 1 println("incremented") } case "takesnapshot" => saveSnapshot(state) } ! val receiveRecover: Receive = { case Incremented => state += 1 case SnapshotOffer(_, snapshotState: Int) => state = snapshotState } }
  • 39. Snapshots class SnapshottingCounterActor extends PersistentActor { def persistenceId = "snapshotting-counter" ! var state = 0 ! val receiveCommand: Receive = { case Increment => persist(Incremented) { evt => state += 1 println("incremented") } case "takesnapshot" => saveSnapshot(state) } ! val receiveRecover: Receive = { case Incremented => state += 1 case SnapshotOffer(_, snapshotState: Int) => state = snapshotState } }
  • 40. Journal & Snapshot Cassandra Cassandra Kafka Kafka MongoDB HBase DynamoDB MongoDB HBase MapDB JDBC JDBC Plugins:
  • 41. Plugins: Serialization Default: Java serialization Pluggable through Akka: ‣ Protobuf ‣ Kryo ‣ Avro ‣ Your own
  • 42. Persistent View Persistent Actor journal Persistent View Persistent View Views poll the journal ‣ Eventually consistent ‣ Polling configurable ‣ Actor may be inactive ‣ Views track single persistence-id ‣ Views can have own snapshots snapshot store other datastore
  • 43. Persistent View ! "The Database is a cache of a subset of the log" - Pat Helland Persistent Actor journal Persistent View Persistent View snapshot store other datastore
  • 44. Persistent View ! case object ComplexQuery class CounterView extends PersistentView { override def persistenceId: String = "counter" override def viewId: String = "counter-view" var queryState = 0 def receive: Receive = { case Incremented if isPersistent => { queryState = someVeryComplicatedCalculation(queryState) // Or update a document/graph/relational database } case ComplexQuery => { sender() ! queryState; // Or perform specialized query on datastore } } }
  • 45. Persistent View ! case object ComplexQuery class CounterView extends PersistentView { override def persistenceId: String = "counter" override def viewId: String = "counter-view" var queryState = 0 def receive: Receive = { case Incremented if isPersistent => { queryState = someVeryComplicatedCalculation(queryState) // Or update a document/graph/relational database } case ComplexQuery => { sender() ! queryState; // Or perform specialized query on datastore } } }
  • 46. Persistent View ! case object ComplexQuery class CounterView extends PersistentView { override def persistenceId: String = "counter" override def viewId: String = "counter-view" var queryState = 0 def receive: Receive = { case Incremented if isPersistent => { queryState = someVeryComplicatedCalculation(queryState) // Or update a document/graph/relational database } case ComplexQuery => { sender() ! queryState; // Or perform specialized query on datastore } } }
  • 47. Sell concert tickets ConcertActor ! ! price availableTickets startTime salesRecords ! Commands: CreateConcert BuyTickets ChangePrice AddCapacity journal ConcertHistoryView ! ! ! ! 60 45 30 15 0 100 50 0 $50 $75 $100 code @ bit.ly/akka-es
  • 48. Scaling out: Akka Cluster Single writer: persistent actor must be singleton, views may be anywhere Cluster node Cluster node Cluster node Persistent Persistent Actor id = "1" Actor id = "1" Persistent Actor id = "1" Persistent Actor id = "2" Persistent Actor id = "1" Persistent Actor id = "3" distributed journal
  • 49. Scaling out: Akka Cluster Single writer: persistent actor must be singleton, views may be anywhere How are persistent actors distributed over cluster? Cluster node Cluster node Cluster node Persistent Persistent Actor id = "1" Actor id = "1" Persistent Actor id = "1" Persistent Actor id = "2" Persistent Actor id = "1" Persistent Actor id = "3" distributed journal
  • 50. Scaling out: Akka Cluster Sharding: Coordinator assigns ShardRegions to nodes (consistent hashing) Actors in shard can be activated/passivated, rebalanced Cluster node Cluster node Cluster node Persistent Persistent Actor id = "1" Actor id = "1" Persistent Actor id = "1" Persistent Actor id = "2" Persistent Actor id = "1" Persistent Actor id = "3" Shard Region Shard Region Shard Region Coordinator distributed journal
  • 51. Scaling out: Sharding val idExtractor: ShardRegion.IdExtractor = { case cmd: Command => (cmd.concertId, cmd) } IdExtractor allows ShardRegion to route commands to actors
  • 52. Scaling out: Sharding val idExtractor: ShardRegion.IdExtractor = { case cmd: Command => (cmd.concertId, cmd) } IdExtractor allows ShardRegion to route commands to actors val shardResolver: ShardRegion.ShardResolver = msg => msg match { case cmd: Command => hash(cmd.concert) } ShardResolver assigns new actors to shards
  • 53. Scaling out: Sharding val idExtractor: ShardRegion.IdExtractor = { case cmd: Command => (cmd.concertId, cmd) } IdExtractor allows ShardRegion to route commands to actors val shardResolver: ShardRegion.ShardResolver = msg => msg match { case cmd: Command => hash(cmd.concert) } ShardResolver assigns new actors to shards ClusterSharding(system).start( typeName = "Concert", entryProps = Some(ConcertActor.props()), idExtractor = ConcertActor.idExtractor, shardResolver = ConcertActor.shardResolver) Initialize ClusterSharding extension
  • 54. Scaling out: Sharding val idExtractor: ShardRegion.IdExtractor = { case cmd: Command => (cmd.concertId, cmd) } IdExtractor allows ShardRegion to route commands to actors val shardResolver: ShardRegion.ShardResolver = msg => msg match { case cmd: Command => hash(cmd.concert) } ShardResolver assigns new actors to shards ClusterSharding(system).start( typeName = "Concert", entryProps = Some(ConcertActor.props()), idExtractor = ConcertActor.idExtractor, shardResolver = ConcertActor.shardResolver) Initialize ClusterSharding extension val concertRegion: ActorRef = ClusterSharding(system).shardRegion("Concert") concertRegion ! BuyTickets(concertId = 123, user = "Sander", quantity = 1)
  • 56. DDD+CQRS+ES DDD: Domain Driven Design Fully consistent Fully consistent Aggregate ! Aggregate ! Eventual Consistency Root entity enteitnytity entity Root entity entity entity
  • 57. DDD+CQRS+ES DDD: Domain Driven Design Fully consistent Fully consistent Aggregate ! Aggregate ! Eventual Consistency Root entity enteitnytity entity Root entity entity entity Persistent Actor Persistent Actor Message passing
  • 58. DDD+CQRS+ES DDD: Domain Driven Design Fully consistent Fully consistent Aggregate ! Aggregate ! Eventual Consistency Akka Persistence is not a DDD/CQRS framework But it comes awfully close Root entity enteitnytity entity Root entity entity entity Persistent Actor Persistent Actor Message passing
  • 59. Designing aggregates Focus on events Structural representation(s) follow ERD
  • 60. Designing aggregates Focus on events Structural representation(s) follow ERD Size matters. Faster replay, less write contention Don't store derived info (use views)
  • 61. Designing aggregates Focus on events Structural representation(s) follow ERD Size matters. Faster replay, less write contention Don't store derived info (use views) With CQRS read-your-writes is not the default When you need this, model it in a single Aggregate
  • 62. Between aggregates ‣ Send commands to other aggregates by id ! ‣ No distributed transactions ‣ Use business level ack/nacks ‣ SendInvoice -> InvoiceSent/InvoiceCouldNotBeSent ‣ Compensating actions for failure ‣ No guaranteed delivery ‣ Alternative: AtLeastOnceDelivery
  • 63. Between systems System integration through event-sourcing topic 1 topic 2 derived Kafka Application Akka Persistence Spark Streaming External Application
  • 64. Designing commands ‣ Self-contained ‣ Unit of atomic change ‣ Granularity and intent
  • 65. Designing commands ‣ Self-contained ‣ Unit of atomic change ‣ Granularity and intent UpdateAddress street = ... city = ... vs ChangeStreet street = ... ChangeCity street = ...
  • 66. Designing commands ‣ Self-contained ‣ Unit of atomic change ‣ Granularity and intent UpdateAddress street = ... city = ... vs ChangeStreet street = ... ChangeCity street = ... Move street = ... city = ... vs
  • 68. Designing events CreateConcert ConcertCreated Past tense Irrefutable
  • 69. Designing events CreateConcert ConcertCreated Past tense Irrefutable TicketsBought newCapacity = 99
  • 70. Designing events CreateConcert ConcertCreated Past tense Irrefutable TicketsBought newCapacity = 99 TicketsBought quantity = 1 Delta-based No derived info
  • 71. Designing events CreateConcert ConcertCreated ConcertCreated Past tense Irrefutable TicketsBought newCapacity = 99 TicketsBought quantity = 1 Delta-based No derived info
  • 72. Designing events CreateConcert ConcertCreated ConcertCreated who/when/.. Add metadata to all events ConcertCreated Past tense Irrefutable TicketsBought newCapacity = 99 TicketsBought quantity = 1 Delta-based No derived info
  • 73. Versioning Actor logic: v1 and v2 event v2 event v2 event v1 event v1
  • 74. Versioning Actor logic: v1 and v2 event v2 event v2 event v1 event v1 Actor logic: v2 event v2 event v2 event v2 event v1 event v2 event v1
  • 75. Versioning Actor logic: v1 and v2 event v2 event v2 event v1 event v1 Actor logic: v2 event v2 event v2 event v2 event v1 event v2 event v1 Actor logic: v2 event v2 event v2 snapshot event v1 event v1
  • 76. Versioning Actor logic: v1 and v2 event v2 event v2 event v1 event v1 Actor logic: v2 event v2 event v2 event v2 event v1 event v2 event v1 Actor logic: v2 event v2 event v2 snapshot event v1 event v1 ‣ Be backwards compatible ‣ Avro/Protobuf ‣ Serializer can do translation ! ‣ Snapshot versioning: harder
  • 77. In conclusion Event-sourcing is... Powerful but unfamiliar
  • 78. In conclusion Event-sourcing is... Powerful but unfamiliar Combines well with UI/Client Command Model Journal Query Model DaDtaastatosrtoere Datastore Events DDD/CQRS
  • 79. In conclusion Event-sourcing is... Powerful but unfamiliar Combines well with UI/Client Command Model Journal Query Model DaDtaastatosrtoere Datastore Events DDD/CQRS Not a
  • 80. In conclusion Akka Actors & Akka Persistence A good fit for event-sourcing PersistentActor actor-id ! ! state ! async message send (command) event event journal (actor-id) Experimental, view improvements needed
  • 81. Thank you. ! code @ bit.ly/akka-es @Sander_Mak Luminis Technologies