Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

60%
+1 −0
Q&A Best practices for designing a central gateway/hub for microservices communication

Normally gateways just do routing and maybe load balancing. That's one well-defined job that can be done well. You are adding a second job, which is to be a universal adapter. An adapter would be ...

posted 1d ago by matthewsnyder‭

Answer
#1: Initial revision by user avatar matthewsnyder‭ · 2025-04-02T17:48:18Z (1 day ago)
Normally gateways just do routing and maybe load balancing. That's one well-defined job that can be done well. You are adding a second job, which is to be a universal adapter.

An adapter would be easier to implement as a common library. Then you don't have to bloat the gateway with adapter logic, and the library is easier to modularize - it's unlikely that each of your microservices needs to connect to each external service.

You mentioned the issue with multiple languages but this is easily solved by creating bindings for each language. There's probably not that many languages in circulation.

If you really don't want a library, the protocol adapter should be its own microservice. This would be service whose _one job_ is to be a man in the middle between external (routed via the gateway) and internal services. The nice thing is that you can have a single adapter, or you can break it up into separate ones as much as you want. You can assign different resources to each one, autoscale them independently, and when one adapter goes down it doesn't also kill all routing across your system. This would be more aligned with the microservice philosophy.