In dubbo architecture, why is the Gateway layer generally not used?

recently studied Spring-cloud. We know that Zuul is a gateway component under the Spring-cloud system. After reading a blog post by Zhai Yongchao, I mentioned this sentence:

**duboo**

Why is the Gateway layer not needed under the dubbo architecture?

Mar.04,2021

  1. decentralized to prevent single point of failure;
  2. Direct connection performance is certainly better because there is no gateway forwarding.

the registry is responsible for maintaining and managing the service provider, and all calls are directly connected.


dubbo actually corresponds to the robin and feign, in springclod are inter-service calls. If the corresponding client (browser, app)), you can also add a gateway or nginx to the api

.
Menu