Haproxy的负载均衡、动静分离、状态监控、近期网络架构

本文涉及的产品
传统型负载均衡 CLB,每月750个小时 15LCU
应用型负载均衡 ALB,每月750个小时 15LCU
日志服务 SLS,月写入数据量 50GB 1个月
简介:

一、Haproxy的简介

    Haproxy的官网站点:http://haproxy.com/

    HAProxy提供高可用性、负载均衡以及基于TCP和HTTP应用的代 理,支持虚拟主机,它是免费、快速并且可靠的一种解决方案。HAProxy特别适用于那些负载特大的web站点,这些站点通常又需要会话保持或七层处理。HAProxy运行在当前的硬件上,完全可以支持数以万计的并发连接。并且它的运行模式使得它可以很简单安全的整合进您当前的架构中, 同时可以保护你的web服务器不被暴露到网络上。

     HAProxy实现了一种事件驱动, 单一进程模型,此模型支持非常大的并发连接数。多进程或多线程模型受内存限制 、系统调度器限制以及无处不在的锁限制,很少能处理数千并发连接。事件驱动模型因为在有更好的资源和时间管理的用户端(User-Space) 实现所有这些任务,所以没有这些问题。此模型的弊端是,在多核系统上,这些程序通常扩展性较差。这就是为什么他们必须进行优化以 使每个CPU时间片(Cycle)做更多的工作。

二、Haproxy的工作模式

wKioL1Np5h_i9MFbAADhowCMXv8632.jpg

大致的意思就是:可以分为两部分,

第一部分是互联网,包括互联网上众多的路由设备、Firewall等;

第二部分是本地的网络架构,包括Firewall,proxy、Web server,Database等

Haproxy的注释Local balanceer in proxy mode -- 工作在代理模下是一个负载均衡的功能

通过Haproxy代理后端的Web server群集,如果需要与数据库交互,有Web server与Database建立连接。

三、Haproxy的安装和配置说明

CentOS 6.5系统中yum源提供的Haproxy的版本为1.5.18,在这里我们直接用yum安装

1、安装haproxy

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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
yum  install  haproxy -y
rpm -ql haproxy                     #可以查看yum安装Haproxy生成了哪些文件
/etc/haproxy
/etc/haproxy/haproxy .cfg             #haproxy的配置文件
/etc/logrotate .d /haproxy
/etc/rc .d /init .d /haproxy             #haproxy的服务脚本文件
/etc/sysconfig/haproxy
/usr/bin/halog
/usr/bin/iprange
/usr/sbin/haproxy
/usr/share/doc/haproxy-1 .5.18
/usr/share/doc/haproxy-1 .5.18 /CHANGELOG
/usr/share/doc/haproxy-1 .5.18 /LICENSE
/usr/share/doc/haproxy-1 .5.18 /README
/usr/share/doc/haproxy-1 .5.18 /acl-content-sw .cfg
/usr/share/doc/haproxy-1 .5.18 /acl .fig
/usr/share/doc/haproxy-1 .5.18 /architecture .txt
/usr/share/doc/haproxy-1 .5.18 /close-options .txt
/usr/share/doc/haproxy-1 .5.18 /coding-style .txt
/usr/share/doc/haproxy-1 .5.18 /configuration .txt
/usr/share/doc/haproxy-1 .5.18 /content-sw-sample .cfg
/usr/share/doc/haproxy-1 .5.18 /cookie-options .txt
/usr/share/doc/haproxy-1 .5.18 /cttproxy-src .cfg
/usr/share/doc/haproxy-1 .5.18 /design-thoughts
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/backends-v0 .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/backends .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/be-fe-changes .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/binding-possibilities .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/buffer-redesign .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/buffers .fig
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/config-language .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/connection-reuse .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/cttproxy-changes .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/entities-v2 .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/how-it-works .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/http_load_time .url
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/rate-shaping .txt
/usr/share/doc/haproxy-1 .5.18 /design-thoughts/sess_par_sec .txt
/usr/share/doc/haproxy-1 .5.18 /gpl .txt
/usr/share/doc/haproxy-1 .5.18 /haproxy-en .txt
/usr/share/doc/haproxy-1 .5.18 /haproxy-fr .txt
/usr/share/doc/haproxy-1 .5.18 /haproxy .1
/usr/share/doc/haproxy-1 .5.18 /haproxy .cfg
/usr/share/doc/haproxy-1 .5.18 /internals
/usr/share/doc/haproxy-1 .5.18 /internals/acl .txt
/usr/share/doc/haproxy-1 .5.18 /internals/body-parsing .txt
/usr/share/doc/haproxy-1 .5.18 /internals/buffer-operations .txt
/usr/share/doc/haproxy-1 .5.18 /internals/buffer-ops .fig
/usr/share/doc/haproxy-1 .5.18 /internals/connect-status .txt
/usr/share/doc/haproxy-1 .5.18 /internals/connection-header .txt
/usr/share/doc/haproxy-1 .5.18 /internals/connection-scale .txt
/usr/share/doc/haproxy-1 .5.18 /internals/entities .fig
/usr/share/doc/haproxy-1 .5.18 /internals/entities .pdf
/usr/share/doc/haproxy-1 .5.18 /internals/entities .svg
/usr/share/doc/haproxy-1 .5.18 /internals/entities .txt
/usr/share/doc/haproxy-1 .5.18 /internals/hashing .txt
/usr/share/doc/haproxy-1 .5.18 /internals/header-parser-speed .txt
/usr/share/doc/haproxy-1 .5.18 /internals/header-tree .txt
/usr/share/doc/haproxy-1 .5.18 /internals/http-cookies .txt
/usr/share/doc/haproxy-1 .5.18 /internals/http-docs .txt
/usr/share/doc/haproxy-1 .5.18 /internals/http-parsing .txt
/usr/share/doc/haproxy-1 .5.18 /internals/naming .txt
/usr/share/doc/haproxy-1 .5.18 /internals/pattern .dia
/usr/share/doc/haproxy-1 .5.18 /internals/pattern .pdf
/usr/share/doc/haproxy-1 .5.18 /internals/polling-states .fig
/usr/share/doc/haproxy-1 .5.18 /internals/repartition-be-fe-fi .txt
/usr/share/doc/haproxy-1 .5.18 /internals/sequence .fig
/usr/share/doc/haproxy-1 .5.18 /internals/stats-v2 .txt
/usr/share/doc/haproxy-1 .5.18 /internals/stream-sock-states .fig
/usr/share/doc/haproxy-1 .5.18 /internals/todo .cttproxy
/usr/share/doc/haproxy-1 .5.18 /lgpl .txt
/usr/share/doc/haproxy-1 .5.18 /proxy-protocol .txt
/usr/share/doc/haproxy-1 .5.18 /queuing .fig
/usr/share/doc/haproxy-1 .5.18 /tarpit .cfg
/usr/share/doc/haproxy-1 .5.18 /url-switching .cfg
/usr/share/haproxy
/usr/share/haproxy/400 .http          #400错误的状态码页面
/usr/share/haproxy/403 .http          #403错误的状态码页面
/usr/share/haproxy/408 .http          #408错误的状态码页面
/usr/share/haproxy/500 .http          #500错误的状态码页面
/usr/share/haproxy/502 .http          #502错误的状态码页面
/usr/share/haproxy/503 .http          #503错误的状态码页面
/usr/share/haproxy/504 .http          #504错误的状态码页面
/usr/share/haproxy/README
/usr/share/man/man1/halog .1.gz       #可以直接使用man halog查看命令的使用语法
/usr/share/man/man1/haproxy .1.gz     #可以直接使用man haproxy查看命令的使用语法
/var/lib/haproxy

2、haproxy的配置文件说明

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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# cd /etc/haproxy/
# cp haproxy.cfg haproxy.cfg.bak
# vim haproxy.cfg
**********************************************************************
#---------------------------------------------------------------------
# Example configuration for a possible web application.  See the
# full configuration options online.
#
#   http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
#
#---------------------------------------------------------------------
  
