]
Gustavo Fernandes commented on ISPN-6471:
-----------------------------------------
I've sent a PR to avoid using IO threads, relying on netty internal executor
Avoid blocking on Netty IO threads
----------------------------------
Key: ISPN-6471
URL:
https://issues.jboss.org/browse/ISPN-6471
Project: Infinispan
Issue Type: Enhancement
Components: Server
Reporter: Gustavo Fernandes
Currently all cache operations are being executed in the {{NioEventLoopGroup}}.
Threads from this event loop group are responsible to process IO events from one or more
channels and if it's blocked by one cache operation, all channels will stop processing
events.
We should not block on IO threads but rather on a separate executor.