IntroductionThere are many types of IO, from the initial Block IO, to nonblocking IO, to IO multiplexing and asynchronous IO, step by step to maximize the performance of IO. Today we will introduce how to use Tomcat Native to improve the efficiency of Tomcat IO. How to connect to TomcatConnectors are used in Tomcat to handle communication with external clients. Connector is mainly used to accept requests from external clients and transfer them to the processing engine for processing. There are two types of Connectors in Tomcat. One is the HTTP connector, and the other is the AJP connector. The HTTP connector should be well understood by everyone. It is also the default connector used by Tomcat. There is also a connector called AJP, which is mainly used to communicate with web servers. Because the AJP protocol is faster than HTTP, in addition to communicating with other web servers, AJP can also be used to build a Tomcat cluster. Both methods support 4 protocols, namely BIO, NIO, NIO2 and APR. #The following four Connector implementations all directly process Http requests from clients org.apache.coyote.http11.Http11Protocol: A connector that supports the HTTP/1.1 protocol. org.apache.coyote.http11.Http11NioProtocol: A connector that supports HTTP/1.1 protocol + New IO. org.apache.coyote.http11.Http11Nio2Protocol: A connector that supports HTTP/1.1 protocol + New IO2. org.apache.coyote.http11.Http11AprProtocol : A connector that uses APR (Apache portable runtime) technology, using Native #The following four implementation methods are to deal with the web server org.apache.coyote.ajp.AjpProtocol: Use the AJP protocol connector to achieve communication with the web server (such as Apache httpd) org.apache.coyote.ajp.AjpNioProtocol: SJP protocol + New IO org.apache.coyote.ajp.AjpNio2Protocol: SJP protocol + New IO2 org.apache.coyote.ajp.AjpAprProtocol: AJP + APR Let's talk about their differences. BIO is block IO, which is the most basic IO method. We configure it like this: <Connector port="8080" protocol="HTTP/1.1" maxThreads="150" connectionTimeout="20000" redirectPort=”8443” /> Tomcat versions below 7 run in bio mode by default. Since Tomcat 8.5, Tomcat has removed support for BIO. New IO is an IO method based on the java.nio package and its subpackages. It can provide non-blocking IO mode and has more efficient operation efficiency than traditional BIO. We configure New IO like this: <Connector port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol" connectionTimeout="20000" redirectPort="8443" /> What is the difference between New IO and New IO2? New IO2 is the IO method introduced in tomcat8. We can configure it like this: <Connector port="8080" protocol="org.apache.coyote.http11.Http11Nio2Protocol" connectionTimeout="20000" redirectPort="8443" /> The apr method is advanced, and this is the main function of tomcat native that we are going to explain today. APR and Tomcat NativeThe full name of apr is Apache Portable Runtime, which is a highly portable library and the core of Apache HTTP Server 2.x. APR has many uses, including access to high-level IO functionality (such as sendfile, epoll, and OpenSSL), OS-level functionality (generating random numbers, system status, etc.), and native process handling (shared memory, NT pipes, and Unix sockets). Tomcat can call the core dynamic link library of the Apache HTTP server in the form of JNI to handle file reading or network transmission operations, thereby greatly improving Tomcat's processing performance for static files. By using APR we can get the following features:
Tomcat Native is a library that allows Tomcat to use APR. Therefore, the prerequisite for using Tomcat Native is to install APR library, OpenSSL and JDK. We can install apr and openssl in the following way: Debian based Linux system: apt-get install libapr1.0-dev libssl-dev rpm based Linux systems: yum install apr-devel openssl-devel Under Windows, tcnative is provided in the form of a dll, and we can directly download and use it. However, under Linux, due to the different platforms, tcnative needs to be compiled by itself under Linux. Generally speaking, we can find the source package of tcnative in bin/tomcat-native.tar.gz. Unzip it. Run the configure command first: ./configure --with-apr=/usr/bin/apr-1-config \ --with-java-home=/home/jfclere/JAVA/jdk1.7.0_80/ \ --with-ssl=yes \ --prefix=$CATALINA_HOME Then perform the make operation: make && make install The generated lib files will be placed in $CATALINA_HOME/lib. Using APR in tomcatAfter installing tcnative, we can use APR in tomcat. First check whether there is the following configuration in conf/server.xml: <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /> Then we need to modify $CATALINA_HOME/bin/setenv.sh to add the tc-native lib file to LD_LIBRARY_PATH. LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CATALINA_HOME/lib export LD_LIBRARY_PATH Finally, add the APR connection: <Connector port="8080" protocol="org.apache.coyote.http11.Http11AprProtocol" connectionTimeout="20000" redirectPort="8443" /> Just run it. From the log, we can find the following:
This indicates that APR has been installed and is being used. This is the end of this article about how to use Tomcat Native to improve Tomcat IO efficiency. For more information about how to use Tomcat Native to improve Tomcat IO efficiency, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of replication configuration example between mysql containers
>>: What are the rules for context in JavaScript functions?
Table of contents 1. Eclipse configures Tomcat 2....
Preface Now the operating system used by my compa...
1. Introduction (1) Introduction to vw/vh Before ...
Overview I believe we often encounter such scenar...
1. Block-level element: refers to the ability to e...
Recently, a friend asked me a question: When layo...
Preface During the stress test, if the most direc...
The happiest thing that happens in a production e...
Nowadays, application development is basically se...
The following command is often used: chmod 777 文件...
The mysql service is started, but the connection ...
1.1 Data Type Overview The data type is a field c...
When the created tab label exceeds the visible ar...
This article describes how to install the PHP cur...
The query data in the xml price inquiry contains ...