Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We're refactoring our Lucene host (Lucene.NET 2.9.2), and are implementing Lucene NRT (Near Realtime).

What is the best time/threshold to commit the changes to disk? Is there a golden rule? If it is when the internal ramdisk holds a certain amount of data, how do I get the size?

Once a commit happens we update our database, so I'm not that fearfull of power failures (once the process starts again, it will reindex those documents that have not been committed).

Any pointers would be great!

share|improve this question
I have just implemented what sounds like the same scheme in our system. I decided to do a commit when I have over 1000 uncommitted documents. I think the number really depends on how many docs/sec you will be adding. I am also not sure if I can run the commit on a different thread than where I am adding the docs. – goalie7960 Sep 13 '11 at 13:36
So how fast do you get to 1000 docs? And how big are these docs on average? Our docs are about 200kb. – Gidon Sep 14 '11 at 10:44
2  
Our docs are not that large. Maybe a couple of kb each. When the system is running at full capacity, we can get to 1000 docs in about 5 minutes or so. – goalie7960 Sep 19 '11 at 13:30
If you want to get some points for that, can you add your comment into an answer, so I can also "close" this question. – Gidon Sep 20 '11 at 7:31

1 Answer

up vote 1 down vote accepted

I have just implemented what sounds like the same scheme in our system. I decided to do a commit when I have over 1000 uncommitted documents. I think the number really depends on how many docs/sec you will be adding. I am also not sure if I can run the commit on a different thread than where I am adding the docs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.