|
[
Permlink
| « Hide
]
Jason Rutherglen added a comment - 07/Jul/08 01:13 PM
lucene-1329.patch
Jason Rutherglen made changes - 07/Jul/08 01:13 PM
Jason, have you run any scale tests (w/ many threads) to confirm whether volatile is faster than using synchronized, for this case? I'm especially curious on what happens with JRE 1.4, since with this patch it is now synchronized and volatile.
I think we should, at least in addition but perhaps instead, create a way to open a read-only IndexReader. This way no synchronization nor volatile would be necessary when accessing deletedDocs. Adding a readonly IndexReader would be really great, I'm contributing some code to Hibernate Search (integration of Lucene and Hibernate) and that
project could really benefit from that.
Right... a volatile is still "half" a synchronized in many ways, and gets more expensive as you add more cores. IAFAIK It's also something you won't see with a profiler because it involves cache flushes, not explicit high level blocking. Once we have a read-only IndexReader, if we still want the deleting-reader then we could also weaken the semantics of deleteDocument such that applications would need to synchronize themselves to guarantee visibility to another thread.
We could safely do this for a deleting-reader by pre-allocating the BitVector objects, thus eliminating the possibility of a thread seeing a partially constructed object. I took a first cut at creating an explicit read only IndexReader
(attached), which is an alternative to the first patch here. I added "boolean readOnly" to 3 of the IndexReader open methods, and reopen() also preserves readOnly-ness, and I fixed merging to open readOnly
I didn't do this one yet ... it makes me a bit nervous because it Really, I think we want to default IndexReader.open to be
Michael McCandless made changes - 08/Aug/08 07:27 PM
Right, which is why I said it was for a "deleting-reader" (which presumes the existence of read-only-readers).
Michael McCandless made changes - 19/Aug/08 10:14 AM
I'd like to get this (read-only IndexReader) into 2.4.
Michael McCandless made changes - 19/Aug/08 10:14 AM
Attached new rev of this patch. I think it's ready to commit. I'll wait a few days.
Changes:
Michael McCandless made changes - 19/Aug/08 01:06 PM
I don't think so – I haven't yet tested how much of a bottleneck this was / how much it helps that isDeleted is no longer synchronized.
I really want to get Lucene to this point, but I fear LUCENE-753 may still stand in the way since many threads can pile up when accessing the same file. Sadly, an optimized index exacerbates the situation (the polar opposite of what you'd expect when optimizing an index). On every platform except Windows, this patch combined with NIOFSDirectory ought to solve all known search-time bottlenecks. ok, I see, thanks.
At least, It resolves an issue completely for RAM based indexes. We have seen performance drop for RAM based index when we switched to MT setup with shared IndexReader, I am not yet sure what is the reason for it, problems in our code or this is indeed related to lucene. I am talking about 25-30% drop on 3 Threads on 4-Core CPU. Must measure it properly...
I just committed this. Thanks Jason!
Michael McCandless made changes - 23/Aug/08 01:47 PM
Michael McCandless made changes - 11/Oct/08 12:49 PM
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||