#---------------------------------------------------------------------
# Global settings    
#---------------------------------------------------------------------
global     #全局配置文件
     # to have these messages end up in /var/log/haproxy.log you will
     # need to:     #配置日志
     #
     # 1) configure syslog to accept network log events.  This is done
     #    by adding the '-r' option to the SYSLOGD_OPTIONS in
     #    /etc/sysconfig/syslog    #修改syslog配置文件
     #
     # 2) configure local2 events to go to the /var/log/haproxy.log
     #   file. A line like the following can be added to
     #   /etc/sysconfig/syslog    #定义日志设备
     #
     #    local2.*                       /var/log/haproxy.log
     #
     log         127.0.0.1 local2         #日志配置,所有的日志都记录本地,通过local2输出
  
     chroot       /var/lib/haproxy         #改变haproxy的工作目录
     pidfile      /var/run/haproxy .pid     #指定pid文件的路径
     maxconn     4000                     #最大连接数的设定
     user        haproxy                  #指定运行服务的用户
     group       haproxy                  #指定运行服务的用户组
     daemon
  
     # turn on stats unix socket
     stats socket  /var/lib/haproxy/stats
  
#---------------------------------------------------------------------
# common defaults that all the 'listen' and 'backend' sections will
# use if not designated in their block
#---------------------------------------------------------------------
defaults
      
     mode                    http                   #默认使用协议,可以为{http|tcp|health} http:是七层协议 tcp:是四层 health:只返回OK
     log                     global                 #全局日志记录
     option                  httplog                #详细记录http日志
     option                  dontlognull            #不记录空日志
     option http-server-close                       #启用http-server-close
     option forwardfor       except 127.0.0.0 /8     #来自这些信息的都不forwardfor
     option                  redispatch             #重新分发,ServerID对应的服务器宕机后,强制定向到其他运行正常的服务器
     retries                 3                       #3次连接失败则认为服务不可用
     timeout http-request    10s                     #默认http请求超时时间
     timeout queue           1m                      #默认队列超时时间
     timeout connect         10s                     #默认连接超时时间
     timeout client          1m                      #默认客户端超时时间
     timeout server          1m                      #默认服务器超时时间
     timeout http-keep-alive 10s                     #默认持久连接超时时间
     timeout check           10s                     #默认检查时间间隔
     maxconn                 3000                    #最大连接数
  
#---------------------------------------------------------------------
# main frontend which proxys to the backends
#---------------------------------------------------------------------
frontend  main *:5000
     #定义ACL规则以如".html"结尾的文件;-i:忽略大小写
     acl url_static       path_beg       -i  /static  /images  /javascript  /stylesheets
     acl url_static       path_end       -i .jpg .gif .png .css .js
  
     use_backend static           if  url_static     #调用后端服务器并检查ACL规则是否被匹配
     default_backend             app               #客户端访问时默认调用后端服务器地址池
  
#---------------------------------------------------------------------
# static backend for serving up images, stylesheets and such
#---------------------------------------------------------------------
backend static                     #定义后端服务器
     balance     roundrobin         #定义算法;基于权重进行轮询
     server      static 127.0.0.1:4331 check    check:启动对后端server的健康状态检测
  
#---------------------------------------------------------------------
# round robin balancing between the various backends
#---------------------------------------------------------------------
backend app
     balance     roundrobin
     server  app1 127.0.0.1:5001 check
     server  app2 127.0.0.1:5002 check
     server  app3 127.0.0.1:5003 check
     server  app4 127.0.0.1:5004 check

3、haproxy的命令详解

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# haproxy -h
HA-Proxy version 1.5.18 2016 /05/10
Copyright 2000-2016 Willy Tarreau <willy@haproxy.org>
 
Usage : haproxy [-f <cfgfile>]* [ -vdVD ] [ -n <maxconn> ] [ -N <maxpconn> ]
         [ -p <pidfile> ] [ -m <max megs> ] [ -C < dir > ]
         - v  displays version ; -vv shows known build options.
         -d enters debug mode ; -db only disables background mode.
         -dM[<byte>] poisons memory with <byte> (defaults to 0x50)
         -V enters verbose mode (disables quiet mode)
         -D goes daemon ; -C changes to < dir > before loading files.
         -q quiet mode : don't display messages
         -c check mode : only check config files and  exit
         -n sets the maximum total  # of connections (2000)
         -m limits the usable amount of memory ( in  MB)
         -N sets the default, per-proxy maximum  # of connections (2000)
         -L  set  local  peer name (default to  hostname )
         -p writes pids of all children to this  file
         -de disables epoll() usage even when available
         -dp disables poll() usage even when available
         -dS disables splice usage (broken on old kernels)
         -dV disables SSL verify on servers side
         -sf /-st  [pid ]* finishes /terminates  old pids. Must be last arguments.

