Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Microservices with Java

You're reading from   Mastering Microservices with Java Build enterprise microservices with Spring Boot 2.0, Spring Cloud, and Angular

Arrow left icon
Product type Paperback
Published in Feb 2019
Publisher Packt
ISBN-13 9781789530728
Length 446 pages
Edition 3rd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Sourabh Sharma Sourabh Sharma
Author Profile Icon Sourabh Sharma
Sourabh Sharma
Arrow right icon
View More author details
Toc

Table of Contents (22) Chapters Close

Preface 1. Section 1: Fundamentals FREE CHAPTER
2. A Solution Approach 3. Environment Setup 4. Domain-Driven Design 5. Implementing a Microservice 6. Section 2: Microservice Patterns, Security, and UI
7. Microservice Patterns - Part 1 8. Microservice Patterns - Part 2 9. Securing Microservices 10. Consuming Services Using the Angular App 11. Section 3: Inter-Process Communication
12. Inter-Process Communication Using REST 13. Inter-Process Communication Using gRPC 14. Inter-Process Communication Using Events 15. Section 4: Common Problems and Best Practices
16. Transaction Management 17. Service Orchestration 18. Troubleshooting Guide 19. Best Practices and Common Principles 20. Converting a Monolithic App to a Microservice-Based App 21. Other Books You May Enjoy

Distributed saga implementation

Distributed sagas can be implemented using a directed acyclic graph and defining the vertex name, request, compensating request, and status with some other fields. Then you can have logs that will help with recovery and make distributed sagas fault-tolerant and highly available. Then, you need a coordinator, as explained in the original sagas paper, which is called a Saga Execution Coordinator (SEC).

The SEC is not central and stateless the 2PC coordinator. The state is managed in logs. Compensating sagas should be performed in reverse order, including all the steps. Steps can be executed in parallel. In any case, if any step is not performed it is likely that it will just not do anything and mark the compensating steps as complete. This is required to maintain consistency. This is where the commutative property comes into the picture. If the compensating...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime