I am studying microservices, and I am going to build a project with the architecture of microservices.
The fact is that one of my teammates wants to use one database for all services, sharing all the tables so that "data is not repeated", each service would be built with different frameworks and languages, such as django and rails, which use very different ORM standards.
What would be the right approach? Since I think that working with a single database will include a lot of βhackingβ ORMs to make them work correctly.
source
share