-
Notifications
You must be signed in to change notification settings - Fork 118
Microservices
Aaron Gong edited this page May 8, 2020
·
3 revisions
-
One database per service
- each service is independent of other service
- pick suitable DB for each service
- single DB shared between services could be single point of failure...
-
Data between services Sync / Async
- Sync
- Service calls other service/s
- web of dependency
- failure
- slowest path
- point of failures
- Service calls other service/s
- Async
- Event bus
- not realtime
- not easy to implement
- dependency still
- Event bus
- Sync