CQRS and Event Sourcing with Openshift 4 - Red...

46
CQRS and Event Sourcing with Openshift 4 Dean Peterson Specialist Solution Architect [email protected]

Transcript of CQRS and Event Sourcing with Openshift 4 - Red...

Page 1: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

CQRS and Event Sourcing with Openshift 4

Dean PetersonSpecialist Solution [email protected]

Page 2: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Agenda

• Description of Demo• What is Event Sourcing• What is CQRS• Why Event Sourcing and CQRS?• Implementation and Demo

Page 3: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�3

The Goal: Implement the Outbox Pattern on abecorn.com

Page 4: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�4

Operator Framework• Operator SDK

◦ Developers build, package and test an operator

◦ No knowledge of Kubernetes API complexities required

• Operator Lifecycle Manager

◦ Helps install, update, manage the lifecycle of all of the operators in cluster

• Operator Metering

◦ Usage reporting for operators and resources within Kubernetes

Page 5: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

How was data managed 10 years ago?

Page 6: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Terrified about Entity Beans

Page 7: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Hibernate to the rescue!

Page 8: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Replacing XML with @Annotations

Page 9: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

CQS(Command-Query Separation)

“Asking a question should not change the answer”(Bertrand Meyer)

Page 10: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

POJOs as an (Anemic) Domain Model

Page 11: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Event Sourcing

Page 12: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�12

ID CUSTOMER_ID BALANCE

1001 990 1000

1002 991 0

1003 991 -500

1004 992 300

Account

Page 13: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�13

ID ACCOUNT_ID TIMESTAMP OP AMOUNT

1 1001 1234567890 C 1000

2 1002 1234567891 C 200

3 1001 1234567900 D 300

4 1001 1234567995 D 150

Transactions

Page 14: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Enables you to think in the Events that happened in the

system

Page 15: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

CQRS(Command Query

Responsibility Segregation)

Page 16: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�16

CQRS (Command Query Responsibility Segregation)

Page 17: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�17

ID NAME PHONE ADDRESS BIRTH

1 Burr 222-222-2323 901 South St 12/12/1968

2 Edson 222-333-3434 112 North Dr 03/03/1978

3 John 111-456-4545 666 Iron St 06/06/1966

4 Doe 333-789-7890 777 Boeing Dr 07/07/1977

INSERT INTO CUSTOMER(ID,NAME,PHONE,ADDRESS,BIRTH);

SELECT * FROM CUSTOMER;

Page 18: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�18

SELECT ID, NAME, PHONE FROM CUSTOMER;

SELECT ID, NAME, ADDRESS FROM CUSTOMER;

Page 19: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�19

CQRS with separate data stores

Page 20: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

CQRS & Event Sourcing

Page 21: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�21

ID CUSTOMER_ID BALANCE

1001 990 10001002 991 0

1003 991 -500

1004 992 300

Account

ID ACCOUNT_ID TIMESTAMP OP AMOUNT

1 1001 1234567890 C 1000

2 1002 1234567891 C 200

3 1001 1234567900 D 300

4 1001 1234567995 D 150

Transactions

Page 22: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�22

ID CUSTOMER_ID BALANCE

1001 990 10001002 991 0

1003 991 -500

1004 992 300

Account

ID ACCOUNT_ID TIMESTAMP OP AMOUNT

1 1001 1234567890 C 1000

2 1002 1234567891 C 200

3 1001 1234567900 D 300

4 1001 1234567995 D 150

Transactions

READ MODEL

WRITE MODEL

Page 23: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Why CQRS?

Page 24: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Performance

Page 25: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson
Page 26: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

DistributionAvailabilityIntegrationAnalytics

Page 27: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�27

SELECT ID, NAME, AGE, AVG_BILL FROM CUSTOMER_REPORT_VIEW;

SELECT ID, PHONE, LAST_PAYMENT_AMOUNT FROM CUSTOMER_BILLING_VIEW;

Page 28: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�28

Canonical Source of Information(Write Data Store)

Page 29: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�29

Canonical Source of Information(Write Data Store)

Read Data Store Read Data Store

Page 30: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�30

Canonical Source of Information(Write Data Store)

Read Data Store Read Data Store

Events Events

Page 31: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Different choices of technology depending on the

requirements

Page 32: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

LatencySize

StalenessOwnership

SecurityType?

Page 33: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�33

Page 34: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�34

Page 35: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�35

Page 36: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�36

Page 37: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�37

Page 38: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�38

Page 39: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com

Back to the Demo

�39

Page 40: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�40

http://activemq.apache.org/

Message Brokers

https://kafka.apache.org/

Page 41: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�41

http://debezium.io/

Change Data Capture

Page 42: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�42

Page 43: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�43

Page 44: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�44

Page 45: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

Join developers.redhat.com�45

Page 46: CQRS and Event Sourcing with Openshift 4 - Red Hatpeople.redhat.com/mskinner/rhug/q4.2019/EventSourcing.pdf · 2019-11-08 · CQRS and Event Sourcing with Openshift 4 Dean Peterson

plus.google.com/+RedHat

linkedin.com/company/red-hat

youtube.com/user/RedHatVideos

facebook.com/redhatinc

twitter.com/RedHatNews

Thank you!