You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a microservice architecture with several REST services and dedicated databases for each service. I want to create a report that consist of data from multiple services. Can this lib be used for this case. Scenario
Car service list all cars and order history list all orders for each car. Report shown below should list all recent 10 order against all the cars in the cars db.
Question:
In the scheme how do I resolve orders? is it best to call the orders rest endpoint directly or use the database repository as the source.
can this approach handle 10,000 cars and history?
Is there an example of similar implementation I can use?
The text was updated successfully, but these errors were encountered:
I have a microservice architecture with several REST services and dedicated databases for each service. I want to create a report that consist of data from multiple services. Can this lib be used for this case.
Scenario
Car service list all cars and order history list all orders for each car. Report shown below should list all recent 10 order against all the cars in the cars db.
Question:
The text was updated successfully, but these errors were encountered: