上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 45 下一页

2023年7月26日

ThreadPoolExecutor---动态线程池+监控

摘要: 背景 实现 nacos + springboot nacos https://nacos.io/zh-cn/docs/quick-start.html 下载解压 unzip nacos-server-$version.zip 或者 tar -xvf nacos-server-$version.tar 阅读全文

posted @ 2023-07-26 17:00 anpeiyong 阅读(228) 评论(0) 推荐(0) 编辑

ThreadPoolExecutor应用

摘要: 任务类型 1、java.lang.Runnable @FunctionalInterface public interface Runnable { /** * When an object implementing interface <code>Runnable</code> is used * 阅读全文

posted @ 2023-07-26 15:13 anpeiyong 阅读(10) 评论(0) 推荐(0) 编辑

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 阅读(17) 评论(0) 推荐(0) 编辑

2023年7月16日

Mycat

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

posted @ 2023-07-16 15:18 anpeiyong 阅读(30) 评论(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 阅读(4) 评论(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 阅读(53) 评论(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 阅读(89) 评论(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 阅读(84) 评论(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 阅读(91) 评论(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 阅读(207) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 45 下一页

导航