博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法
阅读量:6224 次
发布时间:2019-06-21

本文共 5484 字,大约阅读时间需要 18 分钟。

本系列文章索引

前情提要 |
本文

1.4.2 调用带有延迟的服务负载分析

由于微服务架构的盛行,大型系统内服务间基于HTTP API进行调用的会相当频繁。Netflix的系统有500+的微服务,感受一下~

我们的测试如下图所示,服务A调用服务B的API,从服务A发出请求到接收到响应,期间可能存在延迟,比如网络不稳定、服务B不稳定,或因为所请求的API本身执行时间略长等等。对于作为HTTP客户端的服务A来说,是否能够异步地处理对服务B的请求与响应,也会带来明显的性能差异。我们通过简单的场景模拟一下:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

通过上一个测试,我们已经确定WebFlux-with-latency的API /hello/{latency}能够在高并发下,仍然以稳定的latency~latency+5ms的延迟做出响应,因此用来作为被调用的服务B,模拟带有延迟的服务。这样如果测试结果出现明显的差异,那么可以排除服务B的原因。

本次测试我们创建两个服务A的项目:restTemplate-as-callerwebClient-as-caller。它们也都提供URL为/hello/{latency}的API,在API的实现上都是通过Http请求服务A的/hello/{latency},返回的数据作为自己的响应。区别在于:restTemplate-as-caller使用RestTemplate作为Http客户端,webClient-as-caller使用WebClient作为Http客户端。

1)restTemplate-as-caller

使用Spring Initializr创建一个依赖“Web”的项目(也就是WebMVC项目),POM依赖:

org.springframework.boot
spring-boot-starter-web

端口号设置为8093,然后开发/hello/{latency}

HelloController.java

@RestController    public class HelloController {        private final String TARGET_HOST = "http://localhost:8092";        private RestTemplate restTemplate;        public HelloController() {  // 1            PoolingHttpClientConnectionManager connectionManager = new PoolingHttpClientConnectionManager();            connectionManager.setDefaultMaxPerRoute(1000);            connectionManager.setMaxTotal(1000);            this.restTemplate = new RestTemplate(new HttpComponentsClientHttpRequestFactory(                    HttpClientBuilder.create().setConnectionManager(connectionManager).build()            ));        }        @GetMapping("/hello/{latency}")        public String hello(@PathVariable int latency) {            return restTemplate.getForObject(TARGET_HOST + "/hello/" + latency, String.class);        }    }
  1. 由于测试过程中,RestTemplate会发出大量请求,我们在Controller的构造方法中创建一个基于Http连接池构造的RestTemplate,否则可能会把系统能给的端口用尽而出错;
  2. 使用RestTemplate请求服务B,并将响应返回。

启动服务WebFlux-with-latencyrestTemplate-as-caller

这个测试我们并不需要分析1000~10000的不同用户量场景下的响应时长的变化趋势,只是验证RestTemplate的阻塞性,所以直接测试一下6000用户,测试结果如下:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

吞吐量为1651req/sec,95%响应时长为1622ms。

与1.4.1中mvc-with-latency的6000用户的结果类似,可见RestTemplate确实是会阻塞的。好吧,其实写个小@Test就能测出来是不是阻塞的,不过我的用意不仅限于此,下边我们进行一个响应式改造。首先请回忆前边介绍的两个内容:

