小言_互联网的博客

高性能零售IT系统的建设09-Spring Boot2.4.2+Spring Cloud+Nacos+Feign+Hystrix的生产级应用实例

848人阅读  评论(0)

开篇

        通过前面8篇我们已经感受到了我接手时这个项目有多“烂”,当然喽如果只是一味的承认它的烂这不是积极乐观主义。

        我在接触管理早期听过一次四大厂的报告,报告中说到:从来没有屎一样的团队只有屎一样的“带队”。

        这也符合我们一直接受的正能量教育的理念。

        一支IT研发团队有没有战斗力不是只靠威吓、罚、强制可以带得出来,而是需要赋于它“灵魂”。灵魂就是“团结一切可以团结的力量、身先士卒、带头攻关、真正把心放在团队上、把团队当成你的身体的一部分器官和有机体去呵护它”,它才能“健康”成长。

        所以,我们的系统在刚上线前我就已经发现了这个系统内含微服务。含了微服务是一件好事,可是这个微服务形同虚设,等于没有。当时手上百废待兴、事情一堆,满足业务功能、强化团队战斗力占了我工作比重的90%,要把一支“培训班”水平的团队在短时间内进行2级跳跨越到研发水平,这对我的挑战相当的大。

        但这个问题我是意识到会在不久的将来集中爆发的,所以我做了不少前期准备。但是。。。。。。它还是比我料想的早了1周(我料想是在2021年11月左右爆发,结果它是在2021年10月底爆发的)爆了一个大问题出现,我们来看。

早期系统中的微服务形同虚设

        早期系统中的微服务使用的是spring cloud,每一个spring boot都打成了K8S,是一个独立的服务。再怎么K8S,它底层是spring boot、是embedded tomcat,没错吧。而。。。这个tomcat本身带有一个default timeout,是20秒,但。。。上线前都没设置,于是web容器的默认超时就都变成了20秒了。

        又,每一个微服务问的访问也没设timeout,而早期的spring cloud的timeout如果你没设同时在spring cloud的自动装配yaml配置文件里也没设置timeout相关的阀值,它取的是本身“容器”的timeout即embedded tomcat 8.5.x的timeout值即20秒。

         好,这乐子大了。我们来看一个经典的微服务场景,“雪崩”。

        当,一次前端并发在接爱3,000不到一点时,在以下这个图里的优惠券业务这个k8s容器出现了问题,于是所有的“打到”它身上的流量卡住了,每一条卡20秒。前端的3,000到了某个微服务身上有时不止3,000的量,这是因为因为一些中小型企业没有把微服务在“纵向”上再切一刀的“额外硬件成本”所以会导致前后端只要有相关的引用都会把微服务打到某一个组件上。微服务、微服务,再微,它的底层是什么?是HTTP请求呀!

        于是乎,当上万的http request打到了优惠券服务上后它开始积压、然后耗尽整个服务内linux的max tcp open数,积压了10几万的tcp导致了:

  1. 本身这个服务已经没响应了;
  2. 级联雪崩开始,卡到上一层“加购物车”。购物车再积压10几万tcp,再没响应;
  3. 购物车服务继续向上层级联雪崩,崩到了商品分类页,然后商品分类页服务中某一些如:推荐商品、首页显示“本周优选”这些小服务都是通过分类页服务取的,于是首页卡死、白屏;

         所谓祸不单行,同时我们的第三方渠道里的“地图定位”也因为本身第三方自身的原因维护发生了卡顿。我们零售O2O行当在结算页时经常会有一个“商品预计XXX分钟内送到”这个功能,这个功能是当订单状态变成了“骑手已取货”时,系统把你下完单开始派送的门店的经纬度和你收货地址的经纬度进行匹配后返回的一个预计送达时间的restful api接口。这条接口在10分钟内(零售O2O行当经常碰到第三方外联系统错误的,这很正常)发生了抖动而。。。因为我们调用也没设timeout,于是也是卡20秒,再倒过来级联雪崩,这一条路经过以下路径:

  1. 第三方地图定位
  2. “用户”微服务模块
  3. 加购物车
  4. 商品分类
  5. 首页

        哈哈哈哈,首页白屏、业务哀嚎、老板脸抽筋!

        上面这两条路,都是级联雪崩的核心路径。而且前端用户因为商城优惠活动力度大那么它的并发是源源不断的“汹涌”进系统的。

        因此,当我们临时重启了购物车发觉都没有用,因为你重启一个模块时流量暂时都是“白屏”,但一旦服务好了,在15-30分钟内由于客户“热情”不减,流量依旧还是往系统里“涌入”,然后再打爆、打爆后再级联。然后我们又发觉了第三方的地图定位系统有问题再去重启“我的”这个微服务,重启完后没1分钟系统再卡、再白屏。

        喏,看到了没?90%左右业内的零售IT就是在这种活动中如此的彼于奔命,最终被业务笑话成了“IT要做的事就是重启”。

从微服务的角度想一下级联雪崩时的问题

        没错,微服务就是用来对付级联雪崩的。

        微服务的核心要素是什么:

  1. 服务熔断
  2. 服务升级、降级
  3. 服务限流
  4. 服务“回放”
  5. 服务兜底

        百度上只有1、2、3点,我加了4、5两点是因为百度解释微服务是从技术角度而实际的业务场景容不得我们一切切,下文会详细展开为什么会有4、5两点。

        那么我们来看级联雪崩时的问题:

  1. 服务重启无用-因为你就算定位到了一个服务,你重启它,然后此时外部流量继续打向它,你重启后最最多的好处就像我们的情况一样,整个系统好了1分钟后再卡,就算你全站重启效果依旧一样,因为互联网真实用户的并发流量它相当于一辆“狂飙”中的高铁,它从狂飙到刹车是有一个“惯性”的;
  2. 明明出问题的模块已经恢复了,为什么和它依赖的其它服务模块也崩了呢?这正是级联雪崩的原理,级联雪崩不是一路向下而是倒过来:自底向上崩的,这有点像“递归”,CALL我的节点在我出问题时都会被“牵联”到,因此它的影响是一大片,崩、崩、崩。。。game over;

熔断

        那么此时我们因该怎么办?碰到这种问题不是等死吗?而且就像我上文所述,一些第三方外部服务出现抖动、甚至是维护不通知我们零售商户是经常性的,这样一来不是导致了我们每周可能都得来这么一次,那谁受得了呢?

        那么我们想到了微服务中的熔断,嗯。。。还有一个限流,熔断和限流是不错!可是。。。你有没有想过一个问题?

熔断后的“业务兜底方案”

        限了后、断了后怎么办?用户之前访问是白屏,现在访问时过几秒来一个“网络错误”、“努力加载中请稍侯”,然后此时用户不断的看到“亲,请稍侯”、“亲,努力加载中哦”。。。亲努力访问了10次都是这种。。。于是乎,亲发怒了,见你的鬼哦,88撒油那拉奥斯维达幸了。于是,宝贵的客户就这样损失掉了、企业IT的口碑也因此而完蛋了。

        这就是为什么我加入了第4点和第5点。

实际举例来说业务兜底的设计

        我们拿实际例子来说事,拿第三方地图定位系统出问题了,我就断开,设置了一个超时4秒,4秒内不响应我就断开,断开后老显示“骑手派送中”就是不显示“预计何时送到”。于是用户等啊等、等啊等,状态显示的是:派送中,过了一小时还是派送中,于是用户点了取消。突然此时门铃响了,快递给你送到了哦 。

        这个乌龙还不算大,最大的乌龙是这么一个梗,我给大家讲一下,估计你们看了会笑出“杀猪叫”声来。

        说用户等啊等,等了一小时状态还是派送中,用户点了取消,点完取消后又马上下了一单。此时门铃响了,“叮咚,你的订单送到了”,你一脸懵X的接收了订单后,过了1小时。。。“叮咚,你的订单送到了”-这是你取消后又下的一单到了。于是你打开手机APP商城看到上一笔订单被驳回了“撤消申请”,钱也没退因为订单已经送到你家了,于是你本来这些东西准备好一顿吃掉的,这下来了两顿,就算留了一顿放在晚上吃,一是同一天吃重复的东西两次?再者就是:有些生鲜类东西不能放置太久。

        这种乐子我相信大伙经常碰到过。

        所以熔断了、限流了,你得有一个“补偿机制”或者我们也称为“业务兜底”。

        拿这个显示派送时间来说,因为第三方地图出问题了,于是你来一个4秒超时断开,断开后马上取一个系统中设置的默认值如:90分钟,然后把这个90分钟直接return回前端显示好了。这就叫断开(熔断)后的业务兜底。

        再拿优惠券来说,这个断了可是没得优惠了?对啊,这种下单时使用“可用优惠券”而。。。此时优惠券服务临时出了问题,那。。。此时你提示用户“可以稍侯下单”同时也有很大一部分用户手上并没有可用的优惠券但是你不能因为一个优惠券服务临时出个问题就影响到其它用户(可能占70%比例)的正常浏览和下单动作呀?是不是?那么此时,你也可以在服务间设置一个超时,超时后断开,一旦断开你提示用户:可以稍侯下单或者可以用线下、座席运营的手段手工补偿用户一张优惠券而不应该去影响其它不显示优惠券、不使用优惠券的普通用户的下单行为,这都比你整个系统“卡、白屏”要好,是吧?

再来说一下限流回放

        在这个系统之前的篇章我们说过限流,限完后也是有一个“安抚”页面对吧。这对用户其实也是不太友好的。

         做过支付对接工作的就知道,很多支付第三方都有限流动作,但是人家有一个叫“支付结果回调通知”的功能。

        相当于我们让用户只管把结果“成功的写入”我们的系统,对用户来说限流变得“透明”。然后用户的请求落到系统中后呢?我们在系统内部进行一个“削峰”,慢慢消化用户的请求,一旦消化了后再“主动”通知用户。比如下面第二种“回放”的做法,用户只管下单,下完后系统会通知用户“你的订单处理完了”。

        这种做法虽然也不能和下完单就出结果相媲美,但是它在“体验友好”和“系统保护”二者间却可以取得完美的“平衡”。

 从代码角度来看微服务

        上面说了一些理念性的东西,下面我们要进入核心,来看看在我接手的这个640多万行代码的“屎山”里,我们是如何经过前期有针对性的准备并且以小步快跑的方式并且在不影响业务功能叠代的情况下如何把系统改成了真正的微服务的吧。

        还是从微服务的核心着手,上手把所有的默认超时统统给我改掉。

微服务中的超时设多少才合理

        有说2秒、有说4秒、有说1秒,凭什么呢?拍脑袋吗?

        拿数据说事,通过监控我们可以发觉一个系统内部间的服务调用,>1s的 read timeout以及>1s的http connection timeout已经是件很夸张的事了。

        各位!同属一个局域网,以云+SSD高速盘为例,你相当于访问你的localhost:9080时你连接一次都要>1s,或者说连接上了取一次response需要>1s,你这是什么接口哈?

        你说我一个response里有6万条数据,各位。。。你自己看看你自己说的这句话,一个微服务调用返回一个>6万条json数据的response,这个服务本身就已经需要重构了。

        你以为1s太夸张了、太理想化了、太乌托邦了。嘿嘿嘿,我告诉你2020年拼多多、抖音、JD、美团、今日头条的数据。

        内部微服务从大方向上被它们分为二类,一类被称为:即时交易含transaction类业务,不得>1s。第二类被称为:即时非交易不含transaction类业务,不得>500毫秒。

        各位这么想一下,你的业务系统并发量大这是一件好事啊,说明你的用户量大,日活20W的话你一天都有上千万的成交额,谁不喜欢。那么我们把万级一秒并发这个指标加到你的系统头上,请问在一秒钟内一个API被点击一万次的情况下,你觉得一次get请求<=1s这个要求过份吗?

        不过份,我告诉大家,1s超时就断开这个阀值对于开发团队来说还太宽裕了!

        就拿我们的系统现在的微服务核心指标就是“本着不相信一切对接方甚至自己几十个模块间也彼此不相信”的原则下,按照:TO C端交易类单接口不得>1sTO C端非交易类如:getUserById请求不得>500msTO B端(后台管理平台内的操作)全部限制在不得>3s来进行微服务的超时设置。

        有了数据和理论依据后,我们开始构建我们的微服务底层骨架了。

使用spring cloud2.0构建系统微服务底层

        我接手项目后对spring boot做过一次整体升级,新功能几乎全用spring boot2.4.2,大家请一定记得这个版本号哦。

        这篇文章中的代码适用于>spring boot2.4<spring boot 3

        这是因为spring boot的版本和spring cloud2.0以及nacos、hystrix熔断、feignclient的版本是完全匹配的。

        你要网上不加筛选的乱抄,其结果就是:你的项目要么就是工程启动到一半什么错也不抛然后突然的莫明奇妙的终止,要么就是在工程启动时抛出一堆的exception。

        所以我们来看我们的微服务的底层“骨架”。

基于spring 2.4.2的spring cloud2.0的依赖


  
  1. <properties>
  2. <project.build.sourceEncoding>UTF-8 </project.build.sourceEncoding>
  3. <maven.compiler.encoding>UTF-8 </maven.compiler.encoding>
  4. <java.version>11 </java.version>
  5. <maven.compiler.source>11 </maven.compiler.source>
  6. <maven.compiler.target>11 </maven.compiler.target>
  7. <jacoco.version>0.8.3 </jacoco.version>
  8. <spring-boot.version>2.4.2 </spring-boot.version>
  9. <spring-cloud.version>2020.0.3 </spring-cloud.version>
  10. <spring-cloud-alibaba.version>2021.1 </spring-cloud-alibaba.version>
  11. <nacos.discovery.version>2.2.5.RELEASE </nacos.discovery.version>
  12. <hystrix.version>2.2.9.RELEASE </hystrix.version>
  13. <druid.version>1.1.20 </druid.version>
  14. <nacos-client.version>1.4.1 </nacos-client.version>
  15. <mysql-connector-java.version>5.1.46 </mysql-connector-java.version>
  16. <disruptor.version>3.4.2 </disruptor.version>
  17. <aspectj.version>1.8.13 </aspectj.version>
  18. <nacos.spring.version>0.1.4 </nacos.spring.version>
  19. <mybatis.version>2.1.0 </mybatis.version>
  20. <pagehelper-mybatis.version>1.2.3 </pagehelper-mybatis.version>
  21. </properties>

        先来看我们使用的各组件依赖的版本号,这个版本号是我们生产上面对万级并发使用的,它已经历时一年半经历了无数次“大促”的考验了。

        接着我们来看maven中的配置

在整个商城的parent pom.xml文件的结构


  
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0 </modelVersion>
  3. <parent>
  4. <groupId>com.mkyuan.aset.mall </groupId>
  5. <artifactId>aset-mall </artifactId>
  6. <version>0.0.1 </version>
  7. </parent>
  8. <artifactId>aset-galaxy </artifactId>
  9. <dependencies>
  10. <dependency>
  11. <groupId>commons-lang </groupId>
  12. <artifactId>commons-lang </artifactId>
  13. </dependency>
  14. <dependency>
  15. <groupId>mysql </groupId>
  16. <artifactId>mysql-connector-java </artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba </groupId>
  20. <artifactId>druid </artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.mybatis.spring.boot </groupId>
  24. <artifactId>mybatis-spring-boot-starter </artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot </groupId>
  28. <artifactId>spring-boot-starter-log4j2 </artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot </groupId>
  32. <artifactId>spring-boot-starter-web </artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot </groupId>
  36. <artifactId>spring-boot-starter-test </artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.ow2.asm </groupId>
  40. <artifactId>asm </artifactId>
  41. </exclusion>
  42. </exclusions>
  43. <scope>test </scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit </groupId>
  47. <artifactId>junit </artifactId>
  48. <version>4.12 </version>
  49. <scope>test </scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.aspectj </groupId>
  53. <artifactId>aspectjweaver </artifactId>
  54. <scope>provided </scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba </groupId>
  58. <artifactId>fastjson </artifactId>
  59. </dependency>
  60. <!-- 通过bootstrap.yml配置文件生效,需要引入spring-cloud-starter-bootstrap -->
  61. <dependency>
  62. <groupId>org.springframework.cloud </groupId>
  63. <artifactId>spring-cloud-starter-bootstrap </artifactId>
  64. </dependency>
  65. <!--nacos-->
  66. <dependency>
  67. <groupId>com.alibaba.cloud </groupId>
  68. <artifactId>spring-cloud-starter-alibaba-nacos-config </artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba.nacos </groupId>
  72. <artifactId>nacos-client </artifactId>
  73. <scope>provided </scope>
  74. </dependency>
  75. <!-- spring cloud microservice -->
  76. <dependency>
  77. <groupId>com.alibaba.cloud </groupId>
  78. <artifactId>spring-cloud-starter-alibaba-nacos-discovery </artifactId>
  79. </dependency>
  80. </dependencies>
  81. </project>

商城内某一个微服务的provider端

        在provider端即微服务提供方,我们为了把一个spring cloud2.0的微服务发布注册进nacos在pom.xml文件中必须要含有以下几行


  
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0 </modelVersion>
  3. <parent>
  4. <groupId>com.mkyuan.aset.mall </groupId>
  5. <artifactId>aset-mall </artifactId>
  6. <version>0.0.1 </version>
  7. </parent>
  8. <artifactId>aset-galaxy </artifactId>
  9. <dependencies>
  10. <dependency>
  11. <groupId>cn.hutool </groupId>
  12. <artifactId>hutool-crypto </artifactId>
  13. <scope>provided </scope>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.lmax </groupId>
  17. <artifactId>disruptor </artifactId>
  18. <scope>provided </scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-lang </groupId>
  22. <artifactId>commons-lang </artifactId>
  23. <scope>provided </scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql </groupId>
  27. <artifactId>mysql-connector-java </artifactId>
  28. <scope>provided </scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba </groupId>
  32. <artifactId>druid </artifactId>
  33. <scope>provided </scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.mybatis.spring.boot </groupId>
  37. <artifactId>mybatis-spring-boot-starter </artifactId>
  38. <scope>provided </scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot </groupId>
  42. <artifactId>spring-boot-starter-log4j2 </artifactId>
  43. <scope>provided </scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot </groupId>
  47. <artifactId>spring-boot-starter-web </artifactId>
  48. <scope>provided </scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot </groupId>
  52. <artifactId>spring-boot-starter-test </artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.ow2.asm </groupId>
  56. <artifactId>asm </artifactId>
  57. </exclusion>
  58. </exclusions>
  59. <scope>test </scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>junit </groupId>
  63. <artifactId>junit </artifactId>
  64. <version>4.12 </version>
  65. <scope>test </scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.aspectj </groupId>
  69. <artifactId>aspectjweaver </artifactId>
  70. <scope>provided </scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.guava </groupId>
  74. <artifactId>guava </artifactId>
  75. <scope>provided </scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.alibaba </groupId>
  79. <artifactId>fastjson </artifactId>
  80. <scope>provided </scope>
  81. </dependency>
  82. <!-- redis must -->
  83. <!-- jedis must -->
  84. <dependency>
  85. <groupId>redis.clients </groupId>
  86. <artifactId>jedis </artifactId>
  87. <scope>provided </scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot </groupId>
  91. <artifactId>spring-boot-starter-data-redis </artifactId>
  92. <exclusions>
  93. <exclusion>
  94. <groupId>org.springframework.boot </groupId>
  95. <artifactId>spring-boot-starter-logging </artifactId>
  96. </exclusion>
  97. <exclusion>
  98. <groupId>org.slf4j </groupId>
  99. <artifactId>slf4j-log4j12 </artifactId>
  100. </exclusion>
  101. </exclusions>
  102. <scope>provided </scope>
  103. </dependency>
  104. <!-- redission must -->
  105. <dependency>
  106. <groupId>org.redisson </groupId>
  107. <artifactId>redisson-spring-boot-starter </artifactId>
  108. <version>${redission.version} </version>
  109. <!-- <exclusions> <exclusion> <groupId>org.redisson</groupId> <artifactId>redisson-spring-data-23</artifactId>
  110. </exclusion> </exclusions> -->
  111. <scope>provided </scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.redisson </groupId>
  115. <artifactId>redisson-spring-data-21 </artifactId>
  116. <version>${redission.version} </version>
  117. <scope>provided </scope>
  118. </dependency>
  119. <!-- 通过bootstrap.yml配置文件生效,需要引入spring-cloud-starter-bootstrap -->
  120. <dependency>
  121. <groupId>org.springframework.cloud </groupId>
  122. <artifactId>spring-cloud-starter-bootstrap </artifactId>
  123. <scope>provided </scope>
  124. </dependency>
  125. <!--nacos-->
  126. <dependency>
  127. <groupId>com.alibaba.cloud </groupId>
  128. <artifactId>spring-cloud-starter-alibaba-nacos-config </artifactId>
  129. <scope>provided </scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.alibaba.nacos </groupId>
  133. <artifactId>nacos-client </artifactId>
  134. <scope>provided </scope>
  135. </dependency>
  136. <!-- httpclient 配置 -->
  137. <dependency>
  138. <groupId>org.apache.httpcomponents </groupId>
  139. <artifactId>httpclient </artifactId>
  140. <scope>provided </scope>
  141. </dependency>
  142. <!-- spring cloud microservice -->
  143. <dependency>
  144. <groupId>com.alibaba.cloud </groupId>
  145. <artifactId>spring-cloud-starter-alibaba-nacos-discovery </artifactId>
  146. </dependency>
  147. </dependencies>
  148. </project>

