On Thu, Mar 12, 2009 at 9:38 PM, Jeremy Carroll
<jeremy.carr...@networkedinsights.com> wrote:
> If that's the case it is causing out of disk issues with Solr. We have a 187m 
> document count index which is about ~200Gb in size. Over a period of about a 
> week after optimizations, etc... the open file but deleted count grows very 
> large. Causing the system to not be able to optimize due to lack of disk 
> space. Also new documents that are indexed are not showing up in search 
> results.

Multiply the index size by 3 to get the max disk space.
- 1 for the index currently open for searching
- up to 1 for new segments written by the index writer (including merges)
- up to 1 when the index writer does major merges or optimizes (the
index writer can't delete the old segment files until it's sure that
the new index has been written successfully).

That said, what you are seeing could be normal, or could be a bug.

-Yonik

Reply via email to