-
-
Notifications
You must be signed in to change notification settings - Fork 27.3k
Saga pattern #1062
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Saga pattern #1062
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a204383
init repo for role object
c365610
add to init
f09a7eb
add to init
20b4195
add first impl
630532c
add pattern
9403d53
add license
e382794
add changes
768e647
add saga init dsc
564cf12
add init saga dsc
7ac47b2
add changes to dsc
c4c37d7
add
3a4677c
add orchestrator
1b32e23
add ch
ffeee2f
separate pkgs
fbcfeb0
add info
09b4663
add choreogr
8f85353
merge changes
74c7273
rem space
de56cbb
change according to cgeckstyle
87af122
add changes according to google style
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| --- | ||
| layout: pattern | ||
| title: Saga | ||
| folder: saga | ||
| permalink: /patterns/saga/ | ||
| categories: Behavioral | ||
| tags: | ||
| - Java | ||
| - Difficulty-Expert | ||
| - Idiom | ||
| - Distributed communication | ||
| --- | ||
|
|
||
| ## Also known as | ||
| This pattern has a similar goal with two-phase commit (XA transaction) | ||
|
|
||
| ## Intent | ||
| This pattern is used in distributed services to perform a group of operations atomically. | ||
| This is an analog of transaction in a database but in terms of microservices architecture this is executed | ||
| in a distributed environment | ||
|
|
||
| ## Explanation | ||
| A saga is a sequence of local transactions in a certain context. If one transaction fails for some reason, | ||
| the saga executes compensating transactions(rollbacks) to undo the impact of the preceding transactions. | ||
| There are two types of Saga: | ||
|
|
||
| - Choreography-Based Saga. | ||
| In this approach, there is no central orchestrator. | ||
| Each service participating in the Saga performs their transaction and publish events. | ||
| The other services act upon those events and perform their transactions. | ||
| Also, they may or not publish other events based on the situation. | ||
|
|
||
| - Orchestration-Based Saga | ||
| In this approach, there is a Saga orchestrator that manages all the transactions and directs | ||
| the participant services to execute local transactions based on events. | ||
| This orchestrator can also be though of as a Saga Manager. | ||
|
|
||
| ## Applicability | ||
| Use the Saga pattern, if: | ||
| - you need to perform a group of operations related to different microservices atomically | ||
| - you need to rollback changes in different places in case of failure one of the operation | ||
| - you need to take care of data consistency in different places including different databases | ||
| - you can not use 2PC(two phase commit) | ||
|
|
||
| ## Credits | ||
| - [Pattern: Saga](https://microservices.io/patterns/data/saga.html) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| <?xml version="1.0"?> | ||
| <!-- | ||
|
|
||
| The MIT License | ||
| Copyright © 2014-2019 Ilkka Seppälä | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in | ||
| all copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| THE SOFTWARE. | ||
|
|
||
| --> | ||
| <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
| xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <parent> | ||
| <groupId>com.iluwatar</groupId> | ||
| <artifactId>java-design-patterns</artifactId> | ||
| <version>1.22.0-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>saga</artifactId> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| </project> |
65 changes: 65 additions & 0 deletions
65
saga/src/main/java/com/iluwatar/saga/choreography/ChoreographyChapter.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| /* | ||
| * The MIT License | ||
| * Copyright © 2014-2019 Ilkka Seppälä | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| * of this software and associated documentation files (the "Software"), to deal | ||
| * in the Software without restriction, including without limitation the rights | ||
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| * copies of the Software, and to permit persons to whom the Software is | ||
| * furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in | ||
| * all copies or substantial portions of the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
|
|
||
| package com.iluwatar.saga.choreography; | ||
|
|
||
|
|
||
| /** | ||
| * ChoreographyChapter is an interface representing a contract for an external service. | ||
| * In that case, a service needs to make a decision what to do further | ||
| * hence the server needs to get all context representing {@link Saga} | ||
| */ | ||
| public interface ChoreographyChapter { | ||
|
|
||
| /** | ||
| * In that case, every method is responsible to make a decision on what to do then. | ||
| * | ||
| * @param saga incoming saga | ||
| * @return saga result | ||
| */ | ||
| Saga execute(Saga saga); | ||
|
|
||
| /** | ||
| * get name method. | ||
| * @return service name. | ||
| */ | ||
| String getName(); | ||
|
|
||
| /** | ||
| * The operation executed in general case. | ||
| * | ||
| * @param saga incoming saga | ||
| * @return result {@link Saga} | ||
| */ | ||
| Saga process(Saga saga); | ||
|
|
||
| /** | ||
| * The operation executed in rollback case. | ||
| * | ||
| * @param saga incoming saga | ||
| * @return result {@link Saga} | ||
| */ | ||
| Saga rollback(Saga saga); | ||
|
|
||
|
|
||
| } |
39 changes: 39 additions & 0 deletions
39
saga/src/main/java/com/iluwatar/saga/choreography/FlyBookingService.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| /* | ||
| * The MIT License | ||
| * Copyright © 2014-2019 Ilkka Seppälä | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| * of this software and associated documentation files (the "Software"), to deal | ||
| * in the Software without restriction, including without limitation the rights | ||
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| * copies of the Software, and to permit persons to whom the Software is | ||
| * furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in | ||
| * all copies or substantial portions of the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
|
|
||
| package com.iluwatar.saga.choreography; | ||
|
|
||
|
|
||
| /** | ||
| * Class representing a service to book a fly. | ||
| */ | ||
| public class FlyBookingService extends Service { | ||
| public FlyBookingService(ServiceDiscoveryService service) { | ||
| super(service); | ||
| } | ||
|
|
||
| @Override | ||
| public String getName() { | ||
| return "booking a Fly"; | ||
| } | ||
| } |
41 changes: 41 additions & 0 deletions
41
saga/src/main/java/com/iluwatar/saga/choreography/HotelBookingService.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| /* | ||
| * The MIT License | ||
| * Copyright © 2014-2019 Ilkka Seppälä | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| * of this software and associated documentation files (the "Software"), to deal | ||
| * in the Software without restriction, including without limitation the rights | ||
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| * copies of the Software, and to permit persons to whom the Software is | ||
| * furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in | ||
| * all copies or substantial portions of the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
|
|
||
| package com.iluwatar.saga.choreography; | ||
|
|
||
|
|
||
| /** | ||
| * Class representing a service to book a hotel. | ||
| */ | ||
| public class HotelBookingService extends Service { | ||
| public HotelBookingService(ServiceDiscoveryService service) { | ||
| super(service); | ||
| } | ||
|
|
||
| @Override | ||
| public String getName() { | ||
| return "booking a Hotel"; | ||
| } | ||
|
|
||
|
|
||
| } |
40 changes: 40 additions & 0 deletions
40
saga/src/main/java/com/iluwatar/saga/choreography/OrderService.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| /* | ||
| * The MIT License | ||
| * Copyright © 2014-2019 Ilkka Seppälä | ||
| * | ||
| * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| * of this software and associated documentation files (the "Software"), to deal | ||
| * in the Software without restriction, including without limitation the rights | ||
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| * copies of the Software, and to permit persons to whom the Software is | ||
| * furnished to do so, subject to the following conditions: | ||
| * | ||
| * The above copyright notice and this permission notice shall be included in | ||
| * all copies or substantial portions of the Software. | ||
| * | ||
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| * THE SOFTWARE. | ||
| */ | ||
|
|
||
| package com.iluwatar.saga.choreography; | ||
|
|
||
|
|
||
| /** | ||
| * Class representing a service to init a new order. | ||
| */ | ||
| public class OrderService extends Service { | ||
|
|
||
| public OrderService(ServiceDiscoveryService service) { | ||
| super(service); | ||
| } | ||
|
|
||
| @Override | ||
| public String getName() { | ||
| return "init an order"; | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.