架构图

Apache ShenYu 介绍 - 图1

为什么叫ShenYu

ShenYu(神禹)是中国古代君主夏禹(后世亦称大禹)的尊称,他留下了三渡黄河造福人民并成功治理黄河洪水的感人故事。他和尧、舜一起被认为是中国古代三大帝王之一。

  • 首先,ShenYu这个名字是为了弘扬我们中华文明的传统美德。
  • 其次,对于网关来说最重要的是流量管理。
  • 最后,社区将以公平、公正、公开、择优的方式做事,在向神禹致敬的同时,也符合 Apache Way。

特点

  • Proxy: Support for Apache® Dubbo™, Spring Cloud, gRPC, Motan, SOFA, TARS, WebSocket, MQTT
  • Security: Sign, OAuth 2.0, JSON Web Tokens, WAF plugin
  • API governance: Request, response, parameter mapping, Hystrix, RateLimiter plugin
  • Observability: Tracing, metrics, logging plugin
  • Dashboard: Dynamic traffic control, visual backend for user menu permissions
  • Extensions: Plugin hot-swapping, dynamic loading
  • Cluster: NGINX, Docker, Kubernetes
  • Language: provides .NET, Python, Go, Java client for API register

脑图

Apache ShenYu 介绍 - 图2

快速开始 (docker)

运行 Apache ShenYu Admin

  1. > docker pull apache/shenyu-admin
  2. > docker network create shenyu
  3. > docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin

运行 Apache ShenYu Bootstrap

  1. > docker network create shenyu
  2. > docker pull apache/shenyu-bootstrap
  3. > docker run -d -p 9195:9195 --net shenyu apache/shenyu-bootstrap

路由设置

  1. {
  2. "name" : "Shenyu",
  3. "data" : "hello world"
  4. }
  • 设置路由规则 (Standalone)

localKey: 123456添加到Headers中。如果需要自定义localKey,可以使用sha512工具基于明文生成密钥,并更新shenyu.local.sha512Key属性。

  1. curl --location --request POST 'http://localhost:9195/shenyu/plugin/selectorAndRules' \
  2. --header 'Content-Type: application/json' \
  3. --header 'localKey: 123456' \
  4. --data-raw '{
  5. "pluginName": "divide",
  6. "selectorHandler": "[{\"upstreamUrl\":\"127.0.0.1:8080\"}]",
  7. "conditionDataList": [{
  8. "paramType": "uri",
  9. "operator": "match",
  10. "paramValue": "/**"
  11. }],
  12. "ruleDataList": [{
  13. "ruleHandler": "{\"loadBalance\":\"random\"}",
  14. "conditionDataList": [{
  15. "paramType": "uri",
  16. "operator": "match",
  17. "paramValue": "/**"
  18. }]
  19. }]
  20. }'
  1. {
  2. "name" : "Shenyu",
  3. "data" : "hello world"
  4. }

插件

每当有请求进来,Apache ShenYu将基于责任链模式由所有启用的插件来执行它。

作为Apache ShenYu的核心,插件是可扩展和可热插拔的。

不同的插件做不同的事情。

当然,用户也可以自定义插件来满足自己的需求。

如果要自定义,见自定义插件


Selector & Rule

根据您的HTTP请求头,Selector和Rule将用于路由您的请求。

Selector是您的第一层路由,它是粗粒度的,例如模块级。

Rule是你的第二层路由,你认为你的请求应该做什么。例如模块中的方法级别。

Selector和Rule只匹配一次,然后返回匹配结果。因此最粗的粒度应该最后排序。


Data Caching & Data Sync

因为所有数据都是使用JVM中的ConcurrentHashMap缓存的,所以速度非常快。

Apache ShenYu通过监听ZooKeeper节点(或WebSocket push,HTTP long polling),在后台管理中用户更改配置信息时动态更新缓存。

Apache ShenYu 介绍 - 图3

Apache ShenYu 介绍 - 图4


Prerequisite

  • JDK 1.8+

Stargazers over time

Apache ShenYu 介绍 - 图5


贡献与支持


Known Users

In order of registration, More access companies are welcome to register at https://github.com/apache/shenyu/issues/68 (For open source users only) .

用户 : 已知用户