rschmitt commented on PR #3235:
URL: https://github.com/apache/cxf/pull/3235#issuecomment-4747686296

   > This, of course, basically means the i/o reactor event loop will be 
running hot.
   
   It also means the event loop thread will block indefinitely while reading 
from `fis`, which will stall all IO on that thread. In the general case, this 
whole arrangement is fundamentally unfixable without an additional thread 
(which on Java 25 could be a virtual thread). The fact that this works at all 
leads me to wonder whether `fis` is reliably backed by some sort of 
non-blocking data source like a file or an in-memory buffer.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to