maven配置中的核心要点解读

  1. 去掉项目自带的slf4j,改用被发布的无jndi漏洞的log4j版本号;
  2. 一些spring boot的本身或者第三方组件如:mybatis、redis等都会带进自身所依赖的一些logback、log4j、slf4j,最终一个项目集成下来,slf4j版本就有3、4个,搞得项目要么不能启动、要么启动起来后不输出log,因此在parent里使用dependencies manager把这些包都统统排干净了;
  3. spring boot的版本、spring cloud的版本、spring cloud alibaba、nacos-discovery四者必须完全匹配,因此我才说我这个配置是最稳定的版本,它经历了1年多的生产环境运行了,是我们通过极其无聊、痛苦的项目结构内版本不断的匹配试验才找到的这么一个组合,当然这几个版本的组合也有“明确的细索可循”并不是不加思索的一个一个去手工动,大家可以上spring cloud alibaba的git,在git首页内可以找到这4样东西的版本匹配
  4. 最坑的是这个nacos discovery client,它的<version>必须使用我parent的pom中给出的版本-2.2.5.RELEASE,而不能依赖于spring-cloud-alibaba-dependencies自带的;
  5. 笔者使用的nacos版本为:2.0.2;

         provider端的spring boot自动装配用yaml配置,我把yaml文件放在了nacos里,我们的整体商城用的是nacos来作为我们的配置中心的。


  
  1. spring:
  2. application:
  3. name: aset-galaxy
  4. cloud:
  5. nacos:
  6. discovery:
  7. server-addr: 192.168.0.106:8848
  8. name-space: aset-mall-dev

        在你的eclipse项目内必须含有一个bootstrap.xml文件

        它的内容如下:


  
  1. aset:
  2. nacos:
  3. address: 192.168.0.106:8848
  4. spring:
  5. application:
  6. name: aset-galaxy
  7. main:
  8. banner-mode: off
  9. allow-bean-definition-overriding: true
  10. cloud:
  11. nacos:
  12. config:
  13. shared-configs[0]:
  14. data-id: common.yaml
  15. namespace: ${spring.profiles.active}
  16. server-addr: ${aset.nacos.address}
  17. file-extension: yaml
  18. group: DEFAULT_GROUP
  19. username: nacos
  20. password: nacos
  21. jackson:
  22. time-zone: GMT+8
  23. date-format: yyyy-MM-dd HH:mm:ss
  24. profiles:
  25. active: aset-mall-dev

        注意:此处的spring:application:name必须和nacos配置中心里的spring:application:name中完全一致。同时,此处还指定了:

  1. nacos服务发现的地址
  2. shared-configs[0]-指定了我们的项目含有一个common.yaml,在common.yaml里定义的是全局redis、db连接,如果对于初学者来说如果你做练习时只有一个yaml配置并不需要include其它全局配置,那么你可以把:从shared-configs[0]到下面的data-id:这两行删了;
  3. spring:cloud:nacos:config:group-yaml文件所在的group;
  4. spring:cloud:nacos:config:namespace-yaml文件所在的namespace;
  5. 配置文件的后缀名为“.yaml";

        默认,这个.yaml文件的前缀是以你的spring:application:name+.yaml文件放在相应的namespace->DEFAULT GROUP下的,如下截图所示:

 商城内某一个微服务的provider端的spring boot main写法


  
  1. package com.mkyuan.aset.mall.galaxy;
  2. import org.mybatis.spring.annotation.MapperScan;
  3. import org.redisson.spring.starter.RedissonAutoConfiguration;
  4. import org.springframework.boot.SpringApplication;
  5. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  6. import org.springframework.boot.autoconfigure.SpringBootApplication;
  7. import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration;
  8. import org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration;
  9. import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
  10. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
  11. import org.springframework.context.annotation.ComponentScan;
  12. import org.springframework.transaction.annotation.EnableTransactionManagement;
  13. @SpringBootApplication
  14. @ComponentScan(basePackages = {"com.mkyuan.aset"})
  15. @MapperScan("com.mkyuan.aset.mall.galaxy.dao")
  16. @EnableTransactionManagement
  17. @EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class,RedisAutoConfiguration.class,
  18. RedissonAutoConfiguration.class, RedisRepositoriesAutoConfiguration.class})
  19. @EnableDiscoveryClient
  20. public class AsetGalaxy {
  21. public static void main (String[] args) {
  22. SpringApplication.run(AsetGalaxy.class);
  23. }
  24. }

         你必须要使用@EnableTransactionManagement,这样这个服务一旦启动,它就会自动注册进nacos成为一个微服务了。

 provider端提供出来的微服务


  
  1. package com.mkyuan.aset.mall.galaxy.api;
  2. import org.springframework.web.bind.annotation.RestController;
  3. import com.mkyuan.aset.mall.galaxy.service.GalaxyGenerator;
  4. import com.mkyuan.aset.mall.util.controller.response.ResponseBean;
  5. import com.mkyuan.aset.mall.util.controller.response.ResponseCodeEnum;
  6. import org.apache.commons.lang.StringUtils;
  7. import org.slf4j.Logger;
  8. import org.slf4j.LoggerFactory;
  9. import org.springframework.web.bind.annotation.RequestMapping;
  10. import org.springframework.web.bind.annotation.RequestMethod;
  11. import org.springframework.web.bind.annotation.RequestParam;
  12. import org.springframework.web.bind.annotation.ResponseBody;
  13. import java.util.List;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. @RestController
  16. public class GalaxyAPI {
  17. @Autowired
  18. private GalaxyGenerator galaxyGenerator;
  19. private Logger logger = LoggerFactory.getLogger(this.getClass());
  20. @RequestMapping(value = "/service/galaxy/getValueWithNum", method = RequestMethod.GET)
  21. @ResponseBody
  22. public ResponseBean getCurrentValWithNum(@RequestParam String businessKey) {
  23. String currentVal = null;
  24. try {
  25. // currentVal = sequenceService.getAndIncValue();
  26. Thread.sleep(1200);
  27. currentVal = galaxyGenerator.getValue(businessKey, true, 16);
  28. } catch (Exception e) {
  29. logger.error(">>>>>>get sequence error: " + e.getMessage(), e);
  30. return new ResponseBean(ResponseCodeEnum.FAIL.getCode(), e.getMessage(), null);
  31. }
  32. if (StringUtils.isNotEmpty(currentVal)) {
  33. return new ResponseBean(ResponseCodeEnum.SUCCESS, currentVal);
  34. } else {
  35. return new ResponseBean(ResponseCodeEnum.FAIL.getCode(), "操作太快", null);
  36. }
  37. }
  38. }

        这是一个标准的spring boot controller,只是我们在getCurrentValueWithNum(没错这是一个分布式序列号产生器,随着我的商城的开源我会把这一整套重新整理过的框架的后端、前端-Android开发的商城都开源给大家的-mkyuan.com是我的另一个私人实名永久域名)里故意来了一个Thread.sleep(1200),让这个controller中的get方法被访问时故意耗时1.2秒,以便于后面微服务内演示:熔断以及熔断后的业务兜底。       

        现在,我们来看把这个工程启动起来。

          工程成功启动后我们看nacos里面

         可以看到这个微服务已经被成功的发布和注册进nacos了。

