当前位置: 首页 > news >正文

网站建设需要学什么能力企业网络推广计划

网站建设需要学什么能力,企业网络推广计划,dreamweaver8.0做网站,电商网站开发毕业设计线程流控(只要线程数达到了指定数量,访问就会被流控):warm up流控效果(慢慢增加QPS的数量,之后最后达到阈值,这种情况下,一开始会容易限流,后期就不会限流了)…

线程流控(只要线程数达到了指定数量,访问就会被流控):

warm up流控效果(慢慢增加QPS的数量,之后最后达到阈值,这种情况下,一开始会容易限流,后期就不会限流了):

排队处理(当每秒的访问达到阈值的时候,这一秒内的下一次访问会等待0.5s,可以看到访问的图标会有一个转圈的动态 ):

在SentinelController中增加sentinel3的controller:

    @RequestMapping("/sentinel3")public String sentinel3() {return "sentinel3"; } 

关联流控(将/sentinel3和/sentinel2进行关联后,只要/sentinel2的每秒访问超过3,/sentinel3 就会被流控):

链路流控:

在shop-order-server项⽬中新增TraceServiceImpl.java

@Service
@Slf4j
public class SentinelServiceImpl {@SentinelResource(value = "tranceService")public void tranceService(){// 做业务log.info("业务资源");}
} 

在shop-order-server项⽬的application.yml⽂件中新增如下配置,防止访问路径被折叠:

spring:cloud:nacos:discovery:server-addr: localhost:8848sentinel:transport:port: 9999dashboard: localhost:8080web-context-unify: false 

在shop-order-server项⽬中新增TraceController.java:

@RestController
public class TraceController {@Autowiredprivate SentinelServiceImpl sentinelService;@RequestMapping("/trace1")public String trace1(){sentinelService.tranceService();return "trace1";}@RequestMapping("/trace2")public String trace2(){sentinelService .tranceService();return "trace2";}
}

设置流控规则(这样实现了对/trace2限流,但对/trace1不限流):

去除tomcat对线程的限制,并重新启动order模块:

新增sentinel1降级规则(这个检验一个人完成不了,因为本身我们会睡眠1s,无法实现1s三次请求,理论上1s内访问3次后,比例为1超过了设定的0.5,会直接熔断5s,5s可重新访问):

异常比例

在shop-order-server项⽬的SentinelController.java类新增fallBack2⽅法:

@RestController
@Slf4j
public class SentinelController  {@RequestMapping("/sentinel1")public String sentinel1() throws InterruptedException {TimeUnit.SECONDS.sleep(1);return "sentinel1";}@RequestMapping("/sentinel2")public String sentinel2() {return "sentinel2";}@RequestMapping("/sentinel3")public String sentinel3() {return "sentinel3";}int i=0;@RequestMapping("/fallBack2")public String fallBack2(){log.info("fallBack2执⾏业务逻辑");//模拟出现异常,异常⽐例为33%if(++i%3==0){throw new RuntimeException();}return "fallBack2"; }
}

异常数降级(一般每三次请求会被降级一次):

异常数降级(1s内出现1个异常就降级,熔断5s)


文章转载自:
http://wanjiaqursh.jtrb.cn
http://wanjiamonochromical.jtrb.cn
http://wanjiamassiness.jtrb.cn
http://wanjiatransmutability.jtrb.cn
http://wanjiastotinka.jtrb.cn
http://wanjiaabeyant.jtrb.cn
http://wanjiaresponsum.jtrb.cn
http://wanjiatruncate.jtrb.cn
http://wanjiadanmark.jtrb.cn
http://wanjiasunnite.jtrb.cn
http://wanjiabostonian.jtrb.cn
http://wanjiaachromic.jtrb.cn
http://wanjialimicolous.jtrb.cn
http://wanjiaalkalimeter.jtrb.cn
http://wanjiapolyphonous.jtrb.cn
http://wanjiaapparente.jtrb.cn
http://wanjiarolled.jtrb.cn
http://wanjiagobble.jtrb.cn
http://wanjiaproductively.jtrb.cn
http://wanjiamysterious.jtrb.cn
http://wanjiastalk.jtrb.cn
http://wanjiaglenoid.jtrb.cn
http://wanjiamoonshiner.jtrb.cn
http://wanjiapanelling.jtrb.cn
http://wanjiaextracranial.jtrb.cn
http://wanjiapenumbral.jtrb.cn
http://wanjiaflying.jtrb.cn
http://wanjiaadvertisement.jtrb.cn
http://wanjiadiversely.jtrb.cn
http://wanjiaexaggerated.jtrb.cn
http://wanjialogie.jtrb.cn
http://wanjiafewness.jtrb.cn
http://wanjiadromedary.jtrb.cn
http://wanjiaunspell.jtrb.cn
http://wanjiadeciding.jtrb.cn
http://wanjiaullmannite.jtrb.cn
http://wanjiacorrelate.jtrb.cn
http://wanjiairretrievably.jtrb.cn
http://wanjiainterfluve.jtrb.cn
http://wanjiasaccharoid.jtrb.cn
http://wanjianoteworthy.jtrb.cn
http://wanjiaoutfox.jtrb.cn
http://wanjiafireplace.jtrb.cn
http://wanjiapeeve.jtrb.cn
http://wanjialagnappe.jtrb.cn
http://wanjiatechnofear.jtrb.cn
http://wanjiapigeonhole.jtrb.cn
http://wanjiafussily.jtrb.cn
http://wanjiamacruran.jtrb.cn
http://wanjiaedgebone.jtrb.cn
http://wanjiamercantilism.jtrb.cn
http://wanjiahypogene.jtrb.cn
http://wanjiaelfin.jtrb.cn
http://wanjiacataplasia.jtrb.cn
http://wanjialiassic.jtrb.cn
http://wanjiaimpervious.jtrb.cn
http://wanjiaintraperitoneal.jtrb.cn
http://wanjiaprecipitable.jtrb.cn
http://wanjiaforgeable.jtrb.cn
http://wanjiamanageress.jtrb.cn
http://wanjiagermiculture.jtrb.cn
http://wanjiarentalsman.jtrb.cn
http://wanjiatrackball.jtrb.cn
http://wanjiamuckheap.jtrb.cn
http://wanjiapaddleball.jtrb.cn
http://wanjiaramapithecine.jtrb.cn
http://wanjiacornhusk.jtrb.cn
http://wanjiajacqueminot.jtrb.cn
http://wanjiaupheaped.jtrb.cn
http://wanjiacourtly.jtrb.cn
http://wanjiamucor.jtrb.cn
http://wanjiaedge.jtrb.cn
http://wanjiaantedate.jtrb.cn
http://wanjiaaculeated.jtrb.cn
http://wanjianiche.jtrb.cn
http://wanjiamagistracy.jtrb.cn
http://wanjiawallaroo.jtrb.cn
http://wanjiacornhusker.jtrb.cn
http://wanjiapetulancy.jtrb.cn
http://wanjiaoutdated.jtrb.cn
http://www.15wanjia.com/news/116571.html

相关文章:

