RE: [JENKINS] Lucene-Solr-4.x-MacOSX (64bit/jdk1.7.0) - Build # 45 - Still Failing!

2013-01-07 Thread Uwe Schindler
Do you mean VM = vIrtualbox or VM = Java VM. Because the double free malloc bugs also oocur on real MacOSX machines with Java 7u10 (not Apple's Java 6 - until now). - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original

Re: [JENKINS] Lucene-Solr-4.x-MacOSX (64bit/jdk1.7.0) - Build # 45 - Still Failing!

2013-01-07 Thread Dawid Weiss
I meant the Java VM, it probably uses stdlibc malloc; the paper about it is here: http://phk.freebsd.dk/pubs/malloc.pdf D. On Mon, Jan 7, 2013 at 11:04 AM, Uwe Schindler u...@thetaphi.de wrote: Do you mean VM = vIrtualbox or VM = Java VM. Because the double free malloc bugs also oocur on real

RE: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Uwe Schindler
I think the warning may be misleading in that case. But an API the returns/wants package private classes is broken and needs fixing – because nobody can ever call this class through the public API (because the symbols are unknown to the compiler). In your case the fix was to hide the

[jira] [Commented] (LUCENE-4661) Reduce default maxMerge/ThreadCount for ConcurrentMergeScheduler

2013-01-07 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4661?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545824#comment-13545824 ] Michael McCandless commented on LUCENE-4661: You can change the values, just

Re: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Shai Erera
It was helpful in this case, but I was referring to when you put a {@link PackagePrivateClass} in javadocs. That's allowed, the generated jdocs don't include any link, just 'PackagePrivateClass' text. However, documentation-lint will fail in that case. Shai On Mon, Jan 7, 2013 at 1:44 PM, Uwe

Re: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Dawid Weiss
I think what Uwe meant to say is that it's not a technical error but a logical one: why would you want to expose an internal (package private) class in a public JavaDoc if nobody should be able to use it? Dawid On Mon, Jan 7, 2013 at 1:01 PM, Shai Erera ser...@gmail.com wrote: It was helpful in

[jira] [Commented] (LUCENE-4661) Reduce default maxMerge/ThreadCount for ConcurrentMergeScheduler

2013-01-07 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4661?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545839#comment-13545839 ] Uwe Schindler commented on LUCENE-4661: --- Is there maybe the possibility to find out

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread B.Nicolotti (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545845#comment-13545845 ] B.Nicolotti commented on LUCENE-4467: - Hello, we put in test only one web app writing

RE: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Uwe Schindler
I think it's also a technical error (on the API side! Not on the javadocs side - we just found this error through parsing the javadocs). A method returning a (package-)private symbol or accepting a (package-)private symbol as parameter is broken, because you cannot call it without complier

Re: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Robert Muir
On Mon, Jan 7, 2013 at 1:38 AM, Shai Erera ser...@gmail.com wrote: I don't like this failure. CategoryPathUtils contains some {@link CharBlockArray} mentions, while the latter is package-private. When I run 'ant javadocs' the generated javadocs just include the text CharBlockArray with no

Re: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Shai Erera
bq. How can it not be a true error?! If you @link to a package-private class in a javadoc, it DOES NOT create a link, but rather just writes the plain class's name. In fact, the result of {@link PackagePrivateClass} is the same as {@code PackagePrivateClass}. At least, I ran 'ant javadocs' and

Re: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Robert Muir
On Mon, Jan 7, 2013 at 7:54 AM, Shai Erera ser...@gmail.com wrote: bq. How can it not be a true error?! If you @link to a package-private class in a javadoc, it DOES NOT create a link, but rather just writes the plain class's name. In fact, the result of {@link PackagePrivateClass} is the

Re: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Shai Erera
I guess you didn't read past that comment :). I wrote that I don't know how documentation-lint works and whether it broke on the method signature or the {@link}. Shai On Mon, Jan 7, 2013 at 3:38 PM, Robert Muir rcm...@gmail.com wrote: On Mon, Jan 7, 2013 at 7:54 AM, Shai Erera

Re: [JENKINS] Lucene-Solr-trunk-MacOSX (64bit/jdk1.7.0) - Build # 58 - Failure!

2013-01-07 Thread Robert Muir
broken links detection just looks for broken links. thats why there is no argument about whether the failure is true or false. it doesnt know fairness and justice. it only knows filenotfoundexception. On Mon, Jan 7, 2013 at 8:40 AM, Shai Erera ser...@gmail.com wrote: I guess you didn't read

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread B.Nicolotti (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545890#comment-13545890 ] B.Nicolotti commented on LUCENE-4467: - I've been able to run checkindex on corrupted

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545897#comment-13545897 ] Michael McCandless commented on LUCENE-4467: Can you post the IndexWriter

[jira] [Commented] (SOLR-4016) Deduplication is broken by partial update

2013-01-07 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4016?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545903#comment-13545903 ] Shalin Shekhar Mangar commented on SOLR-4016: - bq. I think we should simply

[jira] [Created] (SOLR-4279) Wrong exception message if version field is multivalued

2013-01-07 Thread Shalin Shekhar Mangar (JIRA)
Shalin Shekhar Mangar created SOLR-4279: --- Summary: Wrong exception message if version field is multivalued Key: SOLR-4279 URL: https://issues.apache.org/jira/browse/SOLR-4279 Project: Solr

[jira] [Commented] (SOLR-4223) jetty8 with solr4.0: In jetty.xml maxFormContentSize configuration needs Fixing

2013-01-07 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545905#comment-13545905 ] Shawn Heisey commented on SOLR-4223: Just received an email from eclipse bugzilla - a

[jira] [Updated] (SOLR-4279) Wrong exception message if version field is multivalued

2013-01-07 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4279?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar updated SOLR-4279: Attachment: SOLR-4279.patch Wrong exception message if version field is

[jira] [Commented] (SOLR-4279) Wrong exception message if version field is multivalued

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545908#comment-13545908 ] Commit Tag Bot commented on SOLR-4279: -- [trunk commit] Shalin Shekhar Mangar

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread B.Nicolotti (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545909#comment-13545909 ] B.Nicolotti commented on LUCENE-4467: - I think to have this we should initialize the

[jira] [Resolved] (SOLR-4279) Wrong exception message if version field is multivalued

2013-01-07 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4279?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar resolved SOLR-4279. - Resolution: Fixed Wrong exception message if version field is multivalued

[jira] [Commented] (SOLR-4279) Wrong exception message if version field is multivalued

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545913#comment-13545913 ] Commit Tag Bot commented on SOLR-4279: -- [branch_4x commit] Shalin Shekhar Mangar

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread B.Nicolotti (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545917#comment-13545917 ] B.Nicolotti commented on LUCENE-4467: - I've addede this line:

[jira] [Commented] (SOLR-4223) jetty8 with solr4.0: In jetty.xml maxFormContentSize configuration needs Fixing

2013-01-07 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545920#comment-13545920 ] Uwe Schindler commented on SOLR-4223: - Hi, I am not sure, but this problem was fixed in

[jira] [Comment Edited] (SOLR-4223) jetty8 with solr4.0: In jetty.xml maxFormContentSize configuration needs Fixing

2013-01-07 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545920#comment-13545920 ] Uwe Schindler edited comment on SOLR-4223 at 1/7/13 2:37 PM: -

[jira] [Commented] (SOLR-4265) Fix decoding of GET/POST parameters for servlet containers with non-UTF-8 URL parsing (Tomcat)

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545926#comment-13545926 ] Commit Tag Bot commented on SOLR-4265: -- [trunk commit] Uwe Schindler

[jira] [Commented] (SOLR-4265) Fix decoding of GET/POST parameters for servlet containers with non-UTF-8 URL parsing (Tomcat)

2013-01-07 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545927#comment-13545927 ] Uwe Schindler commented on SOLR-4265: - I committed the removal of the Jetty-specifi

[jira] [Commented] (SOLR-4265) Fix decoding of GET/POST parameters for servlet containers with non-UTF-8 URL parsing (Tomcat)

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545930#comment-13545930 ] Commit Tag Bot commented on SOLR-4265: -- [branch_4x commit] Uwe Schindler

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545960#comment-13545960 ] Michael McCandless commented on LUCENE-4467: I think that should do the

[jira] [Commented] (LUCENE-4663) IndexSearcher.document() should not be final

2013-01-07 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4663?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545964#comment-13545964 ] Michael McCandless commented on LUCENE-4663: +1

[jira] [Commented] (SOLR-4277) Spellchecker sometimes falsely reports a spelling error and correction

2013-01-07 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4277?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545976#comment-13545976 ] James Dyer commented on SOLR-4277: -- Jack, Can you take a look at

will Lucene seek past the end of an IndexInput?

2013-01-07 Thread Stuart Halloway
I have implemented a custom Lucene directory, and I think I am seeing Lucene's ConjunctionScorer seek off the end of IndexInput, which I have implemented to throw an exception. One example stack trace leading to this is: at

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545982#comment-13545982 ] James Dyer commented on SOLR-4278: -- The semantics of the correctlySpelled flag, depend on

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread Markus Jelsma (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545986#comment-13545986 ] Markus Jelsma commented on SOLR-4278: - {quote} I could see a possible enhancement being

Re: will Lucene seek past the end of an IndexInput?

2013-01-07 Thread Michael McCandless
Hmm good question! Are you seeing ConjunctionScorer seek to exactly the end-of-file (ie, == length), or beyond it? Mike McCandless http://blog.mikemccandless.com On Mon, Jan 7, 2013 at 10:57 AM, Stuart Halloway stuart.hallo...@gmail.com wrote: I have implemented a custom Lucene directory, and

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13545995#comment-13545995 ] Adrien Grand commented on LUCENE-4643: -- I made some tests with my compressed

[jira] [Commented] (SOLR-4260) Inconsistent numDocs between leader/replica

2013-01-07 Thread Markus Jelsma (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546000#comment-13546000 ] Markus Jelsma commented on SOLR-4260: - I tried to reproduce this twice with today's

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread B.Nicolotti (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546001#comment-13546001 ] B.Nicolotti commented on LUCENE-4467: - Maybe it would be better to use

[jira] [Commented] (LUCENE-4467) SegmentReader.loadDeletedDocs FileNotFoundExceptio load _hko_7.del - corrupted index

2013-01-07 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546006#comment-13546006 ] Michael McCandless commented on LUCENE-4467: setDefaultInfoStream is a bit

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546007#comment-13546007 ] Robert Muir commented on LUCENE-4643: - I'm confused how the baked-in zig-zag in the

Re: will Lucene seek past the end of an IndexInput?

2013-01-07 Thread Stuart Halloway
Beyond it, and it seems to read after that too. I am re-running the (large, cumbersome) test case I have in hand with the infoStream spout turned on and will be back with more detail in a bit... On Mon, Jan 7, 2013 at 11:08 AM, Michael McCandless luc...@mikemccandless.com wrote: Hmm good

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546017#comment-13546017 ] Adrien Grand commented on LUCENE-4643: -- bq. actually i'm confused why we need it at

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread Jack Krupansky (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546024#comment-13546024 ] Jack Krupansky commented on SOLR-4278: -- I'll retest my scenario - I think that I did

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546026#comment-13546026 ] Robert Muir commented on LUCENE-4643: - You are right. Hmm I'm not sure i get it for

[jira] [Commented] (SOLR-4260) Inconsistent numDocs between leader/replica

2013-01-07 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546027#comment-13546027 ] Mark Miller commented on SOLR-4260: --- Thanks - would be good to make sure this is okay.

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread Jack Krupansky (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546032#comment-13546032 ] Jack Krupansky commented on SOLR-4278: -- James, I take your comments, but still... if

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546038#comment-13546038 ] Adrien Grand commented on LUCENE-4643: -- All bits are currently used (one to say

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546043#comment-13546043 ] Robert Muir commented on LUCENE-4643: - Well i guess my main concern is to double

[jira] [Commented] (SOLR-656) better error message when data/index is completely empty

2013-01-07 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-656?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546044#comment-13546044 ] Shawn Heisey commented on SOLR-656: --- Solr 3.6 still blows up (saying it can't find the

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546051#comment-13546051 ] Adrien Grand commented on LUCENE-4643: -- bq. just because of the silliness in

[jira] [Created] (LUCENE-4664) oal.codec.compressing: Make Compressor and Decompressor public

2013-01-07 Thread Adrien Grand (JIRA)
Adrien Grand created LUCENE-4664: Summary: oal.codec.compressing: Make Compressor and Decompressor public Key: LUCENE-4664 URL: https://issues.apache.org/jira/browse/LUCENE-4664 Project: Lucene -

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546067#comment-13546067 ] James Dyer commented on SOLR-4278: -- Jack, In your example, did you have

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546072#comment-13546072 ] James Dyer commented on SOLR-4278: -- {quote} it would be even better to calculate the ratio

[jira] [Updated] (LUCENE-4664) oal.codec.compressing: Make Compressor and Decompressor public

2013-01-07 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrien Grand updated LUCENE-4664: - Attachment: LUCENE-4664.patch Patch. I moved DummyCompressingCodec to

[jira] [Commented] (LUCENE-4643) PackedInts: convenience classes to write blocks of packed ints

2013-01-07 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546096#comment-13546096 ] Robert Muir commented on LUCENE-4643: - You're right: I forgot about the real

[jira] [Commented] (LUCENE-4663) IndexSearcher.document() should not be final

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4663?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546107#comment-13546107 ] Commit Tag Bot commented on LUCENE-4663: [trunk commit] Robert Muir

[jira] [Updated] (SOLR-3982) Admin UI: Various Dataimport Improvments

2013-01-07 Thread Stefan Matheis (steffkes) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3982?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Matheis (steffkes) updated SOLR-3982: Assignee: Stefan Matheis (steffkes) Description: Started with

[jira] [Updated] (SOLR-3982) Admin UI: Various Dataimport Improvements

2013-01-07 Thread Stefan Matheis (steffkes) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3982?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Matheis (steffkes) updated SOLR-3982: Summary: Admin UI: Various Dataimport Improvements (was: Admin UI: Various

[jira] [Updated] (SOLR-3982) Admin UI: Various Dataimport Improvements

2013-01-07 Thread Stefan Matheis (steffkes) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3982?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Matheis (steffkes) updated SOLR-3982: Attachment: SOLR-3982.patch Admin UI: Various Dataimport Improvements

[jira] [Resolved] (LUCENE-4663) IndexSearcher.document() should not be final

2013-01-07 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4663?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved LUCENE-4663. - Resolution: Fixed Fix Version/s: 5.0 4.1

[jira] [Commented] (SOLR-3876) Solr Admin UI is completely dysfunctional on IE 9

2013-01-07 Thread Stefan Matheis (steffkes) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546115#comment-13546115 ] Stefan Matheis (steffkes) commented on SOLR-3876: - Even if not specifically

[jira] [Commented] (LUCENE-4663) IndexSearcher.document() should not be final

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4663?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546117#comment-13546117 ] Commit Tag Bot commented on LUCENE-4663: [branch_4x commit] Robert Muir

Re: [jira] [Commented] (SOLR-4112) Dataimporting with SolrCloud Fails

2013-01-07 Thread sausarkar
We are also hitting this DIH issue in 4.1 this issue was not happening in the 4.0 release. Please let us know when this will be resolved, this is delaying our SolrCloud implementation release. btw... We tried the night release from 1/1/2013 but this issue is not resolved. Thanks. -- View this

[jira] [Commented] (SOLR-4226) Extract fl parsing code out of ReturnFields constructor

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4226?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546128#comment-13546128 ] Commit Tag Bot commented on SOLR-4226: -- [trunk commit] Robert Muir

[jira] [Resolved] (SOLR-4226) Extract fl parsing code out of ReturnFields constructor

2013-01-07 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4226?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved SOLR-4226. --- Resolution: Fixed Fix Version/s: 5.0 4.1 Thanks Ryan!

[jira] [Commented] (SOLR-4226) Extract fl parsing code out of ReturnFields constructor

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4226?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546153#comment-13546153 ] Commit Tag Bot commented on SOLR-4226: -- [branch_4x commit] Robert Muir

[jira] [Commented] (SOLR-4265) Fix decoding of GET/POST parameters for servlet containers with non-UTF-8 URL parsing (Tomcat)

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546154#comment-13546154 ] Commit Tag Bot commented on SOLR-4265: -- [trunk commit] Uwe Schindler

[jira] [Commented] (SOLR-2201) DIH - Support specific timezones with formatDate function

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-2201?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546155#comment-13546155 ] Commit Tag Bot commented on SOLR-2201: -- [trunk commit] James Dyer

[jira] [Commented] (SOLR-4265) Fix decoding of GET/POST parameters for servlet containers with non-UTF-8 URL parsing (Tomcat)

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546157#comment-13546157 ] Commit Tag Bot commented on SOLR-4265: -- [branch_4x commit] Uwe Schindler

[jira] [Commented] (SOLR-2201) DIH - Support specific timezones with formatDate function

2013-01-07 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-2201?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546161#comment-13546161 ] Commit Tag Bot commented on SOLR-2201: -- [branch_4x commit] James Dyer

[jira] [Resolved] (SOLR-2201) DIH - Support specific timezones with formatDate function

2013-01-07 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-2201?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Dyer resolved SOLR-2201. -- Resolution: Fixed Fix Version/s: 5.0 4.1 Assignee: James Dyer

Re: will Lucene seek past the end of an IndexInput?

2013-01-07 Thread Stuart Halloway
Still no joy isolating, increasingly convinced the problem is in my code. The overseeks are always in the .frq files, and always modest, e.g. 10% past the end, not 1000%. Always from the ConjunctionScorer -- I can search for every word in the index in isolation without hitting the problem. Any

Re: [jira] [Commented] (SOLR-4112) Dataimporting with SolrCloud Fails

2013-01-07 Thread Mark Miller
You might try the supplied patch against your 4.1 checkout. Manual verification that it works might prompt a faster commit. Hopefully Shalin or Erick or James will be able to get to it soon. - Mark On Jan 2, 2013, at 6:29 PM, sausarkar sausar...@ebay.com wrote: We are also hitting this DIH

[jira] [Commented] (SOLR-4260) Inconsistent numDocs between leader/replica

2013-01-07 Thread Markus Jelsma (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546196#comment-13546196 ] Markus Jelsma commented on SOLR-4260: - Yes, we see that behaviour all the time but it

[jira] [Updated] (SOLR-4208) Refactor edismax query parser

2013-01-07 Thread JIRA
[ https://issues.apache.org/jira/browse/SOLR-4208?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tomás Fernández Löbbe updated SOLR-4208: Attachment: SOLR-4208.patch Other minor change, the decision on whether to use the

[jira] [Commented] (SOLR-4208) Refactor edismax query parser

2013-01-07 Thread Markus Jelsma (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4208?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546242#comment-13546242 ] Markus Jelsma commented on SOLR-4208: - Very nice +1 Refactor edismax

[jira] [Commented] (SOLR-4243) dataimporter -- option to clear/reset status screen

2013-01-07 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4243?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546254#comment-13546254 ] Shawn Heisey commented on SOLR-4243: Additional note - goals and motivations: I wrote

[jira] [Updated] (SOLR-1782) stats.facet assumes FieldCache.StringIndex - fails horribly on multivalued fields

2013-01-07 Thread David Christianson (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1782?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Christianson updated SOLR-1782: - Attachment: SOLR-1782.2013-01-07.patch New patch, found bug using Solr 4 patch in

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread Markus Jelsma (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546306#comment-13546306 ] Markus Jelsma commented on SOLR-4278: - Yes, something like that. It would be helpful if

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546322#comment-13546322 ] James Dyer commented on SOLR-4278: -- Markus, Put that way, this does seem like a desirable

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546325#comment-13546325 ] James Dyer commented on SOLR-4278: -- Markus, You could work around your situation also, if

Suggestion words in FuzzyQuery

2013-01-07 Thread algebra
Somebody know how get suggestion words using FuzzyQuery class? -- View this message in context: http://lucene.472066.n3.nabble.com/Suggestion-words-in-FuzzyQuery-tp4031354.html Sent from the Lucene - Java Developer mailing list archive at Nabble.com.

[jira] [Created] (SOLR-4280) spellcheck.maxResultsForSuggest based on filter query results

2013-01-07 Thread Markus Jelsma (JIRA)
Markus Jelsma created SOLR-4280: --- Summary: spellcheck.maxResultsForSuggest based on filter query results Key: SOLR-4280 URL: https://issues.apache.org/jira/browse/SOLR-4280 Project: Solr

Re: Suggestion words in FuzzyQuery

2013-01-07 Thread Michael McCandless
Use DirectSpellChecker? That's basically FuzzyQuery without matching the documents ... Mike McCandless http://blog.mikemccandless.com On Mon, Jan 7, 2013 at 5:12 PM, algebra fabianoc...@gmail.com wrote: Somebody know how get suggestion words using FuzzyQuery class? -- View this message

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread Markus Jelsma (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546334#comment-13546334 ] Markus Jelsma commented on SOLR-4278: - Thanks James. We can indeed work around the

Re: will Lucene seek past the end of an IndexInput?

2013-01-07 Thread Michael McCandless
On Mon, Jan 7, 2013 at 2:34 PM, Stuart Halloway stuart.hallo...@gmail.com wrote: Still no joy isolating, increasingly convinced the problem is in my code. The overseeks are always in the .frq files, and always modest, e.g. 10% past the end, not 1000%. Always from the ConjunctionScorer -- I can

Re: Suggestion words in FuzzyQuery

2013-01-07 Thread algebra
Thanks Mike McCandless, but I would like know how works DirectSpellChecker, I'd like to see a complete example using DirectSpellchecker. Can somebody help me? -- View this message in context: http://lucene.472066.n3.nabble.com/Suggestion-words-in-FuzzyQuery-tp4031354p4031363.html Sent from

[jira] [Created] (SOLR-4281) fix log watcher to not be dependent on the schema.xml

2013-01-07 Thread Hoss Man (JIRA)
Hoss Man created SOLR-4281: -- Summary: fix log watcher to not be dependent on the schema.xml Key: SOLR-4281 URL: https://issues.apache.org/jira/browse/SOLR-4281 Project: Solr Issue Type: Improvement

[jira] [Created] (SOLR-4282) dataimport handler - aborting an import doesn't break JDBC connection to DB

2013-01-07 Thread Shawn Heisey (JIRA)
Shawn Heisey created SOLR-4282: -- Summary: dataimport handler - aborting an import doesn't break JDBC connection to DB Key: SOLR-4282 URL: https://issues.apache.org/jira/browse/SOLR-4282 Project: Solr

[jira] [Commented] (SOLR-4282) dataimport handler - aborting an import doesn't break JDBC connection to DB

2013-01-07 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546382#comment-13546382 ] Shawn Heisey commented on SOLR-4282: Filed as a problem against 4.1, because that's

[jira] [Commented] (SOLR-4282) dataimport handler - aborting an import doesn't break JDBC connection to DB

2013-01-07 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546389#comment-13546389 ] Shawn Heisey commented on SOLR-4282: SOLR-2733 is similar, but I do not see any

Re: Suggestion words in FuzzyQuery

2013-01-07 Thread Michael McCandless
I don't think there are ready code samples ... but the API is fairly straightforward ... try reading the javadocs? http://lucene.apache.org/core/4_0_0/suggest/org/apache/lucene/search/spell/DirectSpellChecker.html Basically you create it and then call one of its suggestSimilar methods. Note

[jira] [Updated] (SOLR-4208) Refactor edismax query parser

2013-01-07 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4208?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hoss Man updated SOLR-4208: --- Attachment: SOLR-4208.patch reading through things, i think this is definitely an improvement over what we

[jira] [Assigned] (SOLR-4208) Refactor edismax query parser

2013-01-07 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4208?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hoss Man reassigned SOLR-4208: -- Assignee: Hoss Man Refactor edismax query parser -

[jira] [Updated] (SOLR-4208) Refactor edismax query parser

2013-01-07 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4208?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hoss Man updated SOLR-4208: --- Fix Version/s: (was: 4.2) 4.1 going to try to get this into 4.1.

Re: Suggestion words in FuzzyQuery

2013-01-07 Thread Michael McCandless
Hi, I think you missed my last response? You need Lucene 4.0. Mike McCandless http://blog.mikemccandless.com On Mon, Jan 7, 2013 at 6:25 PM, algebra fabianoc...@gmail.com wrote: Hi Michael, What library and version I need install to use DirectSpellChecker class? =) -- View this

[jira] [Commented] (SOLR-4278) Spellchecker correctlySpelled flag is improperly false in many cases

2013-01-07 Thread Jack Krupansky (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13546423#comment-13546423 ] Jack Krupansky commented on SOLR-4278: -- For reference, as I said, I was using the Solr

Re: [jira] [Commented] (SOLR-4112) Dataimporting with SolrCloud Fails

2013-01-07 Thread sausarkar
Hi Mark, We have applied the patch and reindexed 10 million records. We did a load test and it seems that the query time per second has increased about 10 times in the 4.1x version. In the 4.0 version we also noticed that the size of the index used to around 14 GB but we noticed this is now

  1   2   >