|
|
|
|
|
by gmokki
1157 days ago
|
|
We had microservices that shared a database, but each got a separate schema. We decided to treat cross schema queries the same as rpc: we export and API from a schema (view or stored procedure) that other microservices can depend on. The microservice that exposes database level API can do any updates as long as the API stays the same (exactly same as with classical rpc). |
|