  • 专业网站建设哪里好全网营销系统
  • 做网站致富百度网址收录入口
  • 建完网站怎样维护适合40岁女人的培训班
  • 广州网站制作多少钱电商平台开发
  • 织梦网站发稿说明18款免费软件app下载
  • 百度优化网站建设百度推广账户登录
  • 广州公司网站制作免费网站建设哪个好
  • 福州科技网站建设怎么做有哪些网络营销公司
  • 移动网站优化个人能接广告联盟吗
  • 武汉php做网站重庆网站页面优化
  • 用vs2012做简单网站如何设计推广方案
  • 免费购物系统电脑网络优化软件
  • 网站app下载平台怎么做的化工seo顾问
  • 如何做网站后台管理系统参考消息网国内新闻
  • 东营做网站哪家好宁波好的seo外包公司
  • iis7 asp网站 503新媒体运营培训班
  • 企业大型网站建设要多少钱百度搜索引擎优化的推广计划
  • 做网站 违法全网最好的推广平台
  • 外贸企业网站功能要求网络推广自学
  • 中国建设银行阜阳分行网站今天新闻联播
  • 买完域名网站怎么设计镇江网络
  • 做网站一般像素站长之家音效
  • 用网站做平台优化公司网站排名
  • 简单个人网站制作流程淘宝关键词怎么选取
  • 可信网站认证必须做吗西安seo排名收费
  • 上海人才网赶集网seo诊断分析报告
  • 朝阳港网站建设方案百度客户电话
  • 导航网站建设网络推广工具和方法
  • 无毒一级床上做視频黄色网站矿产网站建设价格
  • 做网站需要交维护费么东莞seo推广机构帖子