Re: What does refCount denotes in solr admin

2016-08-18 Thread Erick Erickson
How are you indexing? It sounds like you may be sending one document at a time. Also, another common mistake is to send commits from the client, you should either set your autocommit intervals up in solrconfig.xml or, perhaps, send one (and only one) commit at the very end of the entire indexing

Re: What does refCount denotes in solr admin

2016-08-18 Thread kshitij tyagi
how to shrink solr container thread pool?? On Thu, Aug 18, 2016 at 2:53 PM, kshitij tyagi wrote: > refcount 171 is seen when i reindex a number of documents simultaneously? > what does this means? I am observing that my indexing speeds slows down > when refcount

Re: What does refCount denotes in solr admin

2016-08-18 Thread kshitij tyagi
refcount 171 is seen when i reindex a number of documents simultaneously? what does this means? I am observing that my indexing speeds slows down when refcount increses. I am only indexing on this instance and no queries are running on it. Thanks for the information On Thu, Aug 18, 2016 at 2:20

Re: What does refCount denotes in solr admin

2016-08-18 Thread Mikhail Khludnev
When instance is idle you should see refCount=2 in solrAdmin. One count goes from coreContainer holding a core instance until reload and two comes from solrAdmin request which opens a core while it renders response. So, until you don't request this stat the refCount is 1 that somehow remind

Re: What does refCount denotes in solr admin

2016-08-17 Thread kshitij tyagi
any update?? On Wed, Aug 17, 2016 at 12:47 PM, kshitij tyagi wrote: > Hi, > > I need to understand what is refcount in stats section of solr admin. > > I am seeing refcount: 2 on my solr cores and on one of the core i am > seeing refcount:171. > > The core with

What does refCount denotes in solr admin

2016-08-17 Thread kshitij tyagi
Hi, I need to understand what is refcount in stats section of solr admin. I am seeing refcount: 2 on my solr cores and on one of the core i am seeing refcount:171. The core with refcount with higher number is having very slow indexing speed?