Apache APIs IX integrates Open Policy Agent

Open Policy Agent (OPA) is an open source lightweight general policy engine, which can replace the built-in policy function module in the software to help users realize the decoupling of service and policy engine. Benefit from OPA Perfect ecosystem , users can easily integrate OPA and other services, such as program library, HTTP API, etc.As sh ...

Added by patnet2004 on Wed, 23 Feb 2022 11:49:06 +0200

05 Gateway application practice

Gateway introduction Background analysis We know that a large-scale system is often divided into many micro services when it is designed. So how can a client call so many microservices? The client can directly send a request to the microservice. Each microservice has a public URL that can be directly mapped to a specific microservice. If ther ...

Added by BTalon on Sun, 20 Feb 2022 09:07:52 +0200

GateWay cluster deployment, load balancing with nacos and Nginx under windows

1, Configure and start nacos The purpose of configuring nacos is to realize dynamic routing and route to the corresponding service address according to the service name. First of all, you need to download a nacos 2.0.3 on the official website. For the download and installation configuration of nacos, see my other article and link https://blog ...

Added by somo on Sat, 19 Feb 2022 23:09:14 +0200

How to build an Apache APIs IX plug-in from 0 to 1 for back-end novices

In the past few months, community users have added many plug-ins to Apache apisid, enriching the ecosystem of Apache apisid. From the perspective of users, the emergence of more diversified plug-ins is undoubtedly a good thing. On the basis of improving the high performance and low latency of Apache APISIX, they meet users' more expectations fo ...

Added by Griven on Wed, 16 Feb 2022 06:31:38 +0200

"springcloud 2021 series" gateway new generation API gateway service

After the Netflix open source abortion, Spring is constantly replacing Netflix related components, such as Eureka, Zuul, Feign, Ribbon, etc. Zuul's alternative product is SpringCloud Gateway, which is a gateway component developed by the Spring team, which can realize new features such as security authentication, current limiting, Retry, and su ...

Added by jerdo on Sat, 12 Feb 2022 03:01:04 +0200

Re learn SpringCloud series nine micro service GateWay gateway

Is it necessary to learn Zuul? 1, What is API gateway Before we begin to explain the Spring Cloud GateWay, it is necessary to explain what an API gateway is. The word gateway first appeared in network devices, such as network devices with routing function, isolation function and security verification function between two isolated LANs. ...

Added by scorphus on Tue, 08 Feb 2022 06:19:06 +0200

GatewayFilter and GlobalFilter in Spring Cloud Gateway|

Abstract: This paper mainly introduces what is GatewayFilter and GlobalFilter, as well as the differences and connections. Then it introduces how to customize the use of GatewayFilter and GlobalFilter in Spring Cloud Gateway. 1. Filter of spring cloud gateway The Filter in Spring Cloud gateway can be divided into two types in terms of interfa ...

Added by tridean34 on Sun, 06 Feb 2022 19:55:05 +0200

Introduction to gateway and implementation scheme of gray Publishing

Introduction to gateway and implementation scheme of gray Publishing Introduction to gateway Official documents: https://docs.spring.io/spring-cloud-gateway/docs/2.2.8.RELEASE/reference/html/#gateway-starter Gateway request processing The client sends a request to the Spring Cloud Gateway. If the gateway handler mapping determines ...

Added by WakeAngel on Tue, 01 Feb 2022 07:16:58 +0200

Spring cloud gateway dynamic routing

View SringCloud Gateway Official documents , the working principle of Gateway is shown in the figure below:     Clients make requests to Spring Cloud Gateway. If the Gateway Handler Mapping determines that a request matches a route, it is sent to the Gateway Web Handler. This handler runs the request through a filter chain that is speci ...

Added by antonbrk on Sat, 29 Jan 2022 04:42:52 +0200

Spring cloudalibaba integrates Gateway dynamic routing and Nacos service

Official git: https://github.com/spring-cloud/spring-cloud-gateway Spring Cloud Gateway is used to replace zuul1 X as a gateway component in the microservice architecture, zuul1 X is the earliest gateway component. Due to the use of single thread blocking link, there is a performance problem. Gateway is a responsive gateway service built on the ...

Added by mrgrinch12 on Fri, 28 Jan 2022 05:47:22 +0200