We build up a microservice architecture which is called from above by a REACT SPA. All is deployed in the AWS Cloud, that is to say in an AWS EKS (K8S). We have at most 600 users in parallel.
Do you see an urgency to apply primarily a sync over async (via messaging) communication in such a high performant K8S environment instead of a plain sync REST communication equipped with connection and read timeouts and Circuit Breakers? From my perspective this can be handled easily by REST and messaging should only be applied for the fire-and-forget (one-way notification) paradigm. Furthermore, REST has a better Interface Definition Language (OpenAPI) and we can profit of all what HTTP provides, e.g. all the common HTTP status codes which everyone understands. I'd miss a HTTP mocking library like WireMock to stub responses; with messaging channels this might be awkward.
Is it still advisable to favor sync over async over REST, even deployed in the Cloud and K8S?