4、配置Haproxy的日志

1
2
3
4
5
6
7
8
9
10
11
12
13
默认情况下,Haproxy没有启用日志文件,但是我们可以根据haproxy的配置文件做修改。
(1)修改系统日志的配置文件
# vim /etc/sysconfig/rsyslog
SYSLOGD_OPTIONS= "-c 2 -r"
(2)增加日志设备
# vim /etc/rsyslog.conf 
local2.*                                                 /var/log/haproxy .log
(3)重启一下日志服务
# /etc/init.d/rsyslog restart
关闭系统日志记录器:                                       [确定]
启动系统日志记录器:                                       [确定]
(4)查看日志记录信息
# tail -f /var/log/haproxy.log

四、Haproxy负载均衡web

1、一个配置示例:

Haproxy-Server:10.10.172.195

Apache1-Client:10.10.172.196

Apache2-Client:10.10.172.197

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
68
69
70
71
72
73
74
75
76
77
78
79
**********************************************************************
#---------------------------------------------------------------------
# Global settings
#---------------------------------------------------------------------
global
     # to have these messages end up in /var/log/haproxy.log you will
     # need to:
     #
     # 1) configure syslog to accept network log events.  This is done
     #    by adding the '-r' option to the SYSLOGD_OPTIONS in
     #    /etc/sysconfig/syslog
     #
     # 2) configure local2 events to go to the /var/log/haproxy.log
     #   file. A line like the following can be added to
     #   /etc/sysconfig/syslog
     #
     #    local2.*                       /var/log/haproxy.log
     #
     log         127.0.0.1 local2
  
     chroot       /var/lib/haproxy
     pidfile      /var/run/haproxy .pid
     maxconn     4000
     user        haproxy
     group       haproxy
     daemon
  
defaults
     mode                    http
     log                     global
     option                  httplog
     option                  dontlognull
     option http-server-close
     option forwardfor       except 127.0.0.0 /8
     option                  redispatch
     retries                 3
     timeout http-request    10s
     timeout queue           1m
     timeout connect         10s
     timeout client          1m
     timeout server          1m
     timeout http-keep-alive 10s
     timeout check           10s
     maxconn                 30000
  
listen stats
     mode http
     bind 0.0.0.0:8080
     stats  enable
     stats hide-version
     stats uri      /haproxyadmin ?stats
     stats realm   Haproxy\ Statistics
     stats auth    admin:123456
     stats admin  if  TRUE
  
  
frontend http- in
     bind *:80
     mode http
     log global
     option httpclose
     option logasap
     option dontlognull
     capture request  header Host len 20
     capture request  header Referer len 60
     default_backend servers
  
frontend healthcheck
     bind :1099
     mode http
     option httpclose
     option forwardfor
     default_backend servers
  
backend servers
     balance roundrobin
     server websrv1 10.10.172.196:80 check maxconn 2000
     server websrv2 10.10.172.197:80 check maxconn 2000
**********************************************************************

2、启动Haproxy服务

1
2
3
# service haproxy start
Starting haproxy: [  OK  ]
# chkconfig haproxy on

3、浏览器访问

单独访问Apache1:10.10.172.196

2017-12-13_153947.png

单独访问Apache2:10.10.172.197

2017-12-13_154141.png


多次刷新访问Haproxy:10.10.172.195

多次刷新Haproxy的website,会切换到后端不同的webserver主机上。

2017-12-13_154141.png

2017-12-13_154240.png

五、Haproxy的状态监控

1、Haproxy的监控页面

1
2
3
4
5
6
7
8
9
10
listen stats                             #关联前端和后端定义一个完整的代理
     mode http                            #设置代理协议
     bind 0.0.0.0:8080                    #绑定相应的端口
     stats  enable                         #开启Haproxy统计状态
     stats refresh 3s              #统计页面自动刷新时间间隔
     stats hide-version                   #隐藏代理服务器版本
     stats uri      /haproxyadmin ?stats    #访问的url
     stats realm   Haproxy\ Statistics    #统计页面认证时提示内容信息
     stats auth    admin:123456           #设置登录用户和密码     
     stats admin  if  TRUE                  #如果认证通过,则就可以打开stats

