|
|
|
|
|
by azurelake
1121 days ago
|
|
I disagree, and here's why. There are basically two reasons a cancellation step would fail. 1. A misunderstanding of the business rules. In the flight example, you thought that were flights were cancellable, but actually the airline only offers nonrefundable seats. 2. System type errors, e.g. network outages. If you get a type 1 failure, that's an error that gets ingested in your error monitoring service, and is a bug that needs to be fixed. If you get a type 2 failure, idempotent cancellation (which is necessary for this work) will eventually get you to your desired state. Either way, you shouldn't need to model deeper into the state graph. |
|
That would have been a good article. The saga pattern could have just been a footnote to it.