On Fri, Aug 28, 2009 at 2:04 AM, J G <skinny_joe...@hotmail.com> wrote:
> > We have multiple solr webapps all running from the same WAR file. Each > webapp is running under the same Tomcat container and I consider each webapp > the same thing as a "slice" (or "instance"). I've configured the Tomcat > container to enable JMX and when I connect using JConsole I only see the > replication handler for one of the webapps in the server. I was under the > impression each webapp gets its own replication handler. Is this not true? > > It would be nice to be able to have a JMX MBean for each replication > handler in the container so we can get all the same replication information > using JMX as in using the replication admin page for each web app. > The problem is that all Solr instances are registering themselves to the same platform mbean server (since all instances share the same tomcat and jvm). You should think about having separate mbean server for each of the solr instance by specifying unique service urls in solrconfig.xml If you setup had multiple solr cores with the same solr war file, then you'd have seen different mbeans for each core. -- Regards, Shalin Shekhar Mangar.