2、访问监控页面

(1)登陆监控页面

admin/123456

2017-12-13_154619.png

(2)查看监控页面

2017-12-13_154921.png

(3)模拟一下故障

1
2
# service httpd stop
Stopping httpd: [  OK  ]

(4)在次查看监控页面

2017-12-13_155301.png

六、Haproxy的动静分离

haproxy动静分离的配置

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
68
69
70
71
72
73
74
75
76
77
#---------------------------------------------------------------------
# Global settings
#---------------------------------------------------------------------
global
     # to have these messages end up in /var/log/haproxy.log you will
     # need to:
     #
     # 1) configure syslog to accept network log events.  This is done
     #    by adding the '-r' option to the SYSLOGD_OPTIONS in
     #    /etc/sysconfig/syslog
     #
     # 2) configure local2 events to go to the /var/log/haproxy.log
     #   file. A line like the following can be added to
     #   /etc/sysconfig/syslog
     #
     #    local2.*                       /var/log/haproxy.log
     #
     log         127.0.0.1 local2
  
     chroot       /var/lib/haproxy
     pidfile      /var/run/haproxy .pid
     maxconn     4000
     user        haproxy
     group       haproxy
     daemon
  
defaults
     mode                    http
     log                     global
     option                  httplog
     option                  dontlognull
     option http-server-close
     option forwardfor       except 127.0.0.0 /8
     option                  redispatch
     retries                 3
     timeout http-request    10s
     timeout queue           1m
     timeout connect         10s
     timeout client          1m
     timeout server          1m
     timeout http-keep-alive 10s
     timeout check           10s
     maxconn                 30000
  
listen stats
     mode http
     bind 0.0.0.0:1080
     stats  enable
     stats hide-version
     stats uri      /haproxyadmin ?stats
     stats realm   Haproxy\ Statistics
     stats auth    admin:123456
     stats admin  if  TRUE
  
  
frontend http- in
     bind *:80
     mode http
     log global
     option httpclose
     option logasap
     option dontlognull
     capture request  header Host len 20
     capture request  header Referer len 60
     acl url_static  path_end -i .html .jpg .gif
     acl url_dynamic path_end -i .php
     default_backend servers
     use_backend lnmmp  if  url_dynamic
  
backend servers
     balance roundrobin
     server websrv1 10.10.172.196:80 check rise 2 fall 1 weight 2 maxconn 2000
     server websrv2 10.10.172.197:80 check rise 2 fall 1 weight 2 maxconn 2000
  
backend lnmmp
     balance  source
     server websrv3 10.10.172.198:80 check rise 2 fall 1 maxconn 2000

动静分离实现的需求:

  访问index.html页面,由Apache1,、Apache2轮询显示;访问index.php页面,有LNMP或者LAMP服务器显示,




本文转自 dengaosky 51CTO博客,原文链接:http://blog.51cto.com/dengaosky/2050231,如需转载请自行联系原作者

