开发者社区 > 云原生 > 正文

shade 插件打包成jar后,热点参数限流失效 | maven-shade-plugin with

问题: 我在idea直接运行,热点参数限流是可以正常工作的。但我打包成jar后,热点参数限流就失效了。

描述: 我debug观察打包前后的运行差异:

直接运行:

提问51.png

打包成jar后在运行:

提问52.png

但不知道为什么,缺少了ParamFlowSlot

打包工具:maven-shade-plugin:2.3 打包方式:Maven

提问53.png

请帮我解答一下,非常重要,谢谢~

原提问者GitHub用户andyxqq

展开
收起
学习娃 2023-05-19 15:12:12 104 0
1 条回答
写回答
取消 提交回答
  • sentinel-core、sentinel-parameter-flow-control模块下均有 /resources/META-INF/services/com.alibaba.csp.sentinel.init /resources/META-INF/services/com.alibaba.csp.sentinel.slotchain.ProcessorSlot Sentinel通过SPI加载文件里配置的接口实现。

    解压jar包

    • 打开com.alibaba.csp.sentinel.slots.block.flow.param.ParamFlowSlot文件看里面有没有com.alibaba.csp.sentinel.slots.block.flow.param.ParamFlowSlot

    • 打开com.alibaba.csp.sentinel.init文件看里面有没有com.alibaba.csp.sentinel.init.ParamFlowStatisticSlotCallbackInit maven-shade-plugin默认会覆盖同名文件 参考文档:http://maven.apache.org/plugins/maven-shade-plugin/examples/resource-transformers.html

    通过配置maven-shade-plugin插件里org.apache.maven.plugins.shade.resource.AppendingTransformer能解决这个问题。

    参考配置:(其中将Sentinel的SPI文件通过transformer配置)

    org.apache.maven.plugins maven-shade-plugin package shade : META-INF/.SF META-INF/.DSA META-INF/*.RSA **/Log4j2Plugins.dat META-INF/spring.handlers META-INF/spring.schemas META-INF/services/com.alibaba.csp.sentinel.init.InitFunc META-INF/services/com.alibaba.csp.sentinel.slotchain.SlotChainBuilder META-INF/services/com.alibaba.csp.sentinel.slotchain.ProcessorSlot META-INF/services/com.alibaba.csp.sentinel.command.CommandHandler META-INF/services/com.alibaba.csp.sentinel.transport.HeartbeatSender META-INF/services/com.alibaba.csp.sentinel.transport.CommandCenter META-INF/dubbo/com.alibaba.dubbo.rpc.Filter com.alibaba.dubbo.container.Main false

    原回答者GitHub用户cdfive

    2023-05-19 20:16:51
    赞同 展开评论 打赏
问答分类:
问答地址:

阿里云拥有国内全面的云原生产品技术以及大规模的云原生应用实践,通过全面容器化、核心技术互联网化、应用 Serverless 化三大范式,助力制造业企业高效上云,实现系统稳定、应用敏捷智能。拥抱云原生,让创新无处不在。

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载

相关镜像