Top products from r/microservices

We found 6 product mentions on r/microservices. We ranked the 4 resulting products by number of redditors who mentioned them. Here are the top 20.

Next page

Top comments that mention products on r/microservices:

u/prasp · 2 pointsr/microservices

Two books that will serve you well

  1. Building Microservices by Sam Newman
  2. Production Ready Microservices

    It is basically SOA done right as @theplannacleman had mentioned in the comments
    As a primer read Martin Fowlers and Chris Richardsons articles in the sites mentioned below as well as Susans Fowlers post on the layers of microservice architecture here
u/MrTCSmith · 2 pointsr/microservices

I'm reading this right now, it's highly recommended.

Building Microservices: Designing Fine-Grained Systems https://www.amazon.com/dp/1491950358/ref=cm_sw_r_cp_apa_i_.TcmDbE37JJPK

u/Zdeno_ · 1 pointr/microservices

Implementing DDD from Vernon is a must-read after Evans:

https://www.amazon.com/Implementing-Domain-Driven-Design-Vaughn-Vernon/dp/0321834577

It is not exactly focused on microservices. However, the DDD conception "Bounded context" is the key point for microservices.

u/architester · 1 pointr/microservices

I don't believe Microservice-to-Microservice communication is an antipattern. It is a common practice. The only way to avoid it in many cases is to make a monolith. Having services talk to one another does have a cost, so you need to do it sparingly and cautiously. It adds latency, and couples the services such that if one goes down, so does the other, so use appropriate patterns for resiliency. You definitely want to avoid deep chains of calls (Service A calls B that calls C that calls D...etc) as the latency will grow and the risk of failure multiplies with each new dependent call in the chain.

Often, you can reduce the number of service-service calls by consolidating services. The word "micro" in microservices often leads people to build services that are too small and this introduces even more service-service calls. These "nano-services" are indeed an antipattern.