Config Center
Basic usage and working principles of the Dubbo Config Center
The configuration center (config-center) in Dubbo can undertake two types of responsibilities:
Please refer to the specific extension implementations to understand how to enable the configuration center.
It is worth noting that the Dubbo dynamic configuration center defines two different levels of isolation options, namely namespace and group.
dubbo
. The namespace is typically used for multi-tenant isolation, i.e., logical isolation of different configurations for different users or environments, distinct from physical isolation, as different namespaces still use the same physical cluster.dubbo
. group
is typically used to categorize a set of configuration items of the same type/purpose and is an additional layer of isolation for configuration items under the namespace
.Refer to Configuration Description - Configuration Item Manual to learn more about configuration items offered by config-center beyond namespace and group.
To be compatible with the 2.6.x version configuration, when using Zookeeper as the registry center, and without explicitly configuring the configuration center, the Dubbo framework will default to using this Zookeeper as the configuration center, but it will only be used for service governance purposes.
Basic usage and working principles of the Dubbo Config Center
Basic usage and working principles of the Zookeeper configuration center.
Basic usage and working principles of the Nacos configuration center.
The basic usage and working principles of Apollo Configuration Center.
More implementations of configuration center extensions, including etcd, consul, etc.