etl and event sourcing
play

ETL and Event Sourcing Integration Architecture: Best Practice and - PowerPoint PPT Presentation

ETL and Event Sourcing Integration Architecture: Best Practice and Case Study Marc Siegel - Panorama Education - Wed Feb 6 2019 ETL pipelines from external systems ETL and Event Sourcing Prerequisite knowledge Familiarity with traditional ETL


  1. Event Sourcing Challenge Not just advantages. Negative trade-offs of ES? ● High Costs: Training, framing, explaining Training : Higher cost to train new engineers in ES concepts ○ Framing : Requirement for (lots of) explicit domain modeling ○ Explaining : Not necessarily intuitive to explain to non-engineers ○

  2. ETL, ELT, and Event Sourcing Interests and Positions ETL ELT Event Sourcing Decoupling Determinism Modeling State Explicitly Past as First Class Low Cost

  3. How does Event Sourcing work?

  4. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A-

  5. Event Sourcing Basics Events State transitions are an important part of our problem space and should be modeled within our domain.

  6. Event Sourcing Basics Events State transitions are an important part of our problem space and should be modeled within our domain. Event Sourcing says all state is transient and you only store facts.

  7. Event Sourcing Basics Events State transitions are an important part of our problem space and should be modeled within our domain. Event Sourcing says all state is transient and you only store facts. Event : something that happened in the past; a fact; a state transition.

  8. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A-

  9. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A- Read Models student_id course_id grade 123 abc B+

  10. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A- Read Models student_id course_id grade 123 abc C

  11. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A- Read Models student_id course_id grade 123 abc A-

  12. Event Sourcing Basics Read Models Event Sourcing takes the term Read Model from CQRS.

  13. Event Sourcing Basics Read Models Event Sourcing takes the term Read Model from CQRS. A Read Model is an interpretation of a sequence of events, that is optimized for answering a given set of queries (reads).

  14. Event Sourcing Basics Read Models Event Sourcing takes the term Read Model from CQRS. A Read Model is an interpretation of a sequence of events, that is optimized for answering a given set of queries (reads). Read Models : are independent representations of state that we deterministically regenerate from events using projections.

  15. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A- def f(state, event) Projections state.where( student_id: event.student_id, student_id course_id grade course_id: event.course_id 123 abc A- ).update(grade: event.grade) end

  16. Event Sourcing Basics Projections When we talk about Event Sourcing, current state is a left-fold of previous behaviors.

  17. Event Sourcing Basics Projections When we talk about Event Sourcing, current state is a left-fold of previous behaviors. We play back a stream of events, applying a function f ( state n , event n ) -> state n+1

  18. Event Sourcing Basics Projections When we talk about Event Sourcing, current state is a left-fold of previous behaviors. We play back a stream of events, applying a function f ( state n , event n ) -> state n+1 Projection : a function through which we apply events in sequence to deterministically derive the state of our application

  19. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A- def f(state, event) Projections Read Models state.where( student_id: event.student_id, student_id course_id grade course_id: event.course_id 123 abc A- ).update(grade: event.grade) end

  20. Event Sourcing Basics Review Event : something that happened in the past; a fact; a state transition. Projection : a function through which we apply events in sequence to deterministically derive the state of our application Read Models : are independent representations of state that we deterministically regenerate from events using projections.

  21. Event Sourcing Basics Events GradeCreated GradeUpdated GradeUpdated student_id: 123 student_id: 123 student_id: 123 course_id: abc course_id: abc course_id: abc grade: B+ grade: C grade: A- def f(state, event) Projections Read Models state.where( student_id: event.student_id, student_id course_id grade course_id: event.course_id 123 abc A- ).update(grade: event.grade) end

  22. Applying Event Sourcing to ETL

  23. Applying Event Sourcing to ETL Q: How to we get from ETL to explicitly modeled Domain Events?

  24. Applying Event Sourcing to ETL Q: How to we get from ETL to explicitly modeled Domain Events? TeTL Process(es) Immutable & Read Sequential Domain Model(s) Tr Tr Lo Store Events

  25. Applying Event Sourcing to ETL Q: How to we get from ETL to explicitly modeled Domain Events? TeTL Process(es) Immutable & Read Sequential Domain Model(s) Tr Tr Lo Store Events A: Build an Observational Event Sourced system

  26. Applying Event Sourcing to ETL Observations Domain Events Read Models student_id course_id grade GradeUpdated student_id: 123 123 abc A- course_id: abc grade: A-

  27. Applying Event Sourcing to ETL Observational When capturing observations of external systems using Event Sourcing, the events in our domain are the observations we capture.

  28. Applying Event Sourcing to ETL Observational When capturing observations of external systems using Event Sourcing, the events in our domain are the observations we capture. Transforming a sequence of observations into explicitly modeled domain events is the first projection.

  29. Applying Event Sourcing to ETL Observational When capturing observations of external systems using Event Sourcing, the events in our domain are the observations we capture. Transforming a sequence of observations into explicitly modeled domain events is the first projection. Observational : an Event Sourced system where the event history is of captured observations, and all state is derived from them.

  30. Applying Event Sourcing to ETL Observations Domain Events Read Models student_id course_id grade GradeUpdated student_id: 123 123 abc A- course_id: abc grade: A-

  31. Applying Event Sourcing to ETL Observations Domain Events Read Models student_id course_id grade GradeUpdated student_id: 123 123 abc A- course_id: abc grade: A- Immutable & Sequential Store

  32. Applying Event Sourcing to ETL Observations Domain Events Read Models student_id course_id grade GradeUpdated student_id: 123 123 abc A- course_id: abc grade: A- TeTL Process(es) Immutable & Sequential Domain Tr Store Events

  33. Applying Event Sourcing to ETL Observations Domain Events Read Models student_id course_id grade GradeUpdated student_id: 123 123 abc A- course_id: abc grade: A- TeTL Process(es) Immutable & Read Sequential Domain Model(s) Tr Tr Lo Store Events

  34. Case study: Event Sourcing ETL

  35. Case study: Event Sourcing ETL GradeUpdated student_id: 1 date: Oct 11 course: Biology grade: B- projection GradeUpdated student_id: 1 date: Oct 12 course: Biology grade: B+ observation events domain events

  36. Case study: Event Sourcing ETL GradeUpdated student_id: 1 date: Oct 11 course: Biology grade: B- projection InProgressGrades GradeUpdated student_id: 1 date: Oct 12 course: Biology grade: B+ read models domain events

  37. Case study: Event Sourcing ETL queried InProgressGrades read models

  38. Case study: Event Sourcing ETL Past as First Class First Later interpretation

  39. Case study: Event Sourcing ETL Past as First Class First Later interpretation

  40. Case study: Event Sourcing ETL Past as First Class First Later interpretation

  41. Case study: Event Sourcing ETL Determinism

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend