All Questions
6 questions
-1
votes
1
answer
955
views
How to combine data from multiple sources into the same object?
I've been running into a common pattern when requesting data from multiple sources:
Have a list of objects from one source (e.g. a list of Cars) with an id property and a few other properties ...
0
votes
2
answers
387
views
Suggestion a Safe Strategy to Migrate to Monorepo
Consider a bitbucket project with 3 separate repos, A, B, C. These form the components of a microservices application, APP. We'd like to safely try out a monorepo pattern and see if it streamlines ...
4
votes
3
answers
5k
views
Does each microservice need its own server running (Tomcat, docker container)
In development I have a Java backend API which I'm running with Tomcat. I'm wanting to wrap the backend in a docker container and deploy to an AWS EC2 instance, and be able to scale up/down.
Does ...
2
votes
1
answer
661
views
System design for multiple workers
I need to design a system where there are many micro-services which we can think of as crawlers that poll 3rd party resource and if they find some new information they pass it to some other service ...
2
votes
1
answer
848
views
Microservices loose coupling using distributed business logic or centralized?
How do we achieve loose coupling in the below scenario:
N microservices (let's call them Callers) needs a logic or business( let's call it Worker) to be executed with different contracts. Although ...
1
vote
3
answers
1k
views
how to write good software design documentation for an old project with limited documentation?
Two months ago I joined a development team for implementing new features over a software that evolved over 10 years. The current state is that there is very few documentation and in order to develop a ...