Coforge Interview Question

How two microservices communicated to each other?

Interview Answer

Anonymous

Jan 12, 2026

Two microservices communicate via synchronous (request-response) or asynchronous (event-driven) methods, using protocols like REST (HTTP/JSON) for direct calls or gRPC (Protobufs) for high performance, and message brokers (Kafka, RabbitMQ) for decoupled, event-based interactions, enabling loose coupling and independent scaling.