Apache Dubbo integration with k8s
⚠️ This is still an alpha version. ⚠️
Please refer to official website
The architecture of microservcice based on Dubbo consists of two main components:
Dubbo Admin
can configures and monitor the data plane from a global perspective. The Dubbo Admin can be divided into two parts internally: console and control-planeData Plane
is the Dubbo application built by different language SDKs running in VMs/containers, receiving the resources dispatched by Control Plane(directly or indirectly) and turn them into specific functions, such as service discovery, traffic routing, load balancing, etc.Dubbo Admin supports three runtime modes: kubernetes
, Half
and Universal
.
In kubernetes mode, the control plane will interact directly with the Kubernetes API-SERVER, watching the kubernetes resources and transform them as xDS resources for service discovery and traffic management configurations.
We all know the service
definitions of Kubernetes and Dubbo are different, Kubernetes Service
is more like an application concept run on a selected group of pods while Dubbo Service
can mean a specific RPC service inside the application process. So how does dubbo control plane manages to bridge the interface-application
gap, check here for more details.
In half mode, the dubbo applications are deployed in k8s cluster, while still using Nacos or Zookeeper as registries for service discovery.
In this mode, the control plane can retrieve and merge info from k8s and registries. The traffic policies are dispatched by control plane through registries.
In Universal mode, the dubbo applications are deployed in VM, using Nacos or Zookeeper as registries for service discovery,
control plane then interact with registry directly.
If you’re interested and want to dive into this project, you can follow these docs:
Developer
Dubboctl