Re: Perm Gen issues in SolrCloud

2014-07-28 Thread Poornima Jay
Hi Nitin, Not sure of you have tried these steps. 1. Stop the Tomcat Server. 2.Find catalina.bat 3.Assign following line to JAVA_OPTS variable and add it into catalina.bat file. set JAVA_OPTS=-server -Xms512M -Xmx768M -XX:MaxPermSize=256m  4. restart On Saturday, 1 March 2014 6:02 AM, KNitin

Re: Perm Gen issues in SolrCloud

2014-02-28 Thread KNitin
Hi Furkan I have read that before but I haven't added any new classes or changed anything with my setup. I just created more collections in solr. How will that increase perm gen space ? Doesn't solr intern strings at all ? Interned strings also go to the perm gen space right? - Nitin On Fri, F

Re: Perm Gen issues in SolrCloud

2014-02-28 Thread Furkan KAMACI
Hi; Jack has an answer for a PermGen usages: "PermGen memory has to do with number of classes loaded, rather than documents. Here are a couple of pages that help explain Java PermGen issues. The bottom line is that you can increase the PermGen space, or enable unloading of classes, or at least t

Perm Gen issues in SolrCloud

2014-02-28 Thread KNitin
Hi I am seeing the Perm Gen usage increase as i keep adding more collections. What kind of strings get interned in solr? (Only schema , fields, collection metadata or the data itself?) Will Permgen space (atleast interned strings) increase proportional to the size of the data in the collections