Spring Cloud怎么配置tomcat和Hystrix
发表于:2024-11-28 作者:千家信息网编辑
千家信息网最后更新 2024年11月28日,这篇文章主要讲解了"Spring Cloud怎么配置tomcat和Hystrix",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"Spring Cloud
千家信息网最后更新 2024年11月28日Spring Cloud怎么配置tomcat和Hystrix
这篇文章主要讲解了"Spring Cloud怎么配置tomcat和Hystrix",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"Spring Cloud怎么配置tomcat和Hystrix"吧!
1、替换 tomcat
首先,把 tomcat 换成 undertow,这个性能在 Jmeter 的压测下,undertow 比 tomcat 高一倍 第一步,pom 修改去除tomcat
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat org.springframework.boot spring-boot-starter-undertow
第二步,配置
server: undertow: max-http-post-size: 0# 设置IO线程数, 它主要执行非阻塞的任务,它们会负责多个连接, 默认设置每个CPU核心一个线程,数量和CPU 内核数目一样即可 io-threads: 4# 阻塞任务线程池, 当执行类似servlet请求阻塞操作, undertow会从这个线程池中取得线程,它的值设置取决于系统的负载 io-threads*8 worker-threads: 32# 以下的配置会影响buffer,这些buffer会用于服务器连接的IO操作,有点类似netty的池化内存管理# 每块buffer的空间大小,越小的空间被利用越充分 buffer-size: 1024# 每个区分配的buffer数量 , 所以pool的大小是buffer-size * buffers-per-region# buffers-per-region: 1024 # 这个参数不需要写了# 是否分配的直接内存 direct-buffers: true
2、替换 HTTPClient
第一步,加依赖
io.github.openfeign feign-httpclient
第二部,在 application.yml或者 bootstrap.yml 里面配置
# feign配置feign: hystrix: # 在feign中开启hystrix功能,默认情况下feign不开启hystrix功能 enabled: true ## 配置httpclient线程池 httpclient: enabled: true okhttp: enabled: false
第三步,配置 HTTPClient Bean
import java.util.Timer;import java.util.TimerTask;import java.util.concurrent.TimeUnit;import org.apache.http.client.HttpClient;import org.apache.http.client.config.RequestConfig;import org.apache.http.impl.client.DefaultConnectionKeepAliveStrategy;import org.apache.http.impl.client.HttpClientBuilder;import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class HttpPool { @Bean public HttpClient httpClient(){ System.out.println("===== Apache httpclient 初始化连接池开始===" ); // 生成默认请求配置 RequestConfig.Builder requestConfigBuilder = RequestConfig.custom(); // 超时时间 requestConfigBuilder.setSocketTimeout(5 * 1000); // 连接时间 requestConfigBuilder.setConnectTimeout(5 * 1000); RequestConfig defaultRequestConfig = requestConfigBuilder.build(); // 连接池配置 // 长连接保持30秒 final PoolingHttpClientConnectionManager pollingConnectionManager = new PoolingHttpClientConnectionManager(30, TimeUnit.MILLISECONDS); // 总连接数 pollingConnectionManager.setMaxTotal(1000); // 同路由的并发数 pollingConnectionManager.setDefaultMaxPerRoute(100); // httpclient 配置 HttpClientBuilder httpClientBuilder = HttpClientBuilder.create(); // 保持长连接配置,需要在头添加Keep-Alive httpClientBuilder.setKeepAliveStrategy(new DefaultConnectionKeepAliveStrategy()); httpClientBuilder.setConnectionManager(pollingConnectionManager); httpClientBuilder.setDefaultRequestConfig(defaultRequestConfig); HttpClient client = httpClientBuilder.build(); // 启动定时器,定时回收过期的连接 Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() { System.out.println("=====closeIdleConnections==="); pollingConnectionManager.closeExpiredConnections(); pollingConnectionManager.closeIdleConnections(5, TimeUnit.SECONDS); } }, 10 * 1000, 5 * 1000); System.out.println("===== Apache httpclient 初始化连接池完毕==="); return client; }}
3、配置 Hystrix
第一步,依赖
org.springframework.cloud spring-cloud-starter-hystrix
第二步,配置
# 配置hystrix的参数hystrix: threadpool: # default: 默认参数,作用的所有的hystrix的客户端,如果需要对某个具体的接口,可以写接口+方法名称 default: coreSize: 500 command: default: fallback: # 是否开启回退方法 enabled: true execution: isolation: thread: timeoutInMilliseconds: 30000 #缺省为1000
感谢各位的阅读,以上就是"Spring Cloud怎么配置tomcat和Hystrix"的内容了,经过本文的学习后,相信大家对Spring Cloud怎么配置tomcat和Hystrix这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是,小编将为大家推送更多相关知识点的文章,欢迎关注!
配置
线程
参数
学习
阻塞
任务
内存
内容
功能
大小
情况
接口
数量
方法
时间
空间
分配
作用
内核
取决于
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
xcode软件开发
云南 2016金融数据库
曙光1210服务器
数据库对查询的认识正确的是什么
针灸数据库
cod8联机时服务器中断
网络安全运维标书
ioslol服务器推荐
杭州车载网络技术应用
华硕x79支持服务器内存条
云服务器外网带宽1g
手游鬼泣怎么换服务器
深圳互联网软件开发工作工资
韩立刚 网络安全
关于网络安全的策划书格式
查询数据库表前多少行明细
服务器可以放普通主板吗
南通网络安全绘画
post请求服务器
cs1.5服务器设置
运维工程师什么时候用到数据库
php+软件开发
数据库数据转发到其他类型数据库
70数据库
上海智能化网络技术转让价目表
2b2t如何不排队进服务器
东莞旅游软件开发中心
魔兽为啥老说连接不上世界服务器
软件开发部门管理总结
郑州太源堂网络技术