You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR will transfer all of the service's modified configuration logic to a separate configuration service.
That is, when this PR is merged, the configuration of all services will be centrally managed, and the original ConfigService Library will be completely removed.
Why?
Abstract the ConfigService into a library, which is great in a single application scenario (see "全栈之巅").
However, the problem is that this is a microservice application.
If each service is created with the ConfigService database, it is difficult to manage data in a unified manner. Import, export, and migration operations are difficult and inefficient.
Therefore, it is necessary to build an additional Config Microservice
The content you are editing has changed. Please copy your edits and refresh the page.
BREAKING CHANGE
This PR will transfer all of the service's modified configuration logic to a separate configuration service.
That is, when this PR is merged, the configuration of all services will be centrally managed, and the original ConfigService Library will be completely removed.
Why?
Abstract the ConfigService into a library, which is great in a single application scenario (see "全栈之巅").
However, the problem is that this is a microservice application.
If each service is created with the ConfigService database, it is difficult to manage data in a unified manner. Import, export, and migration operations are difficult and inefficient.
Therefore, it is necessary to build an additional Config Microservice
Tasks
The text was updated successfully, but these errors were encountered: