SlideShare une entreprise Scribd logo
1  sur  81
Télécharger pour lire hors ligne
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

Contenu connexe

Tendances

From airflow to google cloud composer
From airflow to google cloud composerFrom airflow to google cloud composer
From airflow to google cloud composerBruce Kuo
 
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
 
Introduction to Apache Spark
Introduction to Apache SparkIntroduction to Apache Spark
Introduction to Apache SparkRahul Jain
 
Etsy Activity Feeds Architecture
Etsy Activity Feeds ArchitectureEtsy Activity Feeds Architecture
Etsy Activity Feeds ArchitectureDan McKinley
 
Facebook Messages & HBase
Facebook Messages & HBaseFacebook Messages & HBase
Facebook Messages & HBase强 王
 
Apache kafka performance(throughput) - without data loss and guaranteeing dat...
Apache kafka performance(throughput) - without data loss and guaranteeing dat...Apache kafka performance(throughput) - without data loss and guaranteeing dat...
Apache kafka performance(throughput) - without data loss and guaranteeing dat...SANG WON PARK
 
Scaling Twitter
Scaling TwitterScaling Twitter
Scaling TwitterBlaine
 
(BDT318) How Netflix Handles Up To 8 Million Events Per Second
(BDT318) How Netflix Handles Up To 8 Million Events Per Second(BDT318) How Netflix Handles Up To 8 Million Events Per Second
(BDT318) How Netflix Handles Up To 8 Million Events Per SecondAmazon Web Services
 
Apache Kafka Fundamentals for Architects, Admins and Developers
Apache Kafka Fundamentals for Architects, Admins and DevelopersApache Kafka Fundamentals for Architects, Admins and Developers
Apache Kafka Fundamentals for Architects, Admins and Developersconfluent
 
RSP4J: An API for RDF Stream Processing
RSP4J: An API for RDF Stream ProcessingRSP4J: An API for RDF Stream Processing
RSP4J: An API for RDF Stream ProcessingRiccardo Tommasini
 
Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021
Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021
Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021StreamNative
 
Apache Kafka - Martin Podval
Apache Kafka - Martin PodvalApache Kafka - Martin Podval
Apache Kafka - Martin PodvalMartin Podval
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBMike Dirolf
 
Introduction to Apache Calcite
Introduction to Apache CalciteIntroduction to Apache Calcite
Introduction to Apache CalciteJordan Halterman
 
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...Amazon Web Services Japan
 

Tendances (20)

From airflow to google cloud composer
From airflow to google cloud composerFrom airflow to google cloud composer
From airflow to google cloud composer
 
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
 
Introduction to Apache Spark
Introduction to Apache SparkIntroduction to Apache Spark
Introduction to Apache Spark
 
Etsy Activity Feeds Architecture
Etsy Activity Feeds ArchitectureEtsy Activity Feeds Architecture
Etsy Activity Feeds Architecture
 
Facebook Messages & HBase
Facebook Messages & HBaseFacebook Messages & HBase
Facebook Messages & HBase
 
Apache kafka performance(throughput) - without data loss and guaranteeing dat...
Apache kafka performance(throughput) - without data loss and guaranteeing dat...Apache kafka performance(throughput) - without data loss and guaranteeing dat...
Apache kafka performance(throughput) - without data loss and guaranteeing dat...
 
Apache kafka
Apache kafkaApache kafka
Apache kafka
 
Scaling Twitter
Scaling TwitterScaling Twitter
Scaling Twitter
 
(BDT318) How Netflix Handles Up To 8 Million Events Per Second
(BDT318) How Netflix Handles Up To 8 Million Events Per Second(BDT318) How Netflix Handles Up To 8 Million Events Per Second
(BDT318) How Netflix Handles Up To 8 Million Events Per Second
 
Apache kafka
Apache kafkaApache kafka
Apache kafka
 
kafka
kafkakafka
kafka
 
Apache Kafka Fundamentals for Architects, Admins and Developers
Apache Kafka Fundamentals for Architects, Admins and DevelopersApache Kafka Fundamentals for Architects, Admins and Developers
Apache Kafka Fundamentals for Architects, Admins and Developers
 
RSP4J: An API for RDF Stream Processing
RSP4J: An API for RDF Stream ProcessingRSP4J: An API for RDF Stream Processing
RSP4J: An API for RDF Stream Processing
 
Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021
Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021
Trino: A Ludicrously Fast Query Engine - Pulsar Summit NA 2021
 
Apache Kafka - Martin Podval
Apache Kafka - Martin PodvalApache Kafka - Martin Podval
Apache Kafka - Martin Podval
 
SQOOP PPT
SQOOP PPTSQOOP PPT
SQOOP PPT
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
Introduction to Apache Calcite
Introduction to Apache CalciteIntroduction to Apache Calcite
Introduction to Apache Calcite
 
Apache Kafka Best Practices
Apache Kafka Best PracticesApache Kafka Best Practices
Apache Kafka Best Practices
 
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
 

Similaire à 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
 

Similaire à 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
 

Plus de 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)
 

Plus de 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!
 

Dernier

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 AIABDERRAOUF MEHENNI
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
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 PrecisionSolGuruz
 
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 🔝✔️✔️Delhi Call girls
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
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...MyIntelliSource, Inc.
 
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 CCTVshikhaohhpro
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
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...panagenda
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
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
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfCionsystems
 
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.pdfkalichargn70th171
 

Dernier (20)

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
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
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
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
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
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
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 🔝✔️✔️
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
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...
 
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
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
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...
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
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
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdf
 
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
 

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