12 2021 档案

摘要:解决方法:创建logs/seata_gc.log 文件夹及文件 阅读全文
posted @ 2021-12-28 21:08 残星 阅读(621) 评论(0) 推荐(0) 编辑
摘要:下载Git https://git-scm.com/ 选择开始菜单页 选择Git文件默认的编辑器 调整您的PATH环境 这个界面是调整您的PATH环境。 第一种配置是“仅从Git Bash使用Git”。这是最安全的选择,因为您的PATH根本不会被修改。您只能使用 Git Bash 的 Git 命令行 阅读全文
posted @ 2021-12-17 21:43 残星 阅读(57) 评论(0) 推荐(0) 编辑
摘要:Seata分TC、TM和RM三个角色,TC(Server端)为单独服务端部署,TM和RM(Client端)由业务系统集成。 https://seata.io/zh-cn/docs/ops/deploy-guide-beginner.html 下载安装包 https://github.com/seat 阅读全文
posted @ 2021-12-16 22:41 残星 阅读(527) 评论(0) 推荐(0) 编辑
摘要:官网:https://seata.io/zh-cn/index.html https://seata.io/zh-cn/docs/overview/what-is-seata.html 源码:https://github.com/seata/seata Demo:https://github.com 阅读全文
posted @ 2021-12-14 16:39 残星 阅读(101) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E5%9C%A8%E7%94%9F%E4%BA%A7%E7%8E%AF%E5%A2%83%E4%B8%AD%E4%BD%BF%E7%94%A8-Sentinel 生产环境的 Sentinel Dashboard 需要 阅读全文
posted @ 2021-12-13 14:29 残星 阅读(419) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E7%B3%BB%E7%BB%9F%E8%87%AA%E9%80%82%E5%BA%94%E9%99%90%E6%B5%81 Sentinel 系统自适应限流从整体维度对应用入口流量进行控制,结合应用的 Load、C 阅读全文
posted @ 2021-12-11 17:28 残星 阅读(344) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E7%83%AD%E7%82%B9%E5%8F%82%E6%95%B0%E9%99%90%E6%B5%81 何为热点?热点即经常访问的数据。很多时候我们希望统计某个热点数据中访问频次最高的 Top K 数据,并对其访 阅读全文
posted @ 2021-12-10 20:48 残星 阅读(647) 评论(0) 推荐(0) 编辑
摘要:package com.wsm.stock.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.web.bind.annotation.RequestMap 阅读全文
posted @ 2021-12-06 23:16 残星 阅读(364) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E7%86%94%E6%96%AD%E9%99%8D%E7%BA%A7 除了流量控制以外,对调用链路中不稳定的资源进行熔断降级也是保障高可用的重要措施之一。 我们需要对不稳定的弱依赖服务调用进行熔断降级,暂时切断不稳 阅读全文
posted @ 2021-12-05 16:05 残星 阅读(1278) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E6%B5%81%E9%87%8F%E6%8E%A7%E5%88%B6 直接拒绝 直接拒绝(RuleConstant.CONTROL_BEHAVIOR_DEFAULT)方式是默认的流量控制方式,当QPS超过任意规则的 阅读全文
posted @ 2021-12-04 23:56 残星 阅读(129) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E6%B5%81%E9%87%8F%E6%8E%A7%E5%88%B6 NodeSelectorSlot 中记录了资源之间的调用链路,这些资源通过调用关系,相互之间构成一棵调用树。这棵树的根节点是一个名字为 mach 阅读全文
posted @ 2021-12-04 10:58 残星 阅读(667) 评论(0) 推荐(0) 编辑
摘要:使用jmeter工具之前需要安装java.并配置好java的环境变量。 http://jmeter.apache.org/download_jmeter.cgi (Windows版本下载zip,Linux版本下载tgz)一般下载Binaries,Source含有源码; https://dlcdn.a 阅读全文
posted @ 2021-12-03 18:58 残星 阅读(60) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E6%B5%81%E9%87%8F%E6%8E%A7%E5%88%B6 当两个资源之间具有资源争抢或者依赖关系的时候,这两个资源便具有了关联。比如对数据库同一个字段的读操作和写操作存在争抢,读的速度过高会影响写得速度 阅读全文
posted @ 2021-12-03 17:23 残星 阅读(136) 评论(0) 推荐(0) 编辑
摘要:https://github.com/alibaba/Sentinel/wiki/%E6%B5%81%E9%87%8F%E6%8E%A7%E5%88%B6 流量控制(flow control),其原理是监控应用流量的 QPS 或并发线程数等指标,当达到指定的阈值时对流量进行控制,以避免被瞬时的流量高 阅读全文
posted @ 2021-12-02 14:10 残星 阅读(986) 评论(0) 推荐(0) 编辑