商城内某一个微服务的consumer端

consumer端的pom.xml文件

        先来看pom.xml文件,它和provider端共用一个parent pom.xml文件,因此版本全部保持一致,在子pom.xml文件内由于已经在parent的pom.xml文件的dependencies manager内指定了,因此在子pom.xml文件内不必再指定,要指定也是有一些特殊需求。


  
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0 </modelVersion>
  3. <parent>
  4. <groupId>com.mkyuan.aset.mall </groupId>
  5. <artifactId>aset-mall </artifactId>
  6. <version>0.0.1 </version>
  7. </parent>
  8. <artifactId>aset-mall-account </artifactId>
  9. <dependencies>
  10. <dependency>
  11. <groupId>commons-lang </groupId>
  12. <artifactId>commons-lang </artifactId>
  13. </dependency>
  14. <dependency>
  15. <groupId>mysql </groupId>
  16. <artifactId>mysql-connector-java </artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba </groupId>
  20. <artifactId>druid </artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.mybatis.spring.boot </groupId>
  24. <artifactId>mybatis-spring-boot-starter </artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot </groupId>
  28. <artifactId>spring-boot-starter-log4j2 </artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot </groupId>
  32. <artifactId>spring-boot-starter-web </artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot </groupId>
  36. <artifactId>spring-boot-starter-test </artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.ow2.asm </groupId>
  40. <artifactId>asm </artifactId>
  41. </exclusion>
  42. </exclusions>
  43. <scope>test </scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit </groupId>
  47. <artifactId>junit </artifactId>
  48. <version>4.12 </version>
  49. <scope>test </scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.aspectj </groupId>
  53. <artifactId>aspectjweaver </artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.guava </groupId>
  57. <artifactId>guava </artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba </groupId>
  61. <artifactId>fastjson </artifactId>
  62. </dependency>
  63. <!-- redis must -->
  64. <!-- jedis must -->
  65. <dependency>
  66. <groupId>redis.clients </groupId>
  67. <artifactId>jedis </artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot </groupId>
  71. <artifactId>spring-boot-starter-data-redis </artifactId>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>org.springframework.boot </groupId>
  75. <artifactId>spring-boot-starter-logging </artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <groupId>org.slf4j </groupId>
  79. <artifactId>slf4j-log4j12 </artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <!-- redission must -->
  84. <dependency>
  85. <groupId>org.redisson </groupId>
  86. <artifactId>redisson-spring-boot-starter </artifactId>
  87. <version>${redission.version} </version>
  88. <!-- <exclusions> <exclusion> <groupId>org.redisson</groupId> <artifactId>redisson-spring-data-23</artifactId>
  89. </exclusion> </exclusions> -->
  90. </dependency>
  91. <dependency>
  92. <groupId>org.redisson </groupId>
  93. <artifactId>redisson-spring-data-21 </artifactId>
  94. <version>${redission.version} </version>
  95. </dependency>
  96. <!-- 通过bootstrap.yml配置文件生效,需要引入spring-cloud-starter-bootstrap -->
  97. <dependency>
  98. <groupId>org.springframework.cloud </groupId>
  99. <artifactId>spring-cloud-starter-bootstrap </artifactId>
  100. </dependency>
  101. <!--nacos-->
  102. <dependency>
  103. <groupId>com.alibaba.cloud </groupId>
  104. <artifactId>spring-cloud-starter-alibaba-nacos-config </artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.alibaba.nacos </groupId>
  108. <artifactId>nacos-client </artifactId>
  109. </dependency>
  110. <!-- spring cloud microservice -->
  111. <dependency>
  112. <groupId>com.alibaba.cloud </groupId>
  113. <artifactId>spring-cloud-starter-alibaba-nacos-discovery </artifactId>
  114. <exclusions>
  115. <exclusion>
  116. <groupId>org.springframework.cloud </groupId>
  117. <artifactId>spring-cloud-starter-netflix-ribbon </artifactId>
  118. </exclusion>
  119. </exclusions>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.cloud </groupId>
  123. <artifactId>spring-cloud-loadbalancer </artifactId>
  124. </dependency>
  125. <!-- spring cloud 客户端比provider端需要多引用一个openfeign和一个nextflix-hystrix-->
  126. <dependency>
  127. <groupId>org.springframework.cloud </groupId>
  128. <artifactId>spring-cloud-starter-netflix-hystrix </artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework.cloud </groupId>
  132. <artifactId>spring-cloud-starter-openfeign </artifactId>
  133. </dependency>
  134. <!-- okhttp3-->
  135. <dependency>
  136. <groupId>com.squareup.okhttp3 </groupId>
  137. <artifactId>okhttp </artifactId>
  138. </dependency>
  139. </dependencies>
  140. </project>

