We all know that a lot of ideas in the field of science and technology actually come from real life, such as the high-performance network communication models Reactor and Proactor that I’m going to share today. This ingenious design thinking is quite amazing. 1. Why should we study?A tall building starts from the ground. If you want to achieve something in technology, you must practice your inner strength. With the rapid development of the Internet, the speed of technological change is beyond imagination. Maybe the skills you have mastered with great effort will become outdated in a few years (such as JSP, sturts/sturts2), but some things are timeless, such as: architectural thinking, design thinking, mastering these essences can help you quickly adapt to technological changes. Reactor and Proactor are two classic high-performance models in network IO processing. Learning them can gain different understandings in network IO processing. The two models can be highly abstracted as the following figure: 2. Reactor Model1. DefinitionReactor, translated into Chinese as "reactor", is a passive process, which can be understood as "when receiving client events, Reactor will call the corresponding code to process according to the event type". The Reactor model is also called the Dispatcher mode. The bottom layer is I/O multiplexing combined with thread pool, which is mainly used for server-side processing of high-concurrency network IO requests. The core ideas of the Reactor model can be summarized into two "three types":
2. Events
The description of the event can be found in the figure below: 3. RolesThe above describes the events of Reactor. Each event needs to have a dedicated person in charge. In the Reactor model, this person in charge is the role, which is described as follows:
4. Reactor Thread ModelThere are three types of Reactor thread models: single-Reactor single-thread model, single-Reactor multi-thread model, and multi-Reactor multi-thread model. (1) Single Reactor Single Thread Model The single-Reactor single-thread model is easy to understand: accepting requests, business processing, and responding to requests are all handled in one thread. ① Model abstraction ② Working principle
③ Advantages and Disadvantages The advantages are simplicity and no thread competition. The disadvantages are that the performance of multi-core CPUs cannot be fully utilized and brought into play. When the business takes a long time, it is easy to cause blockage. ④ Case
(2) Single Reactor Multi-Thread Model Since the single-reactor single-thread mode cannot fully utilize and give full play to the performance of multi-core CPUs, the single-reactor multi-thread model was born. ① Model abstract diagram ② Working principle
③ Advantages A thread pool is used to process business logic, which can fully utilize the processing power of multiple CPUs. ④ Disadvantages
⑤ Case Netty4 can use a single Reactor multi-threaded model through parameter configuration; (3) Multi-Reactor Multi-Thread Model The performance bottleneck of the single-reactor multi-threaded model lies in the processing power of a single reactor, so we naturally think: Can we add more reactors to improve performance? Thus, the multi-reactor multi-threaded model was born. ① Model abstract diagram ② Working principle
③ Advantages
④ Case
At this point, the analysis of the Reactor model is complete. It should be noted that the three thread models of Reactor described above can also be deployed in the form of processes, which may be somewhat different from threads in terms of logical processing. Next, we will analyze the Proactor model, which is very similar to the Reactor model. 3. Proactor Model1. DefinitionProactor, translated into Chinese as "proactor", at first glance, this translation is still quite confusing. I personally think that "proactor" is more in line with the original meaning of the Proactor model. Proactor can be understood as "when there are IO events such as connection, reading and writing, the operating system kernel actively notifies our program code after processing the event." 2. Model abstract diagram3. Working Principle
4. Advantages and Disadvantages
5. CaseNetty5 uses AIO, and its network communication model is Proactor. However, this version is no longer maintained. The main reason is that Linux's current support for asynchrony is not perfect, which has caused Netty5 to spend a lot of money. The performance is not only not improved compared to Netty4, but may even be reduced. IV. Conclusion(1) Reactor is a synchronous non-blocking network model, and Proactor is an asynchronous non-blocking network model; (2) Reactor is a perfect combination of I/O multiplexing and thread pool; (3) The Reactor model may seem profound, but it actually reflects many real-life examples, such as:
(4) Reactor thinking is also often used in daily development. The most common method is single-threaded processing. When the concurrency is large, thread pools are introduced to subdivide the business and use dedicated threads to handle specific tasks. This is similar to the evolution of the Reactor model. (5) Proactor mainly uses an asynchronous method to handle IO events (for example, when ordering takeout, you don’t need to pay attention to it after placing the order and paying, and you can just handle your own business. When the takeout is ready, the takeout guy will take the initiative to deliver the takeout to you). However, Linux currently does not support AIO very well, and Netty5, which uses this model, eventually died for this reason. |
>>: How does Netty solve the half-packet and sticky-packet problems?
I was thinking of writing about this topic by acc...
The text is reproduced from the official account:...
In 2019, the global market for SD-WAN grew by 70%...
I went for interviews throughout the summer and i...
There is a lot of discussion around the next gene...
At present, it is still a good choice to visit ov...
Network failure is the most common and difficult ...
On September 20, China Mobile held the 5G+ Innova...
VMISS recently launched a new VPS on the CMIN2 li...
RackNerd has launched the 2022 Black Friday promo...
With the popularity of Wi-Fi 6 and Wi-Fi 6E, a ne...
It's Chinese New Year! The Year of the Ox is ...
The GSM 2G network has been around for more than ...
In today's rapidly developing industrial envi...
It’s the age of digital business. Two-thirds of c...