Today I want to talk to you about the topic of gateway selection. Why did I finally choose OpenResty?
Image from Baotu.com Internet companies, regardless of their size, have similar internal technology architectures, as reflected in the following aspects:
Although small, it has all the necessary functions. The gateway we are going to talk about today is a key part of it. Regardless of the size of the company, it basically has this system. So what is the gateway used for? What is a GatewayThe gateway is the intermediate bridge connecting the client and the server. It extracts a lot of common, non-business logic and pre-positions it to the gateway system, reducing a lot of repetitive development work. It is the only traffic entrance for the entire website. In order to improve the scalability of the system, the gateway usually adopts a component-based architecture with high cohesion and low coupling. Common component functions:
The system design generally adopts the responsibility chain design pattern, defines the abstract interface, and each component implements its own exclusive functions with a single responsibility. And according to different business request APIs, some nodes are added or deleted, and new node chains are dynamically built to meet diverse business needs. Gateway SelectionThe most common gateways are as follows:
The information of each framework is basically available on the Internet. Considering the space limitation, the advantages and disadvantages of each framework will not be analyzed here. We plan to choose OpenResty for the following reasons:
Flip OpenRestyThe following figure is the latest statistics of Netcraft's Web server rankings in October 2021: Netcraft is an Internet service company headquartered in Bath, UK, founded in 1995. The company's official website publishes monthly survey data reports: Web Server Survey series, which has become a way for people to understand the server market share of global websites. OpenResty is now ranked third in the world and is gaining momentum due to its expansion of Nginx into a dynamic server. The ticket query function of 12306 and the product details page of JD.com, which we often use, are all provided by OpenResty. OpenResty is best at being deployed at the traffic entrance and handling various high-concurrency traffic. Next, let's take a closer look at this framework. The origin of OpenRestyNginx adopts a master-worker process model with clear division of labor and single responsibility, which is also one of the reasons for its high performance. ①Master processManagement process, processing instructions such as: -s reload, -s stop, through inter-process communication, send management instructions to the worker process, thereby achieving control over the worker process. ②Worker processWorker processes continuously receive client connection requests and process them. The number is usually set to the same as the number of CPU cores. Nginx also binds each process to each CPU to make full use of its multi-core features. Multiple worker processes will compete for a shared lock, and only the process that grabs the lock can process the client's request. If the request is an accept event, it is added to the accept queue; if it is a read or write event, it is added to the read-write queue. Some people may ask, why is OpenResty based on the Nginx framework?
The main reason is the high concurrency capability of Nginx. Reverse proxy servers usually have large traffic volumes and do not involve complex calculations themselves. They are I/O intensive services. Nginx uses event-driven based on the epoll mechanism, which is asynchronous and non-blocking, greatly improving the concurrent processing capability. However, Nginx is developed in C language, and the threshold for secondary development is relatively high. It is widely used in the market, mostly based on the reserved configuration parameters of nginx.conf, such as reverse proxy, load balancing, static web server, etc. If you want Nginx to access MySQL and customize the development of some business logic, it is very difficult. OpenResty combines Nginx and Lua scripts through grafting, which not only retains the high concurrency advantage of Nginx, but also has the development efficiency of scripting language, and greatly reduces the development threshold. Lua is the fastest, dynamic scripting language, running at a speed close to that of C. LuaJIT precompiles and caches some commonly used Lua functions and tool libraries, and directly uses the cached bytecode the next time it is called, which is very fast. In addition, Lua supports coroutines, which is very important. Coroutines are user-mode operations, and context switching does not involve kernel mode, so system resource overhead is small; in addition, coroutines occupy very little memory, initially 2KB. OpenResty Core ArchitectureOpenResty is a web platform based on Nginx, which embeds LuaJIT virtual machine to run Lua scripts. Lua programming language is used to script Nginx core and various Nginx C modules. As shown above:
Note: Data isolation between different Lua coroutines ensures that different client requests will not affect each other. In addition, only one coroutine can be running at the same time in a worker. cosocket combines two important features: Lua coroutine + Nginx event notification. cosocket is the most valuable part of OpenResty in terms of technology and practicality. It allows us to do network programming at a very low cost and in an elegant way, which is several times more efficient than traditional socket programming. It is excellent in terms of resource usage, execution efficiency, and concurrency. To facilitate development, OpenResty divides an HTTP request into 11 stages, each with its own dedicated responsibilities. Function description:
OpenResty provides a large number of Lua API interfaces for operating Nginx. As long as you are familiar with Lua syntax and have a clear understanding of the operation process of Nginx, you can easily do secondary development on Nginx. Whether it is used as an application gateway or a high-performance web application, it supports connecting to a variety of rich backend storage, such as MySQL, Redis, Memcache, PostgreSQL, etc., and the surrounding ecology is very rich.
Note: OpenResty's API has a limited usage range. Each API has a corresponding usage stage list. If you use it beyond the range, an error will be reported. ①Deployment and installationThis article takes the CentOS system as an example. Add the openresty repository so that we can install or update our packages later using the yum update command:
Install the software:
Install the command line tool resty:
②Project PracticeModify the nginx.conf configuration file:
nginx.conf is divided into three layers of nesting:
Add environment variables:
Start openresty. The startup command is the same as nginx:
To access the Web service:
If everything is normal, the browser page will output Hello Openresty! If the nginx.conf configuration items are modified, we can restart:
Author: Tom Editor: Tao Jialong Source: Reprinted from the official account Micro Technology (ID: weiguanjishu) |
RTMP and RTSP are two common streaming protocols....
When it comes to hardware and IT infrastructure, ...
A few years ago, not many people had heard of the...
[51CTO.com original article] On December 1st and ...
In recent years, intent-based networking (IBN) ha...
Shuhost Technology has launched a year-end promot...
2020 is coming to an end. With the advancement of...
Sharktech, also known as SK Data Center, is a lon...
According to forecasts, the number of 5G subscrib...
The tribe once shared information about QuantumCo...
With the exhaustion of IPv4 address resources and...
China Mobile and China Telecom announced that the...
Nowadays, many IT professionals are committed to ...
When searching for hot words in 2020, it can be s...
In 2019, we thought 5G was a distant thing, but i...