maven配置中的核心要点解读

        敲默板了,这块相当重要。

        因为以spring boot2的版本进化过程中特别是spring cloud的consumer端内要用到的这几样组件:

  1. spring cloud
  2. spring cloud alibaba
  3. nacos discovery client
  4. hystrix
  5. feign

        这几者间有着严格的版本依赖,因此从时代上划成了5代:

  •  第一代,以spring boot2.0~spring boot 2.1,这一代里这几个组件彼此间有间对应关系;
  •  第二代,以spring boot2.1~spring boot 2.2,这一代里这几个组件彼此间有间对应关系;
  •  第三代,以spring boot2.2~spring boot 2.3.8,这一代里这几个组件彼此间有间对应关系;
  •  第四代,以spring boot2.4~spring boot 2.5,这一代里这几个组件彼此间有间对应关系;
  •  第五代,以spring boot2.5~spring boot 3,这一代里这几个组件彼此间有间对应关系;

        如果,版本间有着严格的对应关系这倒也算了,大不了版本不一致的情况下我们可以上git的spring cloud alibaba首页里查看几个组件的版本对应关系。

        关键最让人坑的是从spring boot2.4.2及使用spring cloud 2022.0后的版本后取消了hystrix,因此不少网上的解决方案说是可以用alibaba的sentinel去做“熔断”,笔者在使用过11个微服务框架的经验里告诉大家:至于用什么组件是木有任何毛线关系的,关键还在于你是否精于这些组件,用最常用的、你最熟悉的达到同样的目的,那么它就是好的架构。这就是架构的精髓:本无架构、架构是迷踪拳、架构是独孤九剑。。。

        扯远了,扯回来。

        在spring cloud 2022.0后已经去掉了ribbon改用了spring-cloud-loadbalancer,也没有hystrix了,如果你使用的是spring cloud 2022.0版以后的依赖,那么你的项目里会自动带入hystrix的的旧版本:spring cloud hystrix 1.5.4。。。崩溃中。因此我们才在我们的pom.xml文件中exclude掉了ribbon和手工指定了netflix-hystrix版本的道理

        

 

        否则,它会让你的项目内的“熔断”功能死活不启作用。因此,才要在此处使用netflix-hystrix并在pom.xml文件中手工指定它的最新版本即:2.2.9.RELEASE。

        同时我们不使用feign client的自带HttpClient功能而改用了okhttp3组件。

consumer的spring boot main的启动类中的写法


  
  1. package com.mkyuan.aset.mall.account;
  2. import javax.annotation.PostConstruct;
  3. import org.mybatis.spring.annotation.MapperScan;
  4. import org.redisson.spring.starter.RedissonAutoConfiguration;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.boot.SpringApplication;
  7. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  8. import org.springframework.boot.autoconfigure.SpringBootApplication;
  9. import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration;
  10. import org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration;
  11. import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
  12. import org.springframework.cloud.netflix.hystrix.EnableHystrix;
  13. import org.springframework.cloud.openfeign.EnableFeignClients;
  14. import org.springframework.context.annotation.ComponentScan;
  15. @SpringBootApplication
  16. @EnableFeignClients
  17. @EnableHystrix
  18. @ComponentScan(basePackages = "com.mkyuan.aset")
  19. @MapperScan({ "com.mkyuan.aset.mall.account.dao" })
  20. @EnableAutoConfiguration(exclude = { DataSourceAutoConfiguration.class, RedisAutoConfiguration.class,
  21. RedissonAutoConfiguration.class, RedisRepositoriesAutoConfiguration.class })
  22. public class AsetAccount {
  23. public static void main (String[] args) {
  24. SpringApplication.run(AsetAccount.class);
  25. }
  26. }

注意:

  1. @EnableFeignClients,且置于@SpringBootApplication下,这是因为这个annotation内带扫描含有@FeignClient注解的微服务客户端,而它于spring boot自带的@ComponentScan有“优先级”上的冲突并导致工程启动时随机的报“找不到相关的feign client类依赖“。因此我们会把@EnableFeignClients置于@ComponentScan的上部;
  2. 必须要有@EnableHystrix(老版本用的是@EnableCircuitBreaker写法)
  3. spring boot2.4.2工程的main里已经不需要再写@EnableDiscoveryClient这个annotation了

consumer端的feign client以及hystrix断路器的.yaml配置

        同样,它需要集成一个bootstrap.xml文件,而把.yaml文件放置于nacos里。

先来看.yaml文件


  
  1. server:
  2. port: 9080
  3. tomcat:
  4. max-http-post-size: 1048576
  5. # #最小线程数
  6. min-spare-threads: 300
  7. #最大线程数
  8. max-threads: 1000
  9. #最大链接数
  10. max-connections: 1000
  11. #最大等待队列长度
  12. accept-count: 800
  13. # connection-timeout: 10000
  14. max-http-header-size: 10240000
  15. logging:
  16. config: classpath:log4j2.xml
  17. spring:
  18. application:
  19. name: aset-account
  20. servlet:
  21. multipart:
  22. max-file-size: 10MB
  23. max-request-size: 10MB
  24. cloud:
  25. circuitbreaker:
  26. hystrix:
  27. enabled: true
  28. nacos:
  29. discovery:
  30. server-addr: 192.168 .0 .106: 8848
  31. name-space: aset-mall-dev
  32. #Mybatis pageHelper
  33. pagehelper:
  34. helperDialect: mysql
  35. reasonable: true
  36. supportMethodsArguments: true
  37. params: count=countSql
  38. #spring cloud消费端配置
  39. ribbon:
  40. eager-load:
  41. enabled: true
  42. clients: aset-galaxy
  43. feign:
  44. okhttp:
  45. enabled: true
  46. httpclient:
  47. enabled: false
  48. max-connections: 1000
  49. max-connections-per-route: 100
  50. compression:
  51. request:
  52. mime-types: text/xml,application/xml,application/json
  53. min-request-size: 2048
  54. enabled: true
  55. response:
  56. enabled: true
  57. client:
  58. config:
  59. default:
  60. connect-timeout: 1000
  61. read-timeout: 1000
  62. #开启hystrix熔断器
  63. circuitbreaker:
  64. enabled: true
  65. hystrix:
  66. command:
  67. default:
  68. execution:
  69. isolation:
  70. thread:
  71. timeoutInMilliseconds: 1000 #设置hystrix的超时时间为1000ms
  72. circuitBreaker:
  73. #在当 10秒的时间内,最近 5次调用请求,请求错误率超过 20%,则触发熔断 300秒,期间快速失败,以下都是默认值
  74. requestVolumeThreshold: 5
  75. errorThresholdPercentage: 20
  76. sleepWindowInMilliseconds: 300000

超级需要注意的地方来了:

  1. 在spring boot2.4以前由于spring cloud版本还是2021,因此我们使用的是:feign:hystrix:enabled,而在spring boot2.4~2.5因为spring cloud版本变成了2022.0后的版了因此它的写法为:feign:circuitbreaker:enabled了;
  2. 在项目里你的hystrix的保护时间:sleepWindowInMilliseconds的值,必须大于你的feign里的connect-timeout和read-timeout(实际生产上我们这两个值不是每一个模块都一样的,有一些根据我们的监控甚至有300或者500毫秒的);
  3. hystrix里的circuitBreaker:requestVolumeThresholdcircuitBreaker:errorThresholdPercentage以及circuitBreaker:sleepWindowInMilliseconds这三个值,我竟然在网上其它的博客以及超过90%的不同真实的项目架构里,从没有看到这3个值的使用。也正是因为大家都是看网上的博客而很多博客讲的是一个入门,然后copy不走样的复制了网上的配置,导致了都没有配这三个值。这三个值不配,你的微服务的熔断功能等于失效。这也是我接手的这个项目内的另一个大问题,即微服务等同于“无”一样。hystrix对于微服务的熔断从这么两个点进行考量:在最近10秒内失败了几次或者在最近10秒内的调用错误失败率超过一定百分比(errorThresholdPercentage)就触发熔断。熔断后我们想一下,此时这个被熔断的服不会一下子好起来,此时我们需要给这个服务一个“喘吸/恢复”的时间,这个时间就叫“保护时间”或者也被称之为“服务降级”时间,即:circuitBreaker:sleepWindowInMilliseconds,这个值不能一概而论,每个服务各有不同,或15分钟、或30分钟、或5分钟。这段保护时间内,流量不会被“打到”失败的服务上,而直接被hystrix拦截在http层直接return到调用断,以充分减少http request的“冲击”,同时在这段保护时间内我们会使用“业务兜底”方案以取得“用户体验”和系统稳定性间的平衡。所以这三个值如果不设,那么你的spring cloud等于没用,这也是为什么很多时候我在面试时问侯选人:为什么你要使用spring cloud?你使用到了什么功能?同时又是什么促使了你要使用spring cloud?如果没有回答到熔断防止级联雪崩并在熔断时采用了“业务兜底”方案,那么这些人统统都只是网上看点资料然后就来面试或者是为了用而用spring cloud的不动脑子的所谓项目经验;

