2.2.a-Networking--Service APIs--Turning a monolith into a microservice

preview_player
Показать описание
This video discusses what it takes to turn a method call into a network call and many of the issues related to this effort.
Рекомендации по теме
Комментарии
Автор

Should the call to the method service block the client? Futures and callbacks are handled especially when a microservice call another microservice?

mazenezzeddine
Автор

Can increasing throughput in terms of number of concurrent users be identified as a reason to go to microservices? how would microservice architectural style compare to monolith in terms of latency?

mazenezzeddine
Автор

Can it happen that the Method Itself be shipped into the microservice e.g. class job { Method(), arg1, arg2 } using serialization and dynamic class loading, does that fall also in the context of microservices?

mazenezzeddine