Service Meshes
Created on 2021-11-23T01:05:44-06:00
Seems to largely be a webdev version of "send requests from microservices back to the router."
Instead of directly going Edge -> Service A -> Service B, you have Edge -> Service A -> Router -> Service B.
The router can deal with logging, auth checking, fail overs, ...
It is essentially CORBA all over again: make calls to the corba service to do things to objects not to individual servers.