TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Managing Service-to-Service Comms in Microservices

74 pointsby danielbryantukabout 5 years ago

4 comments

serbrechabout 5 years ago
I really dislike that all &quot;Microservice communication&quot; guidances encourages RPC, synchronized communication. Service Meshes make the nightmare easier to bare. It makes bad design easier to implement than good design.<p>It creates temporal coupling between the services that becomes really hard to manage at scale, and relies on bells and whistles from the underlying orchestrator to keep your system healthy, instead of relying on the inherent robustness of your system design.
评论 #22422087 未加载
评论 #22414494 未加载
gbuk2013about 5 years ago
We use a combination pub&#x2F;sub over WebSocket and Resque job queues for communicating between microservices and it works very well.
teknopaulabout 5 years ago
Struck me as a lot of words to say webserver.
vs2about 5 years ago
Great summary