README.md 34.7 KB
Newer Older
J
Jason Song 已提交
1 2 3
<img src="https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/logo/logo-simple.png" alt="apollo-logo" width="60%">

# Apollo - A reliable configuration management system
Y
Yiming Liu 已提交
4

Y
Yiming Liu 已提交
5 6
[![Build Status](https://travis-ci.org/ctripcorp/apollo.svg?branch=master)](https://travis-ci.org/ctripcorp/apollo)
[![GitHub release](https://img.shields.io/github/release/ctripcorp/apollo.svg)](https://github.com/ctripcorp/apollo/releases)
J
Jason Song 已提交
7
[![Maven Central Repo](https://img.shields.io/maven-central/v/com.ctrip.framework.apollo/apollo.svg)](https://mvnrepository.com/artifact/com.ctrip.framework.apollo/apollo-client)
Y
Yiming Liu 已提交
8
[![Coverage Status](https://coveralls.io/repos/github/ctripcorp/apollo/badge.svg?branch=master)](https://coveralls.io/github/ctripcorp/apollo?branch=master)
Y
Yiming Liu 已提交
9
<a href="https://scan.coverity.com/projects/ctripcorp-apollo">
J
Jason Song 已提交
10
  <img alt="Coverity Scan Build Status" src="https://img.shields.io/coverity/scan/8244.svg"/>
Y
Yiming Liu 已提交
11
</a>
Y
Yiming Liu 已提交
12
[![codecov.io](https://codecov.io/github/ctripcorp/apollo/coverage.svg?branch=master)](https://codecov.io/github/ctripcorp/apollo?branch=master)
J
Jason Song 已提交
13
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
Y
Yiming Liu 已提交
14

J
Jason Song 已提交
15

J
Jason Song 已提交
16
Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。
Y
Yiming Liu 已提交
17

18 19
服务端基于Spring Boot和Spring Cloud开发,打包后可以直接运行,不需要额外安装Tomcat等应用容器。

J
Jason Song 已提交
20
Java客户端不依赖任何框架,能够运行于所有Java运行时环境,同时对Spring/Spring Boot环境也有较好的支持。
J
Jason Song 已提交
21 22

.Net客户端不依赖任何框架,能够运行于所有.Net运行时环境。
23

J
Jason Song 已提交
24 25 26
更多产品介绍参见[Apollo配置中心介绍](https://github.com/ctripcorp/apollo/wiki/Apollo%E9%85%8D%E7%BD%AE%E4%B8%AD%E5%BF%83%E4%BB%8B%E7%BB%8D)

本地快速部署请参见[Quick Start](https://github.com/ctripcorp/apollo/wiki/Quick-Start)
Y
Yiming Liu 已提交
27

J
Jason Song 已提交
28
演示环境(Demo):
J
Jason Song 已提交
29
- [106.54.227.205](http://106.54.227.205/)
J
Jason Song 已提交
30 31
- 账号/密码:apollo/admin

J
Jason Song 已提交
32 33
> 如访问github速度缓慢,可以访问[gitee镜像](https://gitee.com/nobodyiam/apollo),不定期同步

J
Jason Song 已提交
34
# Screenshots
J
Jason Song 已提交
35
![配置界面](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/apollo-home-screenshot.png)
J
Jason Song 已提交
36

J
Jason Song 已提交
37
# Features
J
Jason Song 已提交
38
* **统一管理不同环境、不同集群的配置**
J
Jason Song 已提交
39 40 41
  * Apollo提供了一个统一界面集中式管理不同环境(environment)、不同集群(cluster)、不同命名空间(namespace)的配置。
  * 同一份代码部署在不同的集群,可以有不同的配置,比如zk的地址等
  * 通过命名空间(namespace)可以很方便的支持多个不同应用共享同一份配置,同时还允许应用对共享的配置进行覆盖
J
Jason Song 已提交
42
  * 配置界面支持多语言(中文,English)
Y
Yiming Liu 已提交
43

J
Jason Song 已提交
44
* **配置修改实时生效(热发布)**
J
Jason Song 已提交
45
  * 用户在Apollo修改完配置并发布后,客户端能实时(1秒)接收到最新的配置,并通知到应用程序。
Y
Yiming Liu 已提交
46

J
Jason Song 已提交
47 48
* **版本发布管理**
  * 所有的配置发布都有版本概念,从而可以方便的支持配置的回滚。
Y
Yiming Liu 已提交
49

J
Jason Song 已提交
50
* **灰度发布**
J
Jason Song 已提交
51
  * 支持配置的灰度发布,比如点了发布后,只对部分应用实例生效,等观察一段时间没问题后再推给所有应用实例。
Y
Yiming Liu 已提交
52

J
Jason Song 已提交
53
* **权限管理、发布审核、操作审计**
J
Jason Song 已提交
54 55
  * 应用和配置的管理都有完善的权限管理机制,对配置的管理还分为了编辑和发布两个环节,从而减少人为的错误。
  * 所有的操作都有审计日志,可以方便的追踪问题。
Y
Yiming Liu 已提交
56

J
Jason Song 已提交
57
* **客户端配置信息监控**
J
Jason Song 已提交
58
  * 可以方便的看到配置在被哪些实例使用
Y
Yiming Liu 已提交
59

J
Jason Song 已提交
60
* **提供Java和.Net原生客户端**
J
Jason Song 已提交
61
  * 提供了Java和.Net的原生客户端,方便应用集成
J
Jason Song 已提交
62
  * 支持Spring Placeholder, Annotation和Spring Boot的ConfigurationProperties,方便应用使用(需要Spring 3.1.1+)
J
Jason Song 已提交
63
  * 同时提供了Http接口,非Java和.Net应用也可以方便的使用
J
Jason Song 已提交
64 65 66 67 68 69 70 71

* **提供开放平台API**
  * Apollo自身提供了比较完善的统一配置管理界面,支持多环境、多数据中心配置管理、权限、流程治理等特性。
  * 不过Apollo出于通用性考虑,对配置的修改不会做过多限制,只要符合基本的格式就能够保存。
  * 在我们的调研中发现,对于有些使用方,它们的配置可能会有比较复杂的格式,如xml, json,需要对格式做校验。
  * 还有一些使用方如DAL,不仅有特定的格式,而且对输入的值也需要进行校验后方可保存,如检查数据库、用户名和密码是否匹配。
  * 对于这类应用,Apollo支持应用方通过开放接口在Apollo进行配置的修改和发布,并且具备完善的授权和权限控制

J
Jason Song 已提交
72 73 74 75 76
* **部署简单**
  * 配置中心作为基础服务,可用性要求非常高,这就要求Apollo对外部依赖尽可能地少
  * 目前唯一的外部依赖是MySQL,所以部署非常简单,只要安装好Java和MySQL就可以让Apollo跑起来
  * Apollo还提供了打包脚本,一键就可以生成所有需要的安装包,并且支持自定义运行时参数

J
Jason Song 已提交
77 78
# Usage
  1. [Apollo使用指南](https://github.com/ctripcorp/apollo/wiki/Apollo%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97)
J
Jason Song 已提交
79
  2. [Java客户端使用指南](https://github.com/ctripcorp/apollo/wiki/Java%E5%AE%A2%E6%88%B7%E7%AB%AF%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97)
J
Jason Song 已提交
80
  3. [.Net客户端使用指南](https://github.com/ctripcorp/apollo/wiki/.Net%E5%AE%A2%E6%88%B7%E7%AB%AF%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97)
J
Jason Song 已提交
81
  4. [其它语言客户端接入指南](https://github.com/ctripcorp/apollo/wiki/%E5%85%B6%E5%AE%83%E8%AF%AD%E8%A8%80%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%8E%A5%E5%85%A5%E6%8C%87%E5%8D%97)
J
Jason Song 已提交
82
  5. [Apollo开放平台接入指南](https://github.com/ctripcorp/apollo/wiki/Apollo%E5%BC%80%E6%94%BE%E5%B9%B3%E5%8F%B0)
J
Jason Song 已提交
83
  6. [Apollo使用场景和示例代码](https://github.com/ctripcorp/apollo-use-cases)
J
Jason Song 已提交
84

J
Jason Song 已提交
85
# Design
J
Jason Song 已提交
86
  * [Apollo配置中心设计](https://github.com/ctripcorp/apollo/wiki/Apollo%E9%85%8D%E7%BD%AE%E4%B8%AD%E5%BF%83%E8%AE%BE%E8%AE%A1)
L
lepdou 已提交
87
  * [Apollo核心概念之“Namespace”](https://github.com/ctripcorp/apollo/wiki/Apollo%E6%A0%B8%E5%BF%83%E6%A6%82%E5%BF%B5%E4%B9%8B%E2%80%9CNamespace%E2%80%9D)
J
Jason Song 已提交
88
  * [Apollo配置中心架构剖析](https://mp.weixin.qq.com/s/-hUaQPzfsl9Lm3IqQW3VDQ)
J
Jason Song 已提交
89
  * [Apollo源码解析](http://www.iocoder.cn/categories/Apollo/)(据说Apollo非常适合作为初学者第一个通读源码学习的分布式中间件产品)
J
Jason Song 已提交
90

J
Jason Song 已提交
91
# Development
J
Jason Song 已提交
92 93 94 95 96
  * [Apollo开发指南](https://github.com/ctripcorp/apollo/wiki/Apollo%E5%BC%80%E5%8F%91%E6%8C%87%E5%8D%97)
  * Code Styles
    * [Eclipse Code Style](https://github.com/ctripcorp/apollo/blob/master/apollo-buildtools/style/eclipse-java-google-style.xml)
    * [Intellij Code Style](https://github.com/ctripcorp/apollo/blob/master/apollo-buildtools/style/intellij-java-google-style.xml)

J
Jason Song 已提交
97
# Deployment
J
Jason Song 已提交
98 99
  * [Quick Start](https://github.com/ctripcorp/apollo/wiki/Quick-Start)
  * [分布式部署指南](https://github.com/ctripcorp/apollo/wiki/%E5%88%86%E5%B8%83%E5%BC%8F%E9%83%A8%E7%BD%B2%E6%8C%87%E5%8D%97)
J
Jason Song 已提交
100

J
Jason Song 已提交
101 102 103
# Release Notes
  * [版本发布历史](https://github.com/ctripcorp/apollo/releases)

J
Jason Song 已提交
104
# FAQ
J
Jason Song 已提交
105
  * [常见问题回答](https://github.com/ctripcorp/apollo/wiki/FAQ)
L
lepdou 已提交
106
  * [部署&开发遇到的常见问题](https://github.com/ctripcorp/apollo/wiki/%E9%83%A8%E7%BD%B2&%E5%BC%80%E5%8F%91%E9%81%87%E5%88%B0%E7%9A%84%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)
J
Jason Song 已提交
107

J
Jason Song 已提交
108
# Presentation
J
Jason Song 已提交
109
  * [携程开源配置中心Apollo的设计与实现](http://www.itdks.com/dakalive/detail/3420)
J
Jason Song 已提交
110 111 112
    * [Slides](https://myslide.cn/slides/10168)
  * [配置中心,让微服务更『智能』](https://2018.qconshanghai.com/presentation/799)
    * [Slides](https://myslide.cn/slides/10035)
J
Jason Song 已提交
113 114

# Publication
J
Jason Song 已提交
115
  * [开源配置中心Apollo的设计与实现](https://www.infoq.cn/article/open-source-configuration-center-apollo)
J
Jason Song 已提交
116
  * [配置中心,让微服务更『智能』](https://mp.weixin.qq.com/s/iDmYJre_ULEIxuliu1EbIQ)
J
Jason Song 已提交
117

J
Jason Song 已提交
118
# Support
J
Jason Song 已提交
119 120
<table>
  <thead>
J
Jason Song 已提交
121 122
    <th>Apollo技术支持⑤群<br />群号:914839843(未满)</th>
    <th>Apollo技术支持④群<br />群号:516773934(已满)</th>
J
Jason Song 已提交
123 124 125
    <th>Apollo技术支持③群<br />群号:742035428(已满)</th>
    <th>Apollo技术支持②群<br />群号:904287263(已满)</th>
    <th>Apollo技术支持①群<br />群号:375526581(已满)</th>
J
Jason Song 已提交
126 127 128
  </thead>
  <tbody>
    <tr>
J
Jason Song 已提交
129 130 131 132 133
      <td><img src="https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/tech-support/tech-support-qq-5.png" alt="tech-support-qq-5"></td>
      <td><img src="https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/tech-support/tech-support-qq-4.png" alt="tech-support-qq-4"></td>
      <td><img src="https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/tech-support/tech-support-qq-3.png" alt="tech-support-qq-3"></td>
      <td><img src="https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/tech-support/tech-support-qq-2.png" alt="tech-support-qq-2"></td>
      <td><img src="https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/tech-support/tech-support-qq-1.png" alt="tech-support-qq-1"></td>
J
Jason Song 已提交
134 135 136
    </tr>
  </tbody>
</table>
J
Jason Song 已提交
137

J
Jason Song 已提交
138
# Contribution
139 140 141 142 143 144

Please make sure to read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making a pull request.

Thanks for all the people who contributed to Apollo!

<a href="https://github.com/ctripcorp/apollo/graphs/contributors"><img src="https://opencollective.com/apollo/contributors.svg?width=880&button=false" /></a>
J
Jason Song 已提交
145

J
Jason Song 已提交
146
# License
J
Jason Song 已提交
147
The project is licensed under the [Apache 2 license](https://github.com/ctripcorp/apollo/blob/master/LICENSE).
J
Jason Song 已提交
148 149 150

# Known Users

J
Jason Song 已提交
151
> 按照登记顺序排序,更多接入公司,欢迎在[https://github.com/ctripcorp/apollo/issues/451](https://github.com/ctripcorp/apollo/issues/451)登记(仅供开源用户参考)
J
Jason Song 已提交
152

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
![携程](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ctrip.png)
![青石证券](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/bluestone.png)
![沙绿](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/sagreen.png)
![航旅纵横](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/umetrip.jpg)
![58转转](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zhuanzhuan.png)
![蜂助手](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/phone580.png)
![海南航空](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/hainan-airlines.png)
![CVTE](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/cvte.png)
![明博教育](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mainbo.jpg)
![麻袋理财](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/madailicai.png)
![美行科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mxnavi.jpg)
![首展科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/fshows.jpg)
![易微行](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/feezu.png)
![人才加](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/rencaijia.png)
![凯京集团](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/keking.png)
![乐刻运动](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/leoao.png)
![大疆](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/dji.png)
![快看漫画](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/kkmh.png)
![我来贷](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/wolaidai.png)
![虚实软件](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xsrj.png)
![网易严选](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yanxuan.png)
![视觉中国](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/sjzg.png)
![资产360](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zc360.png)
![亿咖通](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ecarx.png)
![5173](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/5173.png)
![沪江](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/hujiang.png)
![网易云基础服务](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/163yun.png)
![现金巴士](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/cash-bus.png)
![锤子科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/smartisan.png)
![头等仓](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/toodc.png)
![吉祥航空](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/juneyaoair.png)
![263移动通信](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/263mobile.png)
![投投金融](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/toutoujinrong.png)
![每天健康](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mytijian.png)
![麦芽金服](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/maiyabank.png)
![蜂向科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/fengunion.png)
![即科金融](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/geex-logo.png)
![贝壳网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/beike.png)
![有赞](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/youzan.png)
![云集汇通](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yunjihuitong.png)
![犀牛瀚海科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/rhinotech.png)
![农信互联](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/nxin.png)
![蘑菇租房](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mgzf.png)
![狐狸金服](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/huli-logo.png)
![漫道集团](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mandao.png)
![怪兽充电](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/enmonster.png)
![南瓜租房](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/nanguazufang.png)
![石投金融](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/shitoujinrong.png)
![土巴兔](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/tubatu.png)
![平安银行](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/payh_logo.png)
![新新贷](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xinxindai.png)
![中国华戎科技集团](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/chrtc.png)
![涂鸦智能](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/tuya_logo.png)
![立创商城](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/szlcsc.jpg)
![乐赚金服](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/hairongyi.png)
![开心汽车](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/kxqc.png)
![乐赚金服](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ppcredit.png)
![普元信息](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/primeton.png)
![医帮管家](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/hoskeeper.png)
![付啦信用卡管家](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/fula.png)
![悠哉网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/uzai.png)
![梧桐诚选](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/91wutong.png)
![拍拍贷](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ppdai.png)
![信用飞](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xinyongfei.png)
![丁香园](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/dxy.png)
![国槐科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ghtech.png)
![亲宝宝](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/qbb.png)
![华为视频直播](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/huawei_logo.png)
![微播易](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/weiboyi.png)
![欧飞](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ofpay.png)
![迷说](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mishuo.png)
![一下科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yixia.png)
![DaoCloud](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/daocloud.png)
![汽摩交易所](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/cnvex.png)
![好未来教育集团](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/100tal.png)
![猎户星空](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ainirobot.png)
![卓健科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zhuojian.png)
![银江股份](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/enjoyor.png)
![途虎养车](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/tuhu.png)
![河姆渡](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/homedo.png)
![新网银行](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xwbank.png)
![中旅安信云贷](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ctspcl.png)
![美柚](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/meiyou.png)
![震坤行](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zkh-logo.png)
![万谷盛世](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/wgss.png)
![铂涛旅行](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/plateno.png)
![乐心](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/lifesense.png)
![亿投传媒](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/reachmedia.png)
![股先生](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/guxiansheng.png)
![财学堂](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/caixuetang.png)
![4399](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/4399.png)
![汽车之家](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/autohome.png)
![面包财经](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mbcaijing.png)
![虎扑](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/hoopchina.png)
![搜狐汽车](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/sohu-auto.png)
![量富征信](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/liangfuzhengxin.png)
![卖好车](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/maihaoche.png)
![中移物联网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zyiot.jpg)
![易车网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/biauto.png)
![一药网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/maiyaole.png)
![小影](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xiaoying.png)
![彩贝壳](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/caibeike.png)
![YEELIGHT](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yeelight.png)
![积目](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/itsgmu.png)
![极致医疗](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/acmedcare.png)
![金汇金融](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jinhui365.png)
![久柏易游](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/900etrip.png)
![小麦铺](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/24xiaomai.png)
![搜款网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/vvic.png)
![米庄理财](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mizlicai.png)
![贝吉塔网络科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/bjt.png)
![微盟](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/weimob.png)
![网易卡搭](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/kada.png)
![股书](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/kapbook.png)
![聚贸](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jumore.png)
![广联达bimface](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/bimface.png)
![环球易购](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/globalgrow.png)
![浙江执御](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jollychic.png)
![二维火](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/2dfire.jpg)
![上品](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/shopin.png)
![浪潮集团](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/inspur.png)
![纳里健康](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ngarihealth.png)
![橙红科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/oraro.png)
![龙腾出行](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/dragonpass.png)
![荔枝](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/lizhi.fm.png)
![汇通达](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/htd.png)
![云融金科](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yunrong.png)
![天生掌柜](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/tszg360.png)
![容联光辉](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/rongplus.png)
![云天励飞](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/intellif.png)
![嘉云数据](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jiayundata.png)
![中泰证券网络金融部](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zts.png)
![网易易盾](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/163dun.png)
![享物说](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xiangwushuo.png)
J
Jason Song 已提交
287 288
![申通](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/sto.png) 
![金和网络](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jinhe.png) 
J
Jason Song 已提交
289
![二三四五](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/2345.png) 
J
Jason Song 已提交
290 291 292 293
![恒天财富](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/chtwm.jpg) 
![沐雪微信](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/uweixin.png) 
![温州医科大学附属眼视光医院](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/wzeye.png) 
![联通支付](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/10010pay.png) 
J
Jason Song 已提交
294
![杉数科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/shanshu.png) 
J
Jason Song 已提交
295
![分利宝](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/fenlibao.png) 
J
Jason Song 已提交
296
![核桃编程](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/hetao101.png) 
J
Jason Song 已提交
297
![小红书](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xiaohongshu.png) 
J
Jason Song 已提交
298
![幸福西饼](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/blissmall.png) 
J
Jason Song 已提交
299
![跨越速运](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ky-express.png) 
J
Jason Song 已提交
300
![OYO](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/oyohotels.png) 
J
Jason Song 已提交
301
![叮咚买菜](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/100-me.png) 
J
Jason Song 已提交
302 303
![智道网联](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zhidaohulian.jpg) 
![雪球](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xueqiu.jpg) 
J
Jason Song 已提交
304 305
![车通云](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/autocloudpro.png) 
![哒哒英语](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/dadaabc.png) 
J
Jason Song 已提交
306 307
![小E微店](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xedaojia.jpg) 
![达令家](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/daling.png) 
J
Jason Song 已提交
308 309
![人力窝](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/renliwo.png) 
![嘉美在线](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/mocire.jpg) 
J
Jason Song 已提交
310
![极易付](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/uepay.png) 
J
Jason Song 已提交
311
![智慧开源](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/wdom.png) 
J
Jason Song 已提交
312 313
![车仕库](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/cheshiku.png) 
![太美医疗科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/taimeitech.png) 
J
Jason Song 已提交
314 315
![亿联百汇](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yilianbaihui.png) 
![舟谱数据](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zhoupu123.png) 
J
Jason Song 已提交
316 317 318
![芙蓉兴盛](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/frxs.png) 
![野兽派](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/beastshop.png) 
![凯叔讲故事](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/kaishustory.png) 
319
![好大夫在线](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/haodf.png) 
J
Jason Song 已提交
320
![云幂信息技术](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/insyunmi.png) 
J
Jason Song 已提交
321
![兑吧](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/duiba.png) 
J
Jason Song 已提交
322
![九机网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/9ji.png) 
J
Jason Song 已提交
323 324
![随手科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/sui.png) 
![万谷盛世](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/aixiangdao.png) 
J
Jason Song 已提交
325
![云账房](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yunzhangfang.png) 
J
Jason Song 已提交
326 327
![浙江远图互联](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yuantutech.png) 
![青客公寓](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/qk365.png) 
J
Jason Song 已提交
328
![东方财富](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/eastmoney.png) 
J
Jason Song 已提交
329 330
![极客修](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jikexiu.png) 
![美市科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/meix.png) 
J
Jason Song 已提交
331 332
![中通快递](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zto.png) 
![易流科技](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/e6yun.png) 
J
Jason Song 已提交
333 334 335
![实习僧](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xiaoyuanzhao.png) 
![达令家](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/dalingjia.png) 
![寺库](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/secoo.png) 
J
Jason Song 已提交
336 337
![连连支付](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/lianlianpay.png) 
![众安保险](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zhongan.png) 
J
Jason Song 已提交
338 339 340
![360金融](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/360jinrong.png) 
![中航服商旅](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/caschina.png) 
![贝壳](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ke.png) 
J
Jason Song 已提交
341 342
![Yeahmobi易点天下](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/yeahmobi.png) 
![北京登云美业网络科技有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/idengyun.png) 
J
Jason Song 已提交
343
![金和网络](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jinher.png) 
J
Jason Song 已提交
344 345
![中移(杭州)信息技术有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/komect.png) 
![北森](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/beisen.png) 
J
Jason Song 已提交
346
![合肥维天运通](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/log56.png) 
J
Jason Song 已提交
347
![北京蜜步科技有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/meboth.png) 
J
Jason Song 已提交
348
![术康](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/postop.png) 
J
Jason Song 已提交
349
![富力集团](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/rfchina.png) 
J
Jason Song 已提交
350
![天府行](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/tfxing.png) 
J
Jason Song 已提交
351
![八商山](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/8travelpay.png) 
J
Jason Song 已提交
352 353
![中原地产](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/centaline.png) 
![智科云达](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zkyda.png) 
J
Jason Song 已提交
354
![中原730](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/house730.png) 
J
Jason Song 已提交
355 356 357
![百果园](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/pagoda.png) 
![波罗蜜](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/bolome.png) 
![Xignite](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/xignite.png) 
J
Jason Song 已提交
358 359
![杭州有云科技有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/aduer.png) 
![成都书声科技有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jojoreading.png) 
J
Jason Song 已提交
360
![斯维登集团](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/sweetome.png) 
J
Jason Song 已提交
361
![广东快乐种子科技有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/vipthink.png) 
J
Jason Song 已提交
362
![上海盈翼文化传播有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/tongxuecool.png) 
J
Jason Song 已提交
363 364 365 366
![上海尚诚消费金融股份有限公司](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/sccfc.png) 
![自如网](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/ziroom.png) 
![京东](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/jd.png) 
![兔展智能](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/rabbitpre.png) 
J
Jason Song 已提交
367
![竹贝](https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/known-users/zhubei.png) 
J
Jason Song 已提交
368 369 370 371

# Awards

<img src="https://raw.githubusercontent.com/ctripcorp/apollo-community/master/images/awards/oschina-2018-award.jpg" width="240px" alt="2018 年度最受欢迎中国开源软件">
K
kezhenxu94 已提交
372 373 374 375

# Stargazers over time

[![Stargazers over time](https://starcharts.herokuapp.com/ctripcorp/apollo.svg)](https://starcharts.herokuapp.com/ctripcorp/apollo)