相关实践学习
每个IT人都想学的“Web应用上云经典架构”实战
本实验从Web应用上云这个最基本的、最普遍的需求出发,帮助IT从业者们通过“阿里云Web应用上云解决方案”,了解一个企业级Web应用上云的常见架构,了解如何构建一个高可用、可扩展的企业级应用架构。
相关文章
|
3月前
|
存储 数据挖掘 BI
2-5 倍性能提升,30% 成本降低,阿里云 SelectDB 存算分离架构助力波司登集团实现降本增效
波司登集团升级大数据架构,采用阿里云数据库 SelectDB 版,实现资源隔离与弹性扩缩容,查询性能提升 2-5 倍,总体成本降低 30% 以上,效率提升 30%,助力销售旺季高效运营。
301 9
|
1月前
|
存储 SQL 消息中间件
从 ClickHouse 到 StarRocks 存算分离: 携程 UBT 架构升级实践
查询性能实现从秒级到毫秒级的跨越式提升
|
6月前
|
负载均衡 算法 关系型数据库
大数据大厂之MySQL数据库课程设计:揭秘MySQL集群架构负载均衡核心算法:从理论到Java代码实战,让你的数据库性能飙升!
本文聚焦 MySQL 集群架构中的负载均衡算法,阐述其重要性。详细介绍轮询、加权轮询、最少连接、加权最少连接、随机、源地址哈希等常用算法,分析各自优缺点及适用场景。并提供 Java 语言代码实现示例,助力直观理解。文章结构清晰,语言通俗易懂,对理解和应用负载均衡算法具有实用价值和参考价值。
大数据大厂之MySQL数据库课程设计:揭秘MySQL集群架构负载均衡核心算法:从理论到Java代码实战,让你的数据库性能飙升!
|
1月前
|
存储 机器学习/深度学习 监控
网络管理监控软件的 C# 区间树性能阈值查询算法
针对网络管理监控软件的高效区间查询需求,本文提出基于区间树的优化方案。传统线性遍历效率低,10万条数据查询超800ms,难以满足实时性要求。区间树以平衡二叉搜索树结构,结合节点最大值剪枝策略,将查询复杂度从O(N)降至O(logN+K),显著提升性能。通过C#实现,支持按指标类型分组建树、增量插入与多维度联合查询,在10万记录下查询耗时仅约2.8ms,内存占用降低35%。测试表明,该方案有效解决高负载场景下的响应延迟问题,助力管理员快速定位异常设备,提升运维效率与系统稳定性。
184 4
|
8月前
|
运维 监控 算法
解读 C++ 助力的局域网监控电脑网络连接算法
本文探讨了使用C++语言实现局域网监控电脑中网络连接监控的算法。通过将局域网的拓扑结构建模为图(Graph)数据结构,每台电脑作为顶点,网络连接作为边,可高效管理与监控动态变化的网络连接。文章展示了基于深度优先搜索(DFS)的连通性检测算法,用于判断两节点间是否存在路径,助力故障排查与流量优化。C++的高效性能结合图算法,为保障网络秩序与信息安全提供了坚实基础,未来可进一步优化以应对无线网络等新挑战。
|
2月前
|
传感器 数据采集 存储
【无线传感器】使用 MATLAB和 XBee连续监控温度传感器无线网络研究(Matlab代码实现)
【无线传感器】使用 MATLAB和 XBee连续监控温度传感器无线网络研究(Matlab代码实现)
|
7月前
|
存储 运维 Serverless
千万级数据秒级响应!碧桂园基于 EMR Serverless StarRocks 升级存算分离架构实践
碧桂园服务通过引入 EMR Serverless StarRocks 存算分离架构,解决了海量数据处理中的资源利用率低、并发能力不足等问题,显著降低了硬件和运维成本。实时查询性能提升8倍,查询出错率减少30倍,集群数据 SLA 达99.99%。此次技术升级不仅优化了用户体验,还结合AI打造了“一看”和“—问”智能场景助力精准决策与风险预测。
700 69
|
4月前
|
监控 算法 安全
基于 C# 基数树算法的网络屏幕监控敏感词检测技术研究
随着数字化办公和网络交互迅猛发展,网络屏幕监控成为信息安全的关键。基数树(Trie Tree)凭借高效的字符串处理能力,在敏感词检测中表现出色。结合C#语言,可构建高时效、高准确率的敏感词识别模块,提升网络安全防护能力。
133 2
|
7月前
|
弹性计算 负载均衡 网络协议
阿里云SLB深度解析:从流量分发到架构优化的技术实践
本文深入探讨了阿里云负载均衡服务(SLB)的核心技术与应用场景,从流量分配到架构创新全面解析其价值。SLB不仅是简单的流量分发工具,更是支撑高并发、保障系统稳定性的智能中枢。文章涵盖四层与七层负载均衡原理、弹性伸缩引擎、智能DNS解析等核心技术,并结合电商大促、微服务灰度发布等实战场景提供实施指南。同时,针对性能调优与安全防护,分享连接复用优化、DDoS防御及零信任架构集成的实践经验,助力企业构建面向未来的弹性架构。
670 76
|
5月前
|
存储 监控 网络协议
HarmonyOS NEXT实战:网络状态监控
本教程介绍如何在HarmonyOS Next中使用@ohos.net.connection模块实现网络状态监控,并通过AppStorage进行状态管理,适用于教育场景下的网络检测功能开发。
198 2

热门文章

最新文章