So, we've been running CF11 on our development servers for nearly a year as we worked out several issues. Thinking all was well and good we've deployed it to our production servers only to have a whole new set of issues pop up. Most concerning is an ugly IIS error that appears out of no where: HTTP Error 500.0 - Metaspace
The Application log is filed with entries like: "Metaspace The specific sequence of files included or processed is: C:\BlahBlahBlah"
I have never seen this one before.
Googling this has come up with few results. What I did find is that it is a new memory system in Java 8 supposedly to rid us of Out of Memory errors?
So, I'm running Win2008, IIS7, CF11 with all current updates. Server is running in the cloud on a VM with 8GB RAM and 8 CPUs.
My JVM args were: "java.args=-server -Xms256m -Xmx6144m -XX:MaxMetaspaceSize=128m"
I came across this message string:
...and have changed my Java args to: "java.args=-server -Xms1024m -Xmx5120m -XX:MaxMetaspaceSize=512m"
Still waiting to see if this has a decent effect.
Anyone else run into this? Suggestions?