Created by Alvaro (@kanekotic) @ClimatePartner.
✔️ We don’t fail continuously if some other service fails
❌ We silently don’t finish the entire process requested
❌ We require all chain of dependencies to be called
❌ We force other services to scale to our needs
❌ Data is mutable so errors will be propagated and not solvable
✔️ We don’t fail continuously if some other service fails
✔️ We always finish our process and promise the rest will be done
✔️ We just need ourselves to do what we promise
✔️ Fast services will be fast, and slow services can go slow
❌ Data is mutable so errors will be propagated and not solvable
✔️ We don’t fail continuously if some other service fails
✔️ We always finish our process and promise the rest will be done
✔️ We just need ourselves to do what we promise
✔️ Fast services will be fast, and slow services can go slow
✔️ Data is immutable so a change in our code can solve historical errors