]
Manas Panda commented on WFLY-14421:
------------------------------------
Correct we are using the same JDK version in both wildfly-10 and wildfly-18.
Too many open file Descriptors in Wildfly-18
--------------------------------------------
Key: WFLY-14421
URL:
https://issues.redhat.com/browse/WFLY-14421
Project: WildFly
Issue Type: Task
Reporter: Manas Panda
Assignee: Brian Stansberry
Priority: Major
In the application code deployed in wildfly10, if the fileinputstream is not closed
programmatically (its a miss in the code), during the GC (G1GC) cycle, the orphan
references of the opened file input streams are closed, so the number of open file
descriptor is not growing.
However, after the upgrade of the wildfly10 to wildfly18, the file input streams which
are not closed programmatically are not getting closed during the GC (G1GC) cycle due to
which the number of open file descriptors are growing.
We agree that the input streams have to be closed programmatically in the application
code which we did now, but would like to understand the reason behind this behavior change
in wildfly18.