RabbitMQ पर request/reply (RPC) messaging का उपयोग करके synchronous-style request-response communication को सक्षम बनाता है — एक client एक request भेजता है और एक reply queue के माध्यम से एक response प्राप्त करता है, responses को requests से match करने के लिए एक correlation ID का उपयोग करते हुए। यह service-to-service calls के लिए एक उपयोगी pattern है।
RabbitMQ में RPC कैसे काम करता है
RPC pattern over messaging:
1. CLIENT sends a REQUEST message, including:
→ a REPLY-TO queue (where the response should go)
→ a CORRELATION ID (unique ID to match the response to this request)
2. SERVER (consumer) processes the request and sends a RESPONSE to the reply-to queue,
including the same CORRELATION ID
3. CLIENT receives the response from its reply queue, matches it by CORRELATION ID →
pairs the response with the original request
→ request-response over async messaging