  1. 不知道你是否还记得在1.3.3.1的最后提过,用Spring WebMVC + Reactor(spring-boot-starter-web+reactor-core)也可以像WebFlux一样实现基于注解的响应式编程;
  2. 在1.3.2.5介绍过如何利用elastic的调度器将阻塞的调用转化为异步非阻塞的。

基于此,我们来改一下代码。首先在pom.xml中增加reactor-core

io.projectreactor
reactor-core
3.1.4.RELEASE

然后RestTemplate的调用转为异步:

@GetMapping("/hello/{latency}")    public Mono
hello(@PathVariable int latency) { return Mono.fromCallable(() -> restTemplate.getForObject(TARGET_HOST + "/hello/" + latency, String.class)) .subscribeOn(Schedulers.elastic()); }

再次测试,发现结果有了明显改善:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

吞吐量为2169 req/sec,95%响应时长为121ms。

但是,使用Schedulers.elastic()其实就相当于将每一次阻塞的RestTemplate调用调度到不同的线程里去执行,效果如下:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

因为不仅有处理请求的200个线程,还有Schedulers.elastic()给分配的工作线程,所以总的线程数量飙到了1000多个!不过在生产环境中,我们通常不会直接使用弹性线程池,而是使用线程数量可控的线程池,RestTemplate用完所有的线程后,更多的请求依然会造成排队的情况。

这一点使用Schedulers.newParallel()的调度器一测便知。

@RestController    public class HelloController {        private final String TARGET_HOST = "http://localhost:8092";        private RestTemplate restTemplate;        private Scheduler fixedPool;        public HelloController() {            PoolingHttpClientConnectionManager connectionManager = new PoolingHttpClientConnectionManager();            connectionManager.setDefaultMaxPerRoute(1000);            connectionManager.setMaxTotal(1000);            this.restTemplate = new RestTemplate(new HttpComponentsClientHttpRequestFactory(                    HttpClientBuilder.create().setConnectionManager(connectionManager).build()            ));            fixedPool = Schedulers.newParallel("poolWithMaxSize", 400); // 1        }        @GetMapping("/hello/{latency}")    //    public String hello(@PathVariable int latency) {    //        return restTemplate.getForObject(TARGET_HOST + "/hello/" + latency, String.class);    //    }        public Mono
hello(@PathVariable int latency) { return Mono.fromCallable(() -> restTemplate.getForObject(TARGET_HOST + "/hello/" + latency, String.class)) .subscribeOn(fixedPool); // 2 } }
  1. 创建一个有最大400个线程的线程池poolWithMaxSize
  2. 调度到这个线程池上。

测试时查看线程数:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

可见,最多有400个名为poolWithMaxSize的线程,RestTemplate就工作在这些线程上,相比请求处理线程多了一倍。看一下最终的测试结果:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

吞吐量2169req/sec,与弹性线程池的那次相同;95%响应时长为236ms,虽然达不到弹性线程池的效果,但是比完全同步阻塞的方式(RestTemplate在请求处理线程中执行)要好多了。

我们再看看非阻塞的WebClient表现如何吧。

2)webClient-as-caller

webClient-as-caller基于WebFlux的依赖,端口号8094,不多说,直接看Controller:

@RestController    public class HelloController {        private final String TARGET_HOST = "http://localhost:8092";        private WebClient webClient;        public HelloController() {            this.webClient = WebClient.builder().baseUrl(TARGET_HOST).build();        }        @GetMapping("/hello/{latency}")        public Mono
hello(@PathVariable int latency) { return webClient .get().uri("/hello/" + latency) .exchange() .flatMap(clientResponse -> clientResponse.bodyToMono(String.class)); }

跑一下6000用户的测试:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

吞吐量2195 req/sec,95%响应时长109ms。

关键的是,WebClient不需要大量并发的线程就可以漂亮地搞定这件事儿了:

(7)Spring WebClient与RestTemplate性能对比——响应式Spring的道法

3)总结

WebClient同样能够以少量而固定的线程数处理高并发的Http请求,在基于Http的服务间通信方面,可以取代RestTemplate以及AsyncRestTemplate。

异步非阻塞的Http客户端,请认准——WebClient~

下一节,介绍一下微服务先行者、全球最大的视频服务平台Netflix使用异步的Http客户端来改造其微服务网关的案例。

转载于:https://blog.51cto.com/liukang/2090211

你可能感兴趣的文章
〖Linux〗Linux的smb地址转换Windows格式(两者互转)
查看>>
mnesia
查看>>
python编程基础之二十一
查看>>
YouTrack Changing Database Location for EXE Distribution(windows service)
查看>>
Cooperation.GTST团队第二周项目总结
查看>>
zookeeper与kafka安装部署及java环境搭建(发布订阅模式)
查看>>
settings
查看>>
3617:Best Cow Line
查看>>
JavaScript学习总结(4)——JavaScript数组
查看>>
【kmp】hdu1171 Number Sequence
查看>>
计算机网络-自定向下方法之计算机网络和因特网
查看>>
[若有所悟]提升工作效率的一些小技巧——资源管理器篇
查看>>
BI数据库管理RPD配置
查看>>
binary-tree-maximum-path-sum(mock)
查看>>
error C2244 "无法将函数定义与现有的声明匹配"的解决方法
查看>>
自己搭建一个记笔记的环境记录(leanote)
查看>>
浏览器处理由带BOM的utf-8格式的php文件输出的HTML问题
查看>>
C++排序算法小结
查看>>
智课雅思词汇---十四、ante,anti不仅是词根还是前缀
查看>>
地址总线
查看>>