再来看bootstrap.xml文件


  
  1. aset:
  2. nacos:
  3. address: 192.168 .0 .106: 8848
  4. spring:
  5. application:
  6. name: aset-account
  7. main:
  8. banner-mode: off
  9. allow-bean-definition-overriding: true
  10. cloud:
  11. nacos:
  12. config:
  13. shared-configs[ 0]:
  14. data-id: common.yaml
  15. namespace: ${spring.profiles.active}
  16. server-addr: ${aset.nacos.address}
  17. file-extension: yaml
  18. group: DEFAULT_GROUP
  19. username: nacos
  20. password: nacos
  21. jackson:
  22. time-zone: GMT+ 8
  23. date-format: yyyy-MM-dd HH:mm:ss
  24. profiles:
  25. active: aset-mall-dev

  这边一定要注意的点就是你的spring:application:name必须和你的nacos里的完全一致。

 consumer端调用服务的核心代码

        我们的consumer端叫aset-account 、provider端叫aset-galaxy。

        因此我们要在aset-account内调用aset-galaxy中的:/service/galaxy/getValueWithNum

         我们把所有的provider端的“残根”称为proxy,放于统一的package下。

 

 AsetGalaxyProxy.java


  
  1. package com.mkyuan.aset.mall.account.springcloud.api;
  2. import org.springframework.cloud.openfeign.FeignClient;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RequestMethod;
  5. import org.springframework.web.bind.annotation.RequestParam;
  6. import org.springframework.web.bind.annotation.ResponseBody;
  7. import com.mkyuan.aset.mall.util.controller.response.ResponseBean;
  8. @FeignClient(value = "aset-galaxy", fallback = AsetGalaxyFallBack.class)
  9. public interface AsetGalaxyProxy {
  10. @RequestMapping(value = "/service/galaxy/getValueWithNum", method = RequestMethod.GET)
  11. @ResponseBody
  12. public ResponseBean getValueWithNum (@RequestParam(value = "businessKey", required = true) String businessKey) throws Exception;
  13. }

 AsetGalaxyFallBack.java

 这个XXXFallBack类就是我们的微服务在遇到错误进行熔断时抛出HystrixRuntimeException的地方了。另外就是一定要记得这个类要加上@Component的注解,这个类相当于上述这个AsetGalaxyProxy Interface的Implementation。


  
  1. package com.mkyuan.aset.mall.account.springcloud.api;
  2. import org.slf4j.Logger;
  3. import org.slf4j.LoggerFactory;
  4. import org.springframework.stereotype.Component;
  5. import com.mkyuan.aset.mall.util.controller.response.ResponseBean;
  6. import com.mkyuan.aset.mall.util.controller.response.ResponseCodeEnum;
  7. @Component
  8. public class AsetGalaxyFallBack implements AsetGalaxyProxy {
  9. private Logger logger = LoggerFactory.getLogger( this.getClass());
  10. ResponseBean resp = new ResponseBean(ResponseCodeEnum.FEIGN_TIMEOUT);
  11. @Override
  12. public ResponseBean getValueWithNum (String businessKey) throws Exception{
  13. logger.error( ">>>>>>circuitbreaker for getValueWithNum");
  14. throw new Exception( ">>>>>>circuitbreaker for getValueWithNum");
  15. }
  16. }

        因此它的实现很简单,核心是要“抛出这个Exception”。因为如果你在这边把Exception“吃”掉了,然后以logger.error作记录也是可以的。

        可是这样操作的话,请问在一个生产级别复杂的环境下,你的熔断后都要做业务兜底的。业务兜底可以是前台(小程序、APP)和后台根据约定的一个code进行联动、也可以仅仅是前端显示“安抚”页面。不管采用什么办法吧,你总要有一个“当碰到熔断的code我们就进行业务兜底”这么一个对code的判断动作,对吧?

        你不能一刀切的统一返回-1吧?因为如果都为-1返回,前端会显示“系统繁忙”,而此时如果你“封装过渡”的话也会导致所有的后台错误都被返回-1,然后你的熔断因此又失去了其本质的作用中最核心的-熔断后需要做业务兜底这一功效了。

        因此,下面我们来看对这个proxy的调用代码,然后你就可以感受到微服务熔断以及熔断后的业务兜底的本质了。

UserAccountService.java

        在看代码前我们先来看微服务的调用顺序(按照1、2、3)如下截图所示:

