Re: ivy.

2012-03-31 Thread Dawid Weiss
Thanks guys. I'll try it out later and let you know how it works. Dawid On Fri, Mar 30, 2012 at 11:50 PM, Uwe Schindler wrote: > It can also go into ivysettings.xml (see example: > http://ant.apache.org/ivy/history/latest-milestone/settings.html) and you can > pass via properties where this fi

[jira] [Updated] (LUCENE-3940) When Japanese (Kuromoji) tokenizer removes a punctuation token it should leave a hole

2012-03-31 Thread Michael McCandless (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3940?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless updated LUCENE-3940: --- Attachment: LUCENE-3940.patch New patch, fixing a bug in the last one, and adding a

[jira] [Commented] (LUCENE-3932) Improve load time of .tii files

2012-03-31 Thread Michael McCandless (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3932?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243102#comment-13243102 ] Michael McCandless commented on LUCENE-3932: bq. Is the space savings of delt

Re: conditional High Freq Terms in Lucene index

2012-03-31 Thread Michael McCandless
One big problem is your collector (that gathers all "A" doc IDs) is not mapping the per-segment docID to the top-level global docID space. You need to save the docBase that was passed to setNextReader, and then add it back in on each collect call. Mike McCandless http://blog.mikemccandless.com

[jira] [Commented] (LUCENE-3939) ClassCastException thrown in the map(String,int,TermVectorOffsetInfo[],int[]) method in org.apache.lucene.index.SortedTermVectorMapper

2012-03-31 Thread Michael McCandless (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243108#comment-13243108 ] Michael McCandless commented on LUCENE-3939: I'm confused on how something's

[jira] [Updated] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Uwe Schindler (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler updated LUCENE-3738: -- Attachment: LUCENE-3738-improvement.patch After looking a while on the code, I have a further

[jira] [Updated] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Uwe Schindler (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler updated LUCENE-3738: -- Attachment: (was: LUCENE-3738.patch) > Be consistent about negative vInt/vLong > -

[jira] [Updated] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Uwe Schindler (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler updated LUCENE-3738: -- Priority: Blocker (was: Major) > Be consistent about negative vInt/vLong > --

[jira] [Reopened] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Uwe Schindler (Reopened) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler reopened LUCENE-3738: --- > Be consistent about negative vInt/vLong > --- > >

[jira] [Commented] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Michael McCandless (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243125#comment-13243125 ] Michael McCandless commented on LUCENE-3738: Thanks Uwe, I'll test!

[jira] [Commented] (LUCENE-3940) When Japanese (Kuromoji) tokenizer removes a punctuation token it should leave a hole

2012-03-31 Thread Robert Muir (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243126#comment-13243126 ] Robert Muir commented on LUCENE-3940: - I dont think we should do this. StandardTokeni

[JENKINS] Solr-trunk - Build # 1811 - Still Failing

2012-03-31 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Solr-trunk/1811/ 1 tests failed. FAILED: org.apache.solr.TestDistributedSearch.testDistribSearch Error Message: Uncaught exception by thread: Thread[Thread-733,5,] Stack Trace: org.apache.lucene.util.UncaughtExceptionsRule$UncaughtExceptionsInBackgroundThrea

Re: conditional High Freq Terms in Lucene index

2012-03-31 Thread starz10de
I revised it including your comment: private Scorer scorer; private int docBase; // simply print docId and score of every matching document @Override

[jira] [Commented] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Michael McCandless (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243138#comment-13243138 ] Michael McCandless commented on LUCENE-3738: Alas, the results are now all ov

Re: conditional High Freq Terms in Lucene index

2012-03-31 Thread Michael McCandless
Hmm, you are adding two strings. You should first add the two ints (docBase + doc), then convert that to a string. Mike McCandless http://blog.mikemccandless.com On Sat, Mar 31, 2012 at 8:56 AM, starz10de wrote: > I revised it including your comment: > > > >                        private Scor

[jira] [Commented] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Uwe Schindler (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243143#comment-13243143 ] Uwe Schindler commented on LUCENE-3738: --- What does your comment mean? Good or bad?

[JENKINS-MAVEN] Lucene-Solr-Maven-3.x #443: POMs out of sync

2012-03-31 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-Maven-3.x/443/ 1 tests failed. REGRESSION: org.apache.solr.handler.dataimport.TestThreaded.testCachedThread_FullImport Error Message: Exception during query Stack Trace: java.lang.RuntimeException: Exception during query at org.apache.so

[jira] [Commented] (LUCENE-3774) check-legal isn't doing its job

2012-03-31 Thread Yonik Seeley (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243153#comment-13243153 ] Yonik Seeley commented on LUCENE-3774: -- bq. I have a different view on this. Things

[jira] [Commented] (LUCENE-3774) check-legal isn't doing its job

2012-03-31 Thread Robert Muir (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243160#comment-13243160 ] Robert Muir commented on LUCENE-3774: - I agree too I think, its worse now that checki

[jira] [Commented] (LUCENE-3774) check-legal isn't doing its job

2012-03-31 Thread Dawid Weiss (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243162#comment-13243162 ] Dawid Weiss commented on LUCENE-3774: - I'm for pushing it to the top level. This will

RE: [JENKINS-MAVEN] Lucene-Solr-Maven-3.x #443: POMs out of sync

2012-03-31 Thread Dyer, James
I tried this seed on my 4-core Windows machine several times but no failure. This test failure might indicate that the DIH threading bugs aren't really fixed in 3.6. On the other hand, users of DIH "threads" on 3.6 will get a deprecation warning, the wiki discourages it and the feature is gone

Re: conditional High Freq Terms in Lucene index

2012-03-31 Thread starz10de
I did as you mentioned and the problem still the same, I think the problem in the highFrequentTerm part. There I see duplicate words in the produced high frequent list. The comparison itself ok because I can see only terms belong to document type "A" is added to the TermInfoQueue. However, the freq

[jira] [Commented] (SOLR-2202) Money/Currency FieldType

2012-03-31 Thread Commented
[ https://issues.apache.org/jira/browse/SOLR-2202?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243209#comment-13243209 ] Jan Høydahl commented on SOLR-2202: --- Thanks for sorting this out! > Mone

[jira] [Commented] (SOLR-1052) Deprecate/Remove and in favor of in solrconfig.xml

2012-03-31 Thread Commented
[ https://issues.apache.org/jira/browse/SOLR-1052?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243219#comment-13243219 ] Jan Høydahl commented on SOLR-1052: --- The patch uses {{single}} for all tests, which shoul

[jira] [Commented] (LUCENE-3939) ClassCastException thrown in the map(String,int,TermVectorOffsetInfo[],int[]) method in org.apache.lucene.index.SortedTermVectorMapper

2012-03-31 Thread SHIN HWEI TAN (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243243#comment-13243243 ] SHIN HWEI TAN commented on LUCENE-3939: --- Thanks for the comment. Below is a test

[jira] [Commented] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Uwe Schindler (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243265#comment-13243265 ] Uwe Schindler commented on LUCENE-3738: --- Mike, I was away from home and did not und

[jira] [Commented] (LUCENE-3930) nuke jars from source tree and use ivy

2012-03-31 Thread Hoss Man (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243266#comment-13243266 ] Hoss Man commented on LUCENE-3930: -- I did some testing of the "packages" built using tru

[jira] [Updated] (LUCENE-3930) nuke jars from source tree and use ivy

2012-03-31 Thread Hoss Man (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3930?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hoss Man updated LUCENE-3930: - Attachment: LUCENE-3930_includetestlibs_excludeexamplexml.patch patch fixing the first two problems i me

[jira] [Commented] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Michael McCandless (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243293#comment-13243293 ] Michael McCandless commented on LUCENE-3738: Sorry Uwe, that was exactly it:

[jira] [Commented] (LUCENE-3738) Be consistent about negative vInt/vLong

2012-03-31 Thread Uwe Schindler (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243295#comment-13243295 ] Uwe Schindler commented on LUCENE-3738: --- Committed trunk revision: 1307910 I will

[jira] [Commented] (LUCENE-3939) ClassCastException thrown in the map(String,int,TermVectorOffsetInfo[],int[]) method in org.apache.lucene.index.SortedTermVectorMapper

2012-03-31 Thread Michael McCandless (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243294#comment-13243294 ] Michael McCandless commented on LUCENE-3939: OK I see this ClassCastException

[jira] [Commented] (LUCENE-3940) When Japanese (Kuromoji) tokenizer removes a punctuation token it should leave a hole

2012-03-31 Thread Michael McCandless (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243299#comment-13243299 ] Michael McCandless commented on LUCENE-3940: bq. StandardTokenizer doesnt le

[jira] [Commented] (LUCENE-3930) nuke jars from source tree and use ivy

2012-03-31 Thread Commented
[ https://issues.apache.org/jira/browse/LUCENE-3930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243598#comment-13243598 ] Jan Høydahl commented on LUCENE-3930: - We have a 7Mb jar which is included in the bin

[jira] [Updated] (SOLR-3254) Upgrade Solr to Tika 1.1

2012-03-31 Thread Updated
[ https://issues.apache.org/jira/browse/SOLR-3254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl updated SOLR-3254: -- Attachment: SOLR-3254.patch With Ivy it's really easy to do the Tika upgrade, and the patch becomes an

[jira] [Commented] (SOLR-3254) Upgrade Solr to Tika 1.1

2012-03-31 Thread Commented
[ https://issues.apache.org/jira/browse/SOLR-3254?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243603#comment-13243603 ] Jan Høydahl commented on SOLR-3254: --- Here's the major news in v1.1: http://tika.apache.or

[jira] [Assigned] (SOLR-3254) Upgrade Solr to Tika 1.1

2012-03-31 Thread Assigned
[ https://issues.apache.org/jira/browse/SOLR-3254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl reassigned SOLR-3254: - Assignee: Jan Høydahl > Upgrade Solr to Tika 1.1 > > >

[jira] [Updated] (SOLR-1929) Index encrypted pdf files

2012-03-31 Thread Updated
[ https://issues.apache.org/jira/browse/SOLR-1929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl updated SOLR-1929: -- Fix Version/s: 4.0 Assignee: Jan Høydahl > Index encrypted pdf files >

[jira] [Commented] (LUCENE-3939) ClassCastException thrown in the map(String,int,TermVectorOffsetInfo[],int[]) method in org.apache.lucene.index.SortedTermVectorMapper

2012-03-31 Thread SHIN HWEI TAN (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243607#comment-13243607 ] SHIN HWEI TAN commented on LUCENE-3939: --- Thanks for the quick response. I don't th

[jira] [Closed] (SOLR-1924) Solr's updateRequestHandler does not have a fast way of guaranteeing document delivery

2012-03-31 Thread Closed
[ https://issues.apache.org/jira/browse/SOLR-1924?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl closed SOLR-1924. - Resolution: Duplicate > Solr's updateRequestHandler does not have a fast way of guaranteeing document

[jira] [Updated] (SOLR-1856) In Solr Cell, literals should override Tika-parsed values

2012-03-31 Thread Updated
[ https://issues.apache.org/jira/browse/SOLR-1856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl updated SOLR-1856: -- Affects Version/s: (was: 1.4) Fix Version/s: 4.0 Assignee: Jan Høydahl > In

[jira] [Updated] (SOLR-2649) MM ignored in edismax queries with operators

2012-03-31 Thread Updated
[ https://issues.apache.org/jira/browse/SOLR-2649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl updated SOLR-2649: -- Affects Version/s: (was: 3.3) Fix Version/s: 4.0 > MM ignored in edismax queries with op

[jira] [Commented] (SOLR-2366) Facet Range Gaps

2012-03-31 Thread Commented
[ https://issues.apache.org/jira/browse/SOLR-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243611#comment-13243611 ] Jan Høydahl commented on SOLR-2366: --- Note to self: catch up on this again :)

[jira] [Closed] (SOLR-1895) ManifoldCF SearchComponent plugin for enforcing ManifoldCF security at search time

2012-03-31 Thread Closed
[ https://issues.apache.org/jira/browse/SOLR-1895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl closed SOLR-1895. - Resolution: Won't Fix Fix Version/s: (was: 4.0) Closing this as Won't fix since the fix is chec

[jira] [Commented] (SOLR-1758) schema definition for configuration files (validation, XSD)

2012-03-31 Thread Commented
[ https://issues.apache.org/jira/browse/SOLR-1758?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13243613#comment-13243613 ] Jan Høydahl commented on SOLR-1758: --- Mike, do you have an updated patch for this? What do

[jira] [Updated] (SOLR-2934) Problem with Solr Hunspell with French Dictionary

2012-03-31 Thread Updated
[ https://issues.apache.org/jira/browse/SOLR-2934?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl updated SOLR-2934: -- Fix Version/s: 4.0 > Problem with Solr Hunspell with French Dictionary > ---

[jira] [Created] (SOLR-3302) Upgrade SLF4J to 1.6.4

2012-03-31 Thread Bill Bell (Created) (JIRA)
Upgrade SLF4J to 1.6.4 -- Key: SOLR-3302 URL: https://issues.apache.org/jira/browse/SOLR-3302 Project: Solr Issue Type: Improvement Affects Versions: 3.5, 4.0 Reporter: Bill Bell Replace 1.6.1 with 1.6.4

[jira] [Closed] (SOLR-435) QParser must validate existence/absence of "q" parameter

2012-03-31 Thread David Smiley (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-435?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Smiley closed SOLR-435. - Resolution: Fixed Re-committed to 4.x, and I moved the CHANGES.txt from the v4 to v3 section on both branc

[JENKINS] Lucene-Solr-tests-only-trunk - Build # 12928 - Failure

2012-03-31 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-tests-only-trunk/12928/ 2 tests failed. REGRESSION: org.apache.solr.cloud.BasicDistributedZkTest.testDistribSearch Error Message: java.lang.AssertionError: org.apache.solr.cloud.BasicDistributedZkTest.testDistribSearch: Insane FieldCache usage(s