1 Star 0 Fork 992

张文华 / incubator-shenyu

forked from Apache ShenYu / shenyu 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
contribute
Sync branch
Cancel
Notice: Creating folder will generate an empty file .keep, because not support in Git
Loading...
README
Apache-2.0

Scalable, High Performance, Responsive API Gateway Solution for all MicroServices

https://shenyu.apache.org/

English | 简体中文

github forks github stars github contributors



Architecture


Features

  • ShenYu provides ability such as current limiting, fusing, forwarding, routing monitoring and so on by its plugins.

  • Support HTTP, RESTFul, WebSocket, Dubbo, GRPC, Tars and Spring Cloud Proxy.

  • Plug-in hot plug, users can customize the development.

  • Selectors and rules are dynamically configured for flexible matching.

  • Support for cluster deployment.

  • Support A/B test and grayscale publishing.


Quick Start (docker)

Run Apache ShenYu Admin

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

Run Apache ShenYu Bootstrap

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

Set router

{
  "name" : "Shenyu",
  "data" : "hello world"
}
  • Set routing rules(Standalone)
curl --location --request POST 'http://localhost:9195/shenyu/plugin/selectorAndRules' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pluginName": "divide",
    "selectorHandler": "[{\"upstreamUrl\":\"127.0.0.1:8080\"}]",
    "conditionDataList": [{
        "paramType": "uri",
        "operator": "match",
        "paramValue": "/**"
    }],
    "ruleDataList": [{
        "ruleHandler": "{\"loadBalance\":\"random\"}",
        "conditionDataList": [{
            "paramType": "uri",
            "operator": "match",
            "paramValue": "/**"
        }]
    }]
}'
{
  "name" : "Shenyu",
  "data" : "hello world"
}

Plugin

Whenever a request comes in, ShenYu will execute it by all enabled plugins through the chain of responsibility.

As the heart of ShenYu, plugins are extensible and hot-pluggable.

Different plugins do different things.

Of course, users can also customize plugins to meet their own needs.

If you want to customize, see custom-plugin


Selector & rule

According to your HTTP request headers, selectors and rules are used to route your requests.

Selector is your first route, It is coarser grained, for example, at the module level.

Rule is your second route and what do you think your request should do. For example a method level in a module.

The selector and the rule match only once, and the match is returned. So the coarsest granularity should be sorted last.


Data Caching & Data Sync

Since all data have been cached using ConcurrentHashMap in the JVM, it's very fast.

When user have changed the configuration in the background management, ShenYu will dynamically updates its cache by listening to the ZooKeeper node, WebSocket push, HTTP longPull.


Prerequisite

  • JDK 1.8+

Document & Website

EN doc CN doc


Stargazers over time

Stargazers over time


Known Users

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

All Users : Known Users

# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # header: license: spdx-id: Apache-2.0 copyright-owner: Apache Software Foundation paths-ignore: - '**/target/**' - '**/logs/**' - '**/*.log' - '**/*.tar.gz' - '**/spring.factories' - '**/spring.provides' - '/script/**' - '**/*.json' - '**/*.iml' - '**/.idea/**' - '**/*.classpath' - '**/.project' - '**/.settings/**' - '**/dependency-reduced-pom.xml' - '**/.gitignore' - '**/.gitmodules' - '**/.git/**' - '**/.travis.yml' - '**/.codecov.yml' - '**/.mvn/jvm.config' - '**/.mvn/wrapper/maven-wrapper.properties' - '**/.github/**' - '**/*.md' - '**/*.MD' - '**/*.txt' - '**/docs/**' - '**/.babelrc' - '**/.editorconfig' - '**/.eslintignore' - '**/assets/**' - '**/dist/**' - '**/etc/**' - '**/node/**' - '**/node_modules/**' - '**/test/coverage/**' - '.mvn' - 'shenyu-dist' - 'shenyu-dashboard' - 'DISCLAIMER' - 'licenses' - 'LICENSE' - 'NOTICE' comment: on-failure

About

JAVA语言中高性能,可插拔,响应式API网关 expand collapse
Java
Apache-2.0
Cancel

Releases

No release

Contributors

All

Activities

Load More
can not load any more
Java
1
https://gitee.com/zwh1/incubator-shenyu.git
git@gitee.com:zwh1/incubator-shenyu.git
zwh1
incubator-shenyu
incubator-shenyu
master

Search