Thanks Mike The use of fsync() might be the answer to my problem, because I have installed Solr for lack of other possibilities in a zone on Solaris with ZFS which slows down when many fsync() calls are made. This will be fixed in a upcoming release of Solaris, but I will move as soon as possible the Solr instances to another server with a different file system. Would the use of a different file system than ext3 boost the performance?
Uwe On Fri, Oct 3, 2008 at 8:28 PM, Michael McCandless < [EMAIL PROTECTED]> wrote: > > Yonik Seeley wrote: > > On Fri, Oct 3, 2008 at 1:56 PM, Uwe Klosa <[EMAIL PROTECTED]> wrote: >> >>> I have a big problem with one of my solr instances. A commit can take up >>> to >>> 5 minutes. This time does not depend on the number of documents which are >>> updated. The difference for 1 or 100 updated documents is only a few >>> seconds. >>> >> >> Since Solr's commit logic really hasn't changed, I wonder if this >> could be lucene related somehow. >> > > Lucene's commit logic has changed: we now fsync() each file in the index to > ensure all bytes are on stable storage, before returning. > > But I can't imagine that taking 5 minutes, unless there are somehow a great > many files added to the index? > > Uwe, what filesystem are you using? > > Yonik, when Solr commits what does it actually do? > > Mike >