The Xpert.ivy Server runs a Garbage Collection every 10 Minutes. This is needed to Free Memory in the Rich Dialog Clients.
It may be that this Garbage Collections blocks the Rich Dialog UI for a few seconds.<br/>seconds if you are using Axon.ivy version 5.1 and older.<br/>
If this is the case you can try to use continuous Garbage Collection. This will slow down the Server a little bit but it will not block it every 10 minute for garbage collection.<br/>Collection.<br/>
Add the following configuration to the XpertIvyServer.ilc File (XpertIvyServerService.ilc if you run the server as a service) in the bin directory of your Server installation to use continuous garbage collection:
ivy.garbage.collector.options=-XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSParallelRemarkEnabled -XX:+CMSClassUnloadingEnabled -XX:CMSInitiatingOccupancyFraction=20 -XX:+DisableExplicitGC-XX:+ExplicitGCInvokesConcurrent -Dsun.rmi.dgc.server.gcInterval=600000 -Dsun.rmi.dgc.client.gcInterval=600000
If your server is already running at the limit of cpu and memory usage this will considerably slow down your system.
Don't use this option if you have no problem with blocking RichDialogs. Be prepared to roll back to the old configuration as this option may also make it worse.