Re: [jira] Created: (LUCENE-721) Code coverage reports

2006-11-22 Thread Grant Ingersoll
On Nov 21, 2006, at 2:01 AM, Michael Busch (JIRA) wrote: Furthermore people could take a look in the code coverage reports to figure out where work needs to be done, i. e. where additional testcases are neccessary. It would be nice if we could add a page to the Lucene website showing

[jira] Commented: (LUCENE-707) Lucene Java Site docs

2006-11-22 Thread Grant Ingersoll (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-707?page=comments#action_12451955 ] Grant Ingersoll commented on LUCENE-707: Any last comments on the new site? I am going to commit these changes within the week (per the 4 items laid out

[jira] Updated: (LUCENE-550) InstantiatedIndex - faster but memory consuming index

2006-11-22 Thread Karl Wettin (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-550?page=all ] Karl Wettin updated LUCENE-550: --- Summary: InstantiatedIndex - faster but memory consuming index (was: InstanciatedIndex - faster but memory consuming index) Affects Version/s:

[jira] Commented: (LUCENE-707) Lucene Java Site docs

2006-11-22 Thread Yonik Seeley (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-707?page=comments#action_12451963 ] Yonik Seeley commented on LUCENE-707: - New site update instructions will be the same as: http://wiki.apache.org/solr/Website_Update_HOWTO We might want a

[jira] Resolved: (LUCENE-720) Unit tests TestBackwardsCompatibility and TestIndexFileDeleter might fail depending on JVM

2006-11-22 Thread Michael McCandless (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-720?page=all ] Michael McCandless resolved LUCENE-720. --- Fix Version/s: 2.1 Resolution: Fixed OK I was able to reproduce the failure using IBMs JDK 5.0 on Linux. I changed the tests to load the

[jira] Commented: (LUCENE-720) Unit tests TestBackwardsCompatibility and TestIndexFileDeleter might fail depending on JVM

2006-11-22 Thread Michael Busch (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-720?page=comments#action_12452001 ] Michael Busch commented on LUCENE-720: -- The tests now pass on my machine too. Good job, Mike! Thanks. Unit tests TestBackwardsCompatibility and

Re: [jira] Created: (LUCENE-721) Code coverage reports

2006-11-22 Thread Doug Cutting
Grant Ingersoll wrote: I would be more than happy to put 'em in once I get my zones account and we decide on which tool to use. You now have a zones account. Doug - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[jira] Commented: (LUCENE-707) Lucene Java Site docs

2006-11-22 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-707?page=comments#action_12452006 ] Doug Cutting commented on LUCENE-707: - The recently clarified Apache release policy at http://www.apache.org/dev/release.html states that we should not link

Re: [jira] Resolved: (LUCENE-709) [PATCH] Enable application-level management of IndexWriter.ramDirectory size

2006-11-22 Thread Ning Li
I was away so I'm catching up. If this (occasional large documents consume too much memory) happens to a few applications, should it be solved in IndexWriter? A possible design could be: First, in addDocument(), compute the byte size of a ram segment after the ram segment is created. In the

[jira] Commented: (LUCENE-720) Unit tests TestBackwardsCompatibility and TestIndexFileDeleter might fail depending on JVM

2006-11-22 Thread Michael McCandless (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-720?page=comments#action_12452010 ] Michael McCandless commented on LUCENE-720: --- Thank you for tracking this down! I did not realize field number assinment was volatile across JREs.

Re: [jira] Commented: (LUCENE-721) Code coverage reports

2006-11-22 Thread Michael Busch
Chris Hostetter wrote: To throw another twist onto things, it would appear that the ASF has a License for Clover 1.3.2 donated by Cenqua that Committers have access to (see committers/donated-licenses/clover in SVN) ... it's not clear to me if that License would allow for auto generated reports

Re: [jira] Resolved: (LUCENE-709) [PATCH] Enable application-level management of IndexWriter.ramDirectory size

2006-11-22 Thread Michael Busch
Ning Li wrote: I was away so I'm catching up. If this (occasional large documents consume too much memory) happens to a few applications, should it be solved in IndexWriter? A possible design could be: First, in addDocument(), compute the byte size of a ram segment after the ram segment is

Re: [jira] Commented: (LUCENE-721) Code coverage reports

2006-11-22 Thread Simon Willnauer
I agree with Michael, if there is a clover licence we should use it. One major advantage of clover is the ide support for eclipse and netbeans. Emma has no Eclipse support yet and a old not maintained netbeans plugin. There is a ASF donated clover license under:

Re: [jira] Resolved: (LUCENE-709) [PATCH] Enable application-level management of IndexWriter.ramDirectory size

2006-11-22 Thread Chuck Williams
Michael Busch wrote on 11/22/2006 08:47 AM: Ning Li wrote: A possible design could be: First, in addDocument(), compute the byte size of a ram segment after the ram segment is created. In the synchronized block, when the newly created segment is added to ramSegmentInfos, also add its byte

[jira] Commented: (LUCENE-565) Supporting deleteDocuments in IndexWriter (Code and Performance Results Provided)

2006-11-22 Thread Ning Li (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-565?page=comments#action_12452039 ] Ning Li commented on LUCENE-565: With the recent commits to IndexWriter, this patch no longer applies cleanly. The 5 votes for this issue encourages me to submit

Re: [jira] Resolved: (LUCENE-709) [PATCH] Enable application-level management of IndexWriter.ramDirectory size

2006-11-22 Thread Ning Li
There is a flaw in this approach as you exceed the threshold before flushing. With very large documents, that can cause an OOM. This is a good point. I agree that it would be better to do this in IndexWriter, but more machinery would be needed. Lucene would need to estimate the size of the

Making RAMDirectory non final?

2006-11-22 Thread Michael McCandless
Hi, I'm working on a unit test for: http://issues.apache.org/jira/browse/LUCENE-702 which is the disk full during addIndexes() can corrupt index issue. I think the simplest way to do this is to subclass RAMDirectory to create a MockDiskFullRAMDirectory class (and a corresponding

Re: Making RAMDirectory non final?

2006-11-22 Thread Doug Cutting
Michael McCandless wrote: But to do this I'd need to make RAMDirectory non-final. Any objections to this? I can think of no reason it must be final. Doug - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[jira] Resolved: (LUCENE-722) DEFAULT spelled DEFALT in MoreLikeThis.java

2006-11-22 Thread Daniel Naber (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-722?page=all ] Daniel Naber resolved LUCENE-722. - Resolution: Fixed Okay, unless there's a third version of that file it's fixed now :-) DEFAULT spelled DEFALT in MoreLikeThis.java

[jira] Commented: (LUCENE-707) Lucene Java Site docs

2006-11-22 Thread Otis Gospodnetic (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-707?page=comments#action_12452157 ] Otis Gospodnetic commented on LUCENE-707: - Grant, you should remove links to lucene4C (dead), and add links to Lucene.NET in the Incubator. I see 2 Lucene

[jira] Commented: (LUCENE-707) Lucene Java Site docs

2006-11-22 Thread Otis Gospodnetic (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-707?page=comments#action_12452158 ] Otis Gospodnetic commented on LUCENE-707: - Oh, and don't we want tabs for individual sub-projects at the top, like on lucene.apache.org today? Lucene