I had some issues with Grails and high memory usage last year when I deployed my first big grails application to production. My application does a lot of database selects, inserts, deletes and updates and executes around 10000 of them per minute with around 100 active sessions/users.
For development I did fine with 1024M HEAP. However when deployed to production memory usage increased a lot. I got OutOfMEmory exception in minutes. The first thing I did was increasing the HEAP size to 2048M and the application would now run for a week before throwing an OutOfMemoryError exception again. I also used the -XX:+UseConcMarkSweepGC Garbage collector.
I guessed there was a memory leak somewere, but I couldn't figure it out. So I installed the
Java Melody plugin to monitor memory usage. I also used JVisualVM to find out what type of object that could be eating all the memory.
After some days of monitoring it turned out that there are no memory leaks, however there was some moments of spikes were the memory usage went through the roof. Average memory usage at this time was around 1200MB. I increased the HEAP again to 3072M and now the spikes would never use more HEAP than available, but the spikes could use up to 2800MB of memory.
My application was now stable, and would run for months without any problems. However memory usage was still high and I've done some work over the months to improve this. There was two things that really helped to decrease memory usage.
The first one was easy, disable hibernate secondary cache. This is known to be helpful if you have data that changes frequently. For me this also slightly improved overall performance. This can be done in grails-app/conf/DataSource.conf
cache.use_second_level_cache=false
cache.use_query_cache=false
The second thing I did was tuning the Searchable plugin. I started with returning one thousand hits, now max hits is hundred.
Those two adjustments reduced the spikes about 75%. I've also done a lot of minor adjustments related to queries, especially reducing the amount of data a query returns.
For example I have a domain class named Issue with over 20 properties, but I only need a few of the properties when rendering to a view. It is possible to convert the results to a map like this:
Issue.executeQuery(
"select new map(i.id as id, i.title as title i.date as date) FROM Issue i"
)
Adjustments like this can improve query time, memory usage and overall performance. Hope it helps.