Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 487
Yudhistira Arya Avatar asked Feb 04 '18 10:02

Yudhistira Arya


1 Answers

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

like image 87
ledniov Avatar answered Oct 16 '22 00:10

ledniov