I have a spring boot application that used spring data. I have native queries and query methods. Apparently i'm facing a memory issue from my application. I tried doing jmap -histo to determine the class that uses a lot of resource.
On my first jmap dump this is the result (first day) -fresh start
Then on the second day this is the result
Notice the org.hibernate.hql.internal.ast.tree.Node starts to appear.
Then on the third day
The org.hibernate.hql.internal.ast.tree.Node is increasing in memory size.
Hope you can help me, or any suggestion? I haven't posted the code since I haven't isolated the one causing this. Btw, there are no operations during the night so i'm expecting garbage collection should run.