how to increase number of active connections in spring reactor webflux to support more server sent events(sse) connections?

Viewed 35

we are using spring boot webflux with netty. our use case needs us to make server sent event connection with spring boot server which is netty underneath. But we see only 500 request can be made to server. if we need to increase beyond what is that configuration neeeds to be used.

As of now, we have already tried following. But none of them really helping us to increase number of connection beyond 500.

reactor.netty.connection.provider.max.connections=2000
reactor.netty.pool.maxConnections=2000
reactor.netty.connection.provider.total.connections=2000
reactor.netty.connection.provider.active.connections=2000

also tried configuring them as -D parameter as well. please help with this?

0 Answers
Related