lost in transaction
play

Lost in transaction? Strategies to deal with (in)consistency in - PowerPoint PPT Presentation

Lost in transaction? Strategies to deal with (in)consistency in distributed systems @berndruecker Once upon a time: try { tx.begin(); doA(); Do A doB(); tx.commit(); All or + } catch (Exception e) { tx.rollback(); nothing } Do B Or


  1. Lost in transaction? Strategies to deal with (in)consistency in distributed systems @berndruecker

  2. Once upon a time: try { tx.begin(); doA(); Do A doB(); tx.commit(); All or + } catch (Exception e) { tx.rollback(); nothing } Do B Or simply: @Transactional public void createCustomer(Customer cust) { // ... }

  3. A Atomicity C Consistency I Isolation D Durability

  4. Distributed systems

  5. Distributed systems

  6. Distributed systems

  7. But there is two-phase commit (XA)!! Resource TX Managers Coordinator Prepare Phase Commit Phase

  8. “ Pat Helland Distributed Systems Guru Worked at Amazon, Microsoft & Salesforce

  9. “ Grown- Ups Don’t Use Distributed T ransactions Pat Helland Distributed Systems Guru Worked at Amazon, Microsoft & Salesforce

  10. Starbucks does not use two phase commit https://www.enterpriseintegrationpatterns.com/ramblings/18_starbucks.html Photo by John Ingle

  11. Atomicity Eric Brewer Consistency Isolation Durability http://pld.cs.luc.edu/courses/353/spr11/notes/brewer_keynote.pdf

  12. That means Consistent Violates „I“ Local Do A ACID of ACID Temporarily inconsistent Local Do B ACID Eventually consistent 1 (micro-)service again 1 aggregate t 1 program 1 resource

  13. Consistent You might know this from: Do A Temporarily inconsistent Do B Eventually consistent again t Photo by Gerhard51, available under Creative Commons CC0 1.0 license.

  14. A C I D 2.0 Pat Helland „Building on Quicksand“ Paper

  15. Associative (a + b) + c = a + (b + c) Commutative a + b = b + a Idempotent f(x) = f( f(x) ) Distributed 2.0 Pat Helland „Building on Quicksand“ Paper

  16. Photo by pixabay, available under Creative Commons CC0 1.0 license.

  17. Requirement: Idempotency of services! Photo by pixabay, available under Creative Commons CC0 1.0 license.

  18. Requirement: Idempotency of services! Photo by Chr.Späth , available under Public Domain.

  19. Example Credit Payment Card charge

  20. Strategy: retry has to be idempotent Credit Payment Card charge Charge Credit Card Not Not idempotent cardNumber amount Charge Credit Card cardNumber Idempotent amount transactionId

  21. Distributed

  22. It is impossible to Client Service Provider differentiate certain failure scenarios: Independant of communication style!

  23. Strategy: Cleanup Credit Payment Card charge Raise payment failed Make sure it is not charged! Cancel charge cardNumber amount transactionId

  24. Some communication challenges require state.

  25. Strategy: Stateful retry Credit Payment Card charge

  26. Strategy: Stateful retry Credit Payment Card charge Make sure it is not charged!

  27. Warning: Contains Opinion

  28. Bernd Ruecker Co-founder and Chief T echnologist of Camunda Berlin, Germany bernd.ruecker@camunda.com @berndruecker

  29. Let‘s use a lightweight OSS workflow engine for this:

  30. Stateful retry Credit Payment Card REST

  31. Stateful retry & cleanup Credit Payment Card REST Cancel charge

  32. Live hacking https://github.com/flowing/flowing-retail/tree/master/rest

  33. Embedded Engine Example (Java) https://blog.bernd-ruecker.com/architecture-options-to-run-a-workflow-engine-6c2419902d91

  34. Remote Engine Example (Polyglot) https://blog.bernd-ruecker.com/architecture-options-to-run-a-workflow-engine-6c2419902d91

  35. A relatively common pattern Kafka / Rabbit 1. Receive 3. Send response ? ACK 4. Send additional events Service (e.g. Go) 2. Business Logic RDMS

  36. „Can this handle 15k requests per second ?“

  37. „Yes.“

  38. https://blogs.msdn.microsoft.com/pathelland/2007/05/15/memories-guesses-and-apologies/

  39. Compensation – the classical example Saga 1. 2. 3. book book book hotel car flight book trip In case of failure cancel cancel trigger compensations hotel car 6. 5.

  40. 2 alterntive approaches: choreography & orchestration

  41. Event-driven choreography Hotel booked Hotel T rip Car requested Request trip T rip Car booked T rip booked Flight Flight booked

  42. Event-driven choreography Perform undo (cancel hotel) Hotel booked Perform undo (cancel car booking) Hotel T rip Car requested Request Car trip canceled Hotel T rip canceled Car booked T rip Flight failed Flight failed

  43. The danger is that it's very easy to make nicely decoupled systems with event notification, without realizing that you're losing sight of that larger-scale flow, and thus set yourself up for trouble in future years. https://martinfowler.com/articles/201701-event-driven.html

  44. The danger is that it's very easy to make nicely decoupled systems with event notification, without realizing that you're losing sight of that larger-scale flow, and thus set yourself up for trouble in future years. https://martinfowler.com/articles/201701-event-driven.html

  45. The danger is that it's very easy to make nicely decoupled systems with event notification, without realizing that you're losing sight of that larger-scale flow, and thus set yourself up for trouble in future years. https://martinfowler.com/articles/201701-event-driven.html

  46. Classical example Saga 1. 2. 3. book book book hotel car flight book trip In case of failure cancel cancel trigger compensations hotel car 6. 5.

  47. If your transaction involves 2 to 4 steps, choreography might be a very good fit. However, this approach can rapidly become confusing if you keep adding extra steps in your transaction as it is difficult to track which services listen to Denis Rosa Couchbase which events. Moreover, it also might add a cyclic dependency between services as they have to subscribe to one another’s events. https://blog.couchbase.com/saga-pattern-implement-business-transactions-using-microservices-part/

  48. Microservice pioneers have become aware

  49. We have a new basic agreement Implementing changes in the process with the car rental agency and can cancel for free within 1 hour – do that first! Hotel booked Hotel T rip Car requested Request Car trip canceled Hotel T rip canceled Car booked T rip Flight failed Flight failed

  50. We have a new basic agreement Implementing changes in the process with the car rental agency and can cancel for free within 1 hour – do that first! Hotel booked Hotel T rip Car requested Request Car trip canceled Hotel T rip canceled Car booked T rip Flight failed Flight failed You have to adjust all services and redeploy at the same time!

  51. Photo by born1945, available under Creative Commons BY 2.0 license.

  52. What we wanted Photo by Lijian Zhang, available under Creative Commons SA 2.0 License and Pedobear19 / CC BY-SA 4.0

  53. Orchestration Hotel Book Car Book hotel car Request Hotel trip booked Car T rip booked T rip Book booked flight Flight Flight booked

  54. We have a new basic agreement Orchestration with the car rental agency and can cancel for free within 1 hour – do that first! Hotel Book Car Book hotel car Request Hotel trip booked Car T rip booked T rip Book booked flight Flight Flight booked You have to adjust one service and redeploy only this one!

  55. Describe orchestration with BPMN Request trip T rip T rip booked

  56. The workflow is part of the service T rip

  57. The workflow is part of the service T rip Payment

  58. Caitie McCaffrey | @caitie

  59. Graphical models?

  60. Clemens Vasters Architect at Microsoft http://vasters.com/archive/Sagas.html

  61. Clemens Vasters Architect at Microsoft http://vasters.com/archive/Sagas.html

  62. Clemens Vasters Architect at Microsoft http://vasters.com/archive/Sagas.html

  63. BPMN Business Process Model and Notation ISO Standard

  64. Living documentation for long-running behaviour

  65. Visual HTML reports for test cases

  66. BizDevOps

  67. Saga with AWS Step Functions https://theburningmonk.com/2017/07/applying-the- saga-pattern-with-aws-lambda-and-step-functions/

  68. Thoughts on the state machine | workflow engine market

  69. Thoughts on the state machine | workflow engine market Camunda, Zeebe, jBPM, Activiti , Mistral, … Stack Vendors, OSS Workflow or Integration Frameworks Pure Play BPMS Orchestration Engines Apache Camel, Low Code Platforms Balerina , … PEGA, IBM, SAG, … Data Homegrown frameworks Pipelines Cloud Offerings to scratch an itch Apache Airflow, Spring Data Flow, … AWS Step Functions, Uber, Netflix, AirBnb , ING, … Azure Durable Functions , …

  70. Does it support stateful operations? Does it support the necessary flow logic? Does it support BizDevOps? Does it scale?

  71. My personal pro-tip for a shortlist ;-) Stack Vendors, OSS Workflow or Integration Frameworks Pure Play BPMS Orchestration Engines Low Code Platforms Camunda & Zeebe Data Homegrown frameworks Pipelines Cloud Offerings to scratch an itch

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