上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 46 下一页

2023年7月19日

ShardingSphere(基本概念_sharding_jdbc)

摘要: https://shardingsphere.apache.org/index_zh.html 基本概念 什么是shardingsphere? https://shardingsphere.apache.org/document/current/cn/overview/ 什么是分库分表? 分库分表的 阅读全文

posted @ 2023-07-19 17:04 anpeiyong 阅读(26) 评论(0) 推荐(0)

2023年7月16日

Mycat

摘要: 概述 why Java应用程序 直接 访问MySQL数据库产生的问题: Java应用程序 与 MySQL数据库 耦合; 解决:引入Mycat中间件 Java应用程序只需要关注Mycat,由Mycat负责与MySQL数据库通信; 高访问量、高并发对数据库的压力 可以增加多台MySQL数据库均衡压力; 阅读全文

posted @ 2023-07-16 15:18 anpeiyong 阅读(38) 评论(0) 推荐(0)

2023年6月6日

实用工具

摘要: 查找运行时class来自哪个版本的jar包 String className = Appender.class.getName(); className = className.replace('.', '/'); String resource = "/" + className + ".clas 阅读全文

posted @ 2023-06-06 14:06 anpeiyong 阅读(8) 评论(0) 推荐(0)

2022年12月5日

JVM---性能监控与调优(JVM监控及诊断工具GUI_内存泄漏)

摘要: JVM监控及诊断工具-GUI 概述 jconsole 概述 启动 连接 Visual VM 概述 插件安装 Visual VM安装插件 idea中安装插件 连接 主要功能 Arthas 基本概述 背景 概述 Arthas基于哪些工具开发 官方文档 https://arthas.aliyun.com/ 阅读全文

posted @ 2022-12-05 17:07 anpeiyong 阅读(61) 评论(0) 推荐(0)

2022年11月30日

JVM---性能监控与调优(概述_JVM监控及诊断工具命令行)

摘要: 概述 背景说明 1、生产环境遇到的问题? 2、为什么要调优? 3、不同阶段的考虑 调优概述 1、监控的依据 2、调优的大方向 性能优化的步骤 1、性能监控(发现问题) 2、性能分析(排查问题) 3、性能调优(解决问题) 性能评价/测试指标 1、停顿时间(或响应时间) 2、吞吐量 3、并发数 同一时刻 阅读全文

posted @ 2022-11-30 15:47 anpeiyong 阅读(115) 评论(0) 推荐(0)

2022年9月1日

SpringCloudAlibaba-分布式事务(Seata)

摘要: Seata https://seata.io/zh-cn/ why 一次业务操作 需要跨多个数据源 或 跨多个系统 进行远程调用,就会产生分布式事务问题; what Seata是一款 开源的分布式事务解决方案; Seata致力于 在微服务架构下 提供高性能和简单易用的 分布式事务服务; Seata术 阅读全文

posted @ 2022-09-01 11:21 anpeiyong 阅读(96) 评论(0) 推荐(0)

2022年8月22日

SpringCloudAlibaba-熔断_限流(Sentinel)

摘要: Sentinel 概述 https://github.com/alibaba/sentinel https://sentinelguard.io/zh-cn/docs/introduction.html https://spring-cloud-alibaba-group.github.io/git 阅读全文

posted @ 2022-08-22 15:30 anpeiyong 阅读(102) 评论(0) 推荐(0)

2022年8月17日

SpringCloudAlibaba-注册中心_配置中心_负载均衡_消息总线(Nacos)

摘要: Nacos 概述 为什么叫Nacos? 前4个分别为 Naming和Configuration的前2个字母,s是Service; what Dynamic Naming and Configuration Service 一个更易于构建云原生应用的动态服务发现、配置管理和服务管理平台; (注册中心+ 阅读全文

posted @ 2022-08-17 16:52 anpeiyong 阅读(224) 评论(0) 推荐(0)

SpringCloudAlibaba-概述

摘要: 为什么出现SpringCloudAlibaba? SpringCloud Netflix进入维护模式; https://spring.io/blog/2018/12/12/spring-cloud-greenwich-rc1-available-now 进入维护模式意味着什么? SpringClou 阅读全文

posted @ 2022-08-17 15:11 anpeiyong 阅读(93) 评论(0) 推荐(0)

2022年8月16日

SpringCloud-分布式请求链路追踪(Sleuth)

摘要: Sleuth 概述 为什么会出现Sleuth?解决什么问题? 在分布式微服务架构中,由客户端发起的请求 在系统中会经过多个不同的节点 从而产生最终的结果,形成一条复杂的分布式链路,一旦链路中的任一节点出现异常,都会导致请求失败; what https://github.com/spring-clou 阅读全文

posted @ 2022-08-16 15:31 anpeiyong 阅读(82) 评论(0) 推荐(0)

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 46 下一页

导航