I am trying to build a microservices POC and trying to incorporate concepts of ES/DDD/CQRS, so I had a couple of questions for practitioners out there who have actually implemented this:
1) Is it possible to build microservices without using ES, since it seems that this adds a major amount of complexity ?
2) Has anyone actually built production microservices using ES/DDD/CQRS with Nodejs, did you use any framework ? I ask this because it seems like if you want to go down this route, you have to build all of the infrastructure yourself, as no full framework such as axon, or akka, exists in the node community, and you basically have to roll your own.
3) What would be the best technology stack to use for building microservices which has a decent framework available to let you concentrate on business logic ?
4) In an EDA architecture with microservices, when you have multiple instances of the same service available, because CQRS requires a separate read/write model, where they can be implemented as two completely separate services, does this imply that for a service A there will be multiple read model services which all need to keep their projections up to date based on the events being received ?
For people who have actually implemented this, can you provide your guidance/experience with this ?