I am somewhat new to microservices. I am currently developing an application using microservices and I am using both synchronous and asynchronous communication methods. Recently I saw few article saying that you shouldn't use synchronous(http) communication and should only use asynchronous(message broker).
So my first question is as the in title "Is synchronous communication between services anti-pattern in microservices ?"
And if it's yes, then how do I overcome this kinda situation: let's say I have two services called 'users' and 'messages' and user A wants to send a message to user B. so when user A sends a message I want to check user A has permission to send messages to user B, which permitions contains in user service. so order to get those information I have to do a request to user service from message service. How do I overcome this without using synchronous request to user service ?
You are right, synchronous interaction in microservice architecture is often called an antipattern, but I would not call it that, because we still often use this pattern.
Also, which pattern to use depends very much on your microservice architecture of the entire system as a whole.
You can use synchronous communication between services where it is really necessary and justified. I would use asynchronous communication wherever an instant response from another service is not required. Ideally, you should minimize synchronous interactions, but unfortunately, you still can't do without them, because there are situations when the client needs an instant response from the services.
The most popular synchronous communication technologies are:
I would recommend reading the pattern of synchronous interaction between services in the microservice architecture at the following link.