测来测去25:Async_Mod_Nginx QATzip提升小文件压缩QPS

一般我们会利用Async_mode_nginx配合QAT卸载HTTPS流量,但也有一些用户希望能够仅使用QAT提供的HTTP压缩能力,主要是为了减少公网带宽的占用。这个功能可以利用Async_mode_nginx结合QATzip来完成。

但基于QAT硬件条件的考虑,对小文件的压缩支持不如对大文件的好,特别是当文件大小小于10KB的时候,使用了QAT硬件压缩的QPS会低于使用软件(gzip)压缩的QPS。这个时候可以打开Async_mode_nginx的配置文件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
worker_processes  1;

load_module modules/ngx_http_qatzip_filter_module.so;
load_module modules/ngx_ssl_engine_qat_module.so;

events {
use epoll;
worker_connections 102400;
accept_mutex off;
}

# Enable QAT engine in heretic mode.
ssl_engine {
use_engine qatengine;
default_algorithms RSA,EC,DH,DSA;
qat_engine {
qat_offload_mode async;
qat_notify_mode poll;
qat_poll_mode heuristic;
qat_sw_fallback on;
}
}

http {
gzip on;
gzip_min_length 128;
gzip_comp_level 1;
gzip_types text/css text/javascript text/xml text/plain text/x-component application/javascript application/json application/xml application/rss+xml font/truetype font/opentype application/vnd.ms-fontobject image/svg+xml;
gzip_vary on;
gzip_disable "msie6";
gzip_http_version 1.0;

qatzip_sw failover;
qatzip_min_length 128;
qatzip_comp_level 1;
qatzip_buffers 16 8k;
qatzip_types text/css text/javascript text/xml text/plain text/x-component application/javascript application/json application/xml application/rss+xml font/truetype font/opentype application/vnd.ms-fontobject image/svg+xml application/octet-stream image/jpeg;
qatzip_chunk_size 64k;
qatzip_stream_size 256k;
qatzip_sw_threshold 256;

# HTTP server with QATZip enabled.
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
}

# HTTPS server with async mode.
server {
#If QAT Engine enabled, `asynch` need to add to `listen` directive or just add `ssl_asynch on;` to the context.
listen 443 ssl asynch;
server_name localhost;

ssl_protocols TLSv1.2;
ssl_certificate cert.pem;
ssl_certificate_key cert.key;

location / {
root html;
index index.html index.htm;
}
}
}

这里面当然所有和SSL相关的内容应该都注释掉了,在http那一栏里找到qatzip_stream_size这一项,把它的值设为10K,这样可以显著提高小文件的QPS。

另外建议在高并发,以及大Nginx worker process的情况下测试,对比会更加明显。

最后吐槽一下竟然我都没找到关于qatzip_*那几个参数的官方说明….

© 2020 DecodeZ All Rights Reserved. 本站访客数人次 本站总访问量
Theme by hiero