Fix the problem that WebClient calls cannot be tracked through Skywalking in the Spring Cloud Gateway project
Solve the problem that WebClient calls cannot be tracked in the Spring Cloud Gateway projectProblem descriptionSkywalking brings non intrusive distributed link collection to java applications through java agent. In the microservice architecture, as a business Gateway, Spring Cloud Gateway generally needs to customize the Filter and call other ...
Added by Maknis on Sat, 05 Mar 2022 11:40:11 +0200
This article discusses the operation architecture of Netty core engine Reactor
This series of Netty source code analysis articles is based on 4.1.56 Final version
In this paper, the author will introduce the operation architecture of Netty's core engine Reactor. I hope that through this introduction, we can have a comprehensive understanding of how Reactor drives the operation of the whole Netty framework. It also pa ...
Added by aiikcmo on Sat, 29 Jan 2022 08:21:29 +0200
Analysis of Reactor network programming model
preface
Reactor design pattern is a common pattern for processing concurrent I/O. it sends client requests to different processors to improve the efficiency of event processing. In the most common application scenario, java NIO, users process network requests using asynchronous non blocking IO. Including the netty framework, the model is used. ...
Added by OopyBoo on Mon, 27 Sep 2021 08:13:46 +0300