Easy way to tell if there are pending documents

2011-11-14 Thread Latter, Antoine
Hi Solr, Does anyone know of an easy way to tell if there are pending documents waiting for commit? Our application performs operations that are never safe to perform while commits are pending. We make this work by making sure that all indexing operations end in a commit, and stop the unsafe o

RE: Index format difference between 4.0 and 3.4

2011-11-15 Thread Latter, Antoine
We didn't have to re-index when we upgraded - but if you're using a master/slave setup, you won't be able to replicate from a higher version to a lower version - old solr cannot read the new indices. -Original Message- From: roz dev [mailto:rozde...@gmail.com] Sent: Monday, November 14,

RE: Easy way to tell if there are pending documents

2011-11-15 Thread Latter, Antoine
pending documents Antoine, On Solr Admin Stats page search for "docsPending".  I think this is what you are looking for. Otis Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Lucene ecosystem search :: http://search-lucene.com/ > &

RE: Easy way to tell if there are pending documents

2011-11-16 Thread Latter, Antoine
: Easy way to tell if there are pending documents You can enable the stats handler (https://issues.apache.org/jira/browse/SOLR-1750), and get inspect the json pragmatically. -- Justin "Latter, Antoine" writes: > Thank you, that does help - but I am more looking for a way t