How to set event-loop pool size in Spring Webflux / WebClient?

一个人想着一个人 提交于 2019-11-29 02:52:25

问题


In multi-reactor framework such as Vert.X we can set the number of event-loop threads, e.g.:

final VertxOptions vertxOptions = new VertxOptions();
vertxOptions.setEventLoopPoolSize(16);
final Vertx myVertx = Vertx.vertx(vertxOptions);

How to do the equivalent in Spring Boot 2 WebFlux / WebClient?


回答1:


You have two options:

  1. Override ReactiveWebServerFactory bean with a customizer that applies event loop resources config:

    @Bean
    public ReactiveWebServerFactory reactiveWebServerFactory() {
        NettyReactiveWebServerFactory factory = new NettyReactiveWebServerFactory();
        factory.addServerCustomizers(builder -> builder.loopResources(LoopResources.create("my-http", 16, true)));
    
        return factory;
    }
    
  2. Or use -Dreactor.ipc.netty.workerCount=16 environment variable. By default it's value is set to Math.max(availableProcessors(), 4). Example: java -jar your-app.jar -Dreactor.ipc.netty.workerCount=16



来源:https://stackoverflow.com/questions/48607114/how-to-set-event-loop-pool-size-in-spring-webflux-webclient

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!