NingG +

实践系列:分布式配置中心的实现方案,调研

0. 背景

1. 调研分析

分析,拍着脑袋,猜一下,有几种方向:

1.1. 方案汇总

名称 来源 原理 备注
Disconf 百度开源 MySQL + ZK https://github.com/knightliao/disconf
Apollo 携程开源 HTTP 长轮询 https://github.com/ctripcorp/apollo
Diamond 阿里开源   https://github.com/takeseem/diamond
diablo 个人-轻量级 HTTP 长轮询 https://github.com/ihaolin/diablo
xxl-conf 点评开源 MySQL + ZK https://github.com/xuxueli/xxl-conf
antelope 个人 ZK https://github.com/believeyrc/antelope

1.2. 常见问题:diablo

疑问汇总:

  1. Maven 插件 assembly:assemble.xml 文件的作用?如何使用? http://maven.apache.org/plugins/maven-assembly-plugin/assembly.html
  2. maven-assembly-plugin,Maven 的打包插件
  3. package-info.java 文件: http://www.cnblogs.com/jiangxinnju/p/5146768.html

Maven 中,插件配置,导致 debug 失效:

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <!--<configuration>-->
        <!--<mainClass>me.hao0.diablo.server.DiabloServer</mainClass>-->
        <!--<fork>true</fork>-->
        <!--<executable>true</executable>-->
    <!--</configuration>-->
</plugin>

2. 附录

2.1. 附录 A:HTTP polling vs long polling

参考:

http long polling:

3. 参考资料

AB Test:

配置中心:

其他惊喜:

微服务资料:

原文地址:https://ningg.top/arch-series-config-center-solution-summary/
微信公众号 ningg, 联系我

同类文章:

微信搜索: 公众号 ningg, 联系我, 交个朋友.

Top