Anonymous Asked in Cars &Transportation ยท 2 weeks ago

Should microservices share data?

A basic principle of microservices is that each service manages its own data. Two services should not share a data store. Instead, each service is responsible for its own private data store, which other services cannot access directly.


Should microservices share libraries?

So, it is recommended that in Microservices architecture teams should avoid using shared libraries.

Should microservices share common code?

One of the main limitations of this approach is that the Microservices should share the same programming language and platform to reuse the libraries effectively. Make sure you organize and name the libraries in a meaningful way so that its more natural for other teams to discover.

Should microservices be dependent on each other?

It just means that the communication between microservices should be done only by propagating data asynchronously, but try not to depend on other internal microservices as part of the initial service's HTTP request/response operation.

Related Questions

Relevance
Write us your question, the answer will be received in 24 hours