好,我们来看我们的这个service类中的含有微服务调用代码


  
  1. public EnumMap<ResponseInfor, Object> getSmsVerifiedCodeLogin (String mobileNumber, String verifiedCode)
  2. throws Exception {
  3. int result = 102;
  4. int randMillSec = ( int) ( 1 + Math.random() * ( 2000 - 1 + 1));
  5. int expireTime = ACCOUNT_EXPIRE_TIME + randMillSec;
  6. EnumMap<ResponseInfor, Object> responseInfor = new EnumMap<ResponseInfor, Object>(ResponseInfor.class);
  7. try {
  8. StringBuffer keySB = new StringBuffer();
  9. keySB.append(AccountConstants.REDIS_SMS_VERIFIED_CODE_KEY_PREFIX).append(mobileNumber);
  10. String vcodeInRedis = (String) redisTemplate.opsForValue().get(keySB.toString());
  11. if (vcodeInRedis != null) {
  12. if (verifiedCode.equals(verifiedCode)) {
  13. result = 101;
  14. String newUt = MD5CombinedWithToken.getMD5Value(loginToken, mobileNumber);
  15. String loginId = asetGalaxyProxy.getValueWithNum( "aset:mall:account:loginid_sequence").getData()
  16. .toString();
  17. logger.info(
  18. ">>>>>>user login behaviour, get loginId from remote spring cloud asetGalaxyProxy.getValueWithNum is->"
  19. + loginId);
  20. UserAccountMsgBean msgBean = new UserAccountMsgBean();
  21. msgBean.setLoginStatus( 1);
  22. msgBean.setWhat( 102);
  23. msgBean.setUt(newUt);
  24. msgBean.setLoginId(loginId);
  25. msgBean.setMobileNumber(mobileNumber);
  26. UserAccount redisUser = new UserAccount();
  27. BeanUtils.copyProperties(msgBean, redisUser);
  28. logger.info( ">>>>>>getSmsVerifiedCodeLogin->After use BeanUtils.copy");
  29. logger.info( "ut->" + redisUser.getUt() + " mobileNumber->" + redisUser.getMobileNumber()
  30. + " loginStatus->" + redisUser.getLoginStatus());
  31. // redisUser来自DB的getUserAccountByUT后进行set再缓存到redis里
  32. // redisUser.setMobileNumber(mobileNumber);
  33. // redisUser.setUt(newUt);
  34. // redisUser.setLoginStatus(1);
  35. // redisUser.setLoginId(newUt);// loginId在短信登录方案里需要自增
  36. StringBuffer redisUserKeySB = new StringBuffer();
  37. redisUserKeySB.append(AccountConstants.REDIS_ACCOUNT_KEY_PREFIX).append(newUt);
  38. logger.info( ">>>>>>write redis key->" + redisUserKeySB.toString() + " into redis");
  39. redisTemplate.opsForValue().set(redisUserKeySB.toString(), redisUser);
  40. redisTemplate.expire(redisUserKeySB.toString(), expireTime, TimeUnit.MILLISECONDS);
  41. redisTemplate.convertAndSend(RedisMessageConfig.MESSAGE_TOPIC_LOGIN, msgBean);
  42. responseInfor.put(ResponseInfor.ut, newUt);
  43. }
  44. } else {
  45. logger.info( ">>>>>>verified code for: " + mobileNumber + " didn't find in redis");
  46. }
  47. } catch (HystrixRuntimeException hre) {
  48. logger.error( ">>>>>>hystrix circuitbreak: " + hre.getMessage()
  49. + " return FEIGN_TIMEOUT code-8001 to the frontsize", hre);
  50. responseInfor.put(ResponseInfor.result, ResponseCodeEnum.FEIGN_TIMEOUT.getCode());
  51. return responseInfor;
  52. } catch (Exception e) {
  53. logger.error( ">>>>>>getSmsVerifiedCodeLogin error: " + e.getMessage(), e);
  54. throw new Exception( ">>>>>>getSmsVerifiedCodeLogin error: " + e.getMessage(), e);
  55. }
  56. responseInfor.put(ResponseInfor.result, result);
  57. return responseInfor;
  58. }

         看这个service类里的方法 ,调用微服务的地方如下所示:

asetGalaxyProxy.getValueWithNum("aset:mall:account:loginid_sequence").getData()

        如果这个地方出现了服务间的错误,它会抛出一个“HystrixRuntimeException”,catch住这个exception后,你可以把这个错误向上抛到controller层并最终返回出去。你也可以做服务兜底,如果要做服务兜底,我们这边的服务兜底方案为:

        如果一个用户通过短信登录时,在生成了ut后还要为它生成一个拿分布式id产生的16位loginId,而当拿分布式id出错时,从业务上讲这个loginId只要随机和唯一即可因此我们可以在当拿分布式id出现了“熔断”后把ut(算法保证全局唯一)的值塞到loginId里,从代码上看这个业务兜底方案就是这样的:


  
  1. catch (HystrixRuntimeException hre) {
  2. //开始进行业务兜底
  3. logger.error( ">>>>>>hystrix circuitbreak: " + hre.getMessage()
  4. + " return FEIGN_TIMEOUT code-8001 to the frontsize", hre); //记录系统熔断日志
  5. //responseInfor.put(ResponseInfor.result, ResponseCodeEnum.FEIGN_TIMEOUT.getCode());
  6. redisMsgBean.setLoginId(ut) //熔断后拿不到loginId就用ut代替loginId塞入loginId
  7. redisMsgBean.set其它
  8. redisTemplate.opsForValue().set(key, redisMsgBean);
  9. //发送一条异步消息对把redis里登录的用户的状态写入db。
  10. responseInfor.put( 0, ut); //把熔断日志记录下来后返回controller成功
  11. return responseInfor;
  12. } catch (Exception e) {
  13. logger.error( ">>>>>>getSmsVerifiedCodeLogin error: " + e.getMessage(), e);
  14. throw new Exception( ">>>>>>getSmsVerifiedCodeLogin error: " + e.getMessage(), e);
  15. }
  16. responseInfor.put(ResponseInfor.result, result);
  17. return responseInfor;

spring boot2.4.2+spring cloud2022.0后版本+feign+hystrix+nacos的微服务运行效果

确保provider端和consumer端都运行起来

 进入nacos查看我们的微服务

        看,由于我们在provider端的controller一进入就休眠1.2s,因此配合着consumer端的feign的client端的connect-timeout和read-timeout超时为1s,所以通过consumer端的api进行访问连接到后端provider端共耗时了1.02秒,因此它超时了并返回了8001这个code。

        我们在刚才的AccountService的getSmsVerifiedCodeLogin方法返回的这个HystrixRuntimeException的code恰恰就是8001:

于是,我们接连访问5次,前5次都为1.02s

 直到第6次,我们看到虽然返回内容一样,但是它的返回时间为8ms,对不对?

 

         这是因为我们在consumer端设置的这个circuitBreaker:requestVolumeThreshold: 5这个值。然后从此开始往后的circuitBreaker:sleepWindowInMilliseconds: 300000毫秒内,这个服务被“保护”起来了(降级),再有请求这个http request打不到aset-galaxy(provider端)了,而是由aset-account(consumer端)的hystrix直接“拦截”下来了并返回了code 8001,所以此时它的返回速度超快。然后此时你需要等:300,000毫秒即5分钟,并且还要符合provider端恢复了,你才可以再次正常把http request路由到aset-galaxy(provider端)上。注意看下面的这个exception最下面一行,Caused by: java.lang.RuntimeException: Hystrix circuit short-circuited and is OPEN。这就说明,从第5次开始再往后就都是hystrix直接拦截了http request了。

 

        因此,现在我们把provider端故意休眠1.2秒的语句给注释掉,重启provider端!

        并且耐心等上个circuitBreaker:sleepWindowInMilliseconds: 300000毫秒!

          5分钟后(不好意思我刚才去了次WC、抽了个烟、活动了一下脖子,时间有点超了)当后端的provider恢复了/好了,那么此时hystrix才会“放开”断路器允许http request继续向下请求。

         以上,就是我们的生产级微服务的核心骨架、架构思路以及可用代码。

 文后的申明

  1. com.mkyuan是作者本人实名永久域名;
  2. com.mkyuan.aset.mall是本人重新梳理并使用了最新的技术的一套全新的中台,完成后会把它的前端APP、后台java统统开源并可以面向小微企业完成本人的“中台普惠”的心愿;

 

 


转载:https://blog.csdn.net/lifetragedy/article/details/128770215
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场