使用Nginx实现灰度发布的使用
灰度发布是指在黑与白之间,能够平滑过渡的一种发布方式。ab test就是一种灰度发布方式,让一部分用户继续用a,一部分用户开始用b,如果用户对b没有什么反对意见,那么逐步扩大范围,把所有用户都迁移到b上面来。
灰度发布可以保证整体系统的稳定,在初始灰度的时候就可以发现、调整问题,以保证其影响度。
灰度发布常见一般有三种方式:
- nginx+lua方式
- 根据cookie实现灰度发布
- 根据来路ip实现灰度发布
本文主要将讲解根据cookie和来路ip这两种方式实现简单的灰度发布,nginx+lua这种方式涉及内容太多就不再本文展开了。
a/b测试流程
nginx根据cookie实现灰度发布
根据cookie查询cookie键为version的值,如果该cookie值为v1则转发到hilinux_01,为v2则转发到hilinux_02。cookie值都不匹配的情况下默认走hilinux_01所对应的服务器。
两台服务器分别定义为:
- hilinux_01 192.168.1.100:8080
- hilinux_02 192.168.1.200:8080
用if指令实现
upstream hilinux_01 { server 192.168.1.100:8080 max_fails=1 fail_timeout=60; } upstream hilinux_02 { server 192.168.1.200:8080 max_fails=1 fail_timeout=60; } upstream default { server 192.168.1.100:8080 max_fails=1 fail_timeout=60; } server { listen 80; server_name www.hi-linux.com; access_log logs/www.hi-linux.com.log main; #match cookie set $group "default"; if ($http_cookie ~* "version=v1"){ set $group hilinux_01; } if ($http_cookie ~* "version=v2"){ set $group hilinux_02; } location / { proxy_pass http://$group; proxy_set_header host $host; proxy_set_header x-real-ip $remote_addr; proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; index index.html index.htm; } }
用map指令实现
在nginx里面配置一个映射,$cookie_version可以解析出cookie里面的version字段
。$group是一个变量,{}里面是映射规则。
如果一个version为v1的用户来访问,$group就等于hilinux_01。在server里面使用就会代理到http://hilinux_01上。version为v2的用户来访问,$group就等于hilinux_02。在server里面使用就会代理到http://hilinux_02上。cookie值都不匹配的情况下默认走hilinux_01所对应的服务器。
upstream hilinux_01 { server 192.168.1.100:8080 max_fails=1 fail_timeout=60; } upstream hilinux_02 { server 192.168.1.200:8080 max_fails=1 fail_timeout=60; } upstream default { server 192.168.1.100:8080 max_fails=1 fail_timeout=60; } map $cookie_version $group { ~*v1$ hilinux_01; ~*v2$ hilinux_02; default default; } server { listen 80; server_name www.hi-linux.com; access_log logs/www.hi-linux.com.log main; location / { proxy_pass http://$group; proxy_set_header host $host; proxy_set_header x-real-ip $remote_addr; proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; index index.html index.htm; } }
nginx根据来路ip实现灰度发布
如果是内部ip,则反向代理到hilinux_02(预发布环境);如果不是则反向代理到hilinux_01(生产环境)。
upstream hilinux_01 { server 192.168.1.100:8080 max_fails=1 fail_timeout=60; } upstream hilinux_02 { server 192.168.1.200:8080 max_fails=1 fail_timeout=60; } upstream default { server 192.168.1.100:8080 max_fails=1 fail_timeout=60; } server { listen 80; server_name www.hi-linux.com; access_log logs/www.hi-linux.com.log main; set $group default; if ($remote_addr ~ "211.118.119.11") { set $group hilinux_02; } location / { proxy_pass http://$group; proxy_set_header host $host; proxy_set_header x-real-ip $remote_addr; proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; index index.html index.htm; } }
如果你只有单台服务器,可以根据不同的ip设置不同的网站根目录来达到相同的目的。
server { listen 80; server_name www.hi-linux.com; access_log logs/www.hi-linux.com.log main; set $rootdir "/var/www/html"; if ($remote_addr ~ "211.118.119.11") { set $rootdir "/var/www/test"; } location / { root $rootdir; } }
到此最基本的实现灰度发布方法就讲解完了,如果要做更细粒度灰度发布可参考abtestinggateway项目。
abtestinggateway是新浪开源的一个动态路由系统。abtestinggateway是一个可以动态设置分流策略的灰度发布系统,工作在7层,基于nginx和ngx-lua开发,使用redis作为分流策略数据库,可以实现动态调度功能。
abtestinggateway:https://github.com/cnsre/abtestinggateway
参考文档
到此这篇关于使用nginx实现灰度发布的使用的文章就介绍到这了,更多相关nginx 灰度发布内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 配置Nginx的防盗链的操作方法
推荐阅读
-
Android开发使用自定义view实现ListView下拉的视差特效功能
-
vue2.0 使用element-ui里的upload组件实现图片预览效果方法
-
ES6使用export和import实现模块化的方法
-
PHP使用流包装器实现WebShell的方法
-
C#使用WebClient登录网站并抓取登录后的网页信息实现方法
-
vue使用Proxy实现双向绑定的方法示例
-
javascript使用substring实现的展开与收缩文字功能示例
-
使用android隐藏api实现亮度调节的方法
-
IOS如何使用CAShapeLayer实现复杂的View的遮罩效果
-
jQuery使用eraser.js插件实现擦除、刮刮卡效果的方法【附eraser.js下载】