[jira] [Commented] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637785#comment-13637785 ] Steve Rowe commented on LUCENE-4810: I see FilteringTokenFilter has a similar first

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Steve Rowe
I've reopened LUCENE-4810 and attached a patch with a test and fix for this problem. - Steve On Apr 22, 2013, at 1:09 AM, Steve Rowe sar...@gmail.com wrote: Actually, Walter, I misspoke: Morfologik is a lemmatizer: it produces surface forms. Not really so incompatible, I think.

RE: nightly-smoke on Cygwin

2013-04-22 Thread Uwe Schindler
Hi, Hi this is a general problem with horrible CYGWIN J I strongly disagree with replacing file=”…” by value=”..” because this makes the general build less portable between platforms and not depend on relative directories set correct (especially inside the lucene subfolders, where some

Re: nightly-smoke on Cygwin

2013-04-22 Thread Shai Erera
Not sure I follow all your arguments. Other targets run fine from Cygwin, even while the paths are defined absolute / relative. The weird error I got the second time seems unrelated to Cygwin at all (nor Ant):

Re: nightly-smoke on Cygwin

2013-04-22 Thread Shai Erera
I checked smokeTestRelease.py (line 1298) and this is how tmpDir is initialized: tmpDir = os.path.abspath(sys.argv[4]) So indeed seems that perhaps this can be resolved in the script, because what's passed to the script is d:\dev..., which I assume os.path.abspath does not recognize as absolute

RE: nightly-smoke on Cygwin

2013-04-22 Thread Uwe Schindler
If you pass a relative JAVA7_HOME to the smoke tester, it will fail at a later stage, because when running parts of the ANT build, the CWD is different, so JAVA_HOME passed to ANT is wrong. This is the reason why the sysprop is “transformed” to be absolute. The Windows-style full path in

[jira] [Commented] (SOLR-4451) Upgrade to httpclient 4.2.x and take advantage of SystemDefaultHttpClient

2013-04-22 Thread Anand (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4451?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637796#comment-13637796 ] Anand commented on SOLR-4451: - Upgraded to Solr 4.2.1 today. Also, updated http components to

Re: nightly-smoke on Cygwin

2013-04-22 Thread Shai Erera
I don't pass any -D arguments. I simply run 'ant nightly-smoke', just like I do 'ant precommit'. Only the latter recognizes JAVA7_HOME properly (set to /d/java/sun-java-70) and e.g. fails if it's not Oracle's 1.7. I don't know if the problem is in Ant or the python script. On one hand, since the

RE: nightly-smoke on Cygwin

2013-04-22 Thread Uwe Schindler
That‘ what the script should do: it must invoke „cygpath“ to resolve windows paths and convert to Cygwin paths. There are already code paths in it. I would still recommend to install a real windows python like Jenkins. The main problem here is: windows (ANT) - Cygwin (python) - windows

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Dawid Weiss (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637797#comment-13637797 ] Dawid Weiss commented on LUCENE-4947: - Cool but this may be a showstopper: MDAG is

Re: nightly-smoke on Cygwin

2013-04-22 Thread Shai Erera
Will it work with Python 3.3? Shai On Mon, Apr 22, 2013 at 9:54 AM, Uwe Schindler u...@thetaphi.de wrote: That‘ what the script should do: it must invoke „cygpath“ to resolve windows paths and convert to Cygwin paths. There are already code paths in it. ** ** I would still recommend

RE: nightly-smoke on Cygwin

2013-04-22 Thread Uwe Schindler
According to build.xml, you have to pass –Dpython32.exe=…. To ant, so it needs Python 3.x. Theoretically 3.3 should work, just try it. On Jenkins we have the officially supported versions installed. Refer to the beginning of

RE: nightly-smoke on Cygwin

2013-04-22 Thread Uwe Schindler
It’s actually worse in your case, as I think you invoke ANT from cygwin’s bash: Cygwin (bash shell) -calls- windows (ANT) -class- Cygwin (python) -calls- windows (Java) This makes path conversions horrible and error-prone J the paths need to be converted several times. CYGWIN helps with

Re: nightly-smoke on Cygwin

2013-04-22 Thread Shai Erera
I'll try the Win32 python build, but if that fails, I'll just not run nightly-smoke :). Not invoking Ant from Cygwin bash is not an option for me, sorry. Shai On Mon, Apr 22, 2013 at 11:31 AM, Uwe Schindler u...@thetaphi.de wrote: It’s actually worse in your case, as I think you invoke ANT

RE: nightly-smoke on Cygwin

2013-04-22 Thread Uwe Schindler
Why do you want to run nightly-smoke? That’s a task intended to be used by Jenkins J To test the release candidate, you have to invoke python manually – because nightly-smoke only runs the smoketester for the current checkout. - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen

Re: nightly-smoke on Cygwin

2013-04-22 Thread Shai Erera
You're right ... I did that b/c the RC validation took 2 hours on my laptop. While chatting about it with Mike he suggested I try nightly-smoke to take the RC download out of the picture. And since then I've been running into those issues. It's not important at all to me. I thought it's a simple

Re: ComplexPhraseQParserPlugin not working with solr 4.2

2013-04-22 Thread ilay raja
I was able to solve the previous problem of not loading COmplexPhraseQParserPlugin. Still I am able to run this with defType=complexphrase: java.lang.NoSuchMethodError:

Stats facet on int/tint fields

2013-04-22 Thread vinothkumar raman
I have a schema like this field name=id type=string indexed=true stored=true required=true multiValued=false/ field name=cat type=int indexed=true stored=true required=true multiValued=false/ field name=cat_name type=int indexed=true stored=true required=true multiValued=false/ field name=price

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Karol Sikora
Steve, thanks for investigating and fixing this problem. Your patch attached to issue fixes my problem. So here is my little (and probably meaningless ;) ) vote: +1 :) Walter, as Steve says, morfologik is a lemmatizer. It isn't really incomaptible, and solves one of requirement from client:

[jira] [Commented] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637935#comment-13637935 ] Michael McCandless commented on LUCENE-4810: Ugh :( Nice catch Karol and

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Christian Moen (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637943#comment-13637943 ] Christian Moen commented on LUCENE-4947: Thanks a lot for wishing to submit code!

[jira] [Updated] (SOLR-4470) Support for basic http auth in internal solr requests

2013-04-22 Thread JIRA
[ https://issues.apache.org/jira/browse/SOLR-4470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jan Høydahl updated SOLR-4470: -- Fix Version/s: (was: 4.3) 4.4 Support for basic http auth in internal solr

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Kevin Lawson (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637945#comment-13637945 ] Kevin Lawson commented on LUCENE-4947: -- Ah. It slipped my mind that the result of

[jira] [Commented] (SOLR-4470) Support for basic http auth in internal solr requests

2013-04-22 Thread JIRA
[ https://issues.apache.org/jira/browse/SOLR-4470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637949#comment-13637949 ] Jan Høydahl commented on SOLR-4470: --- Now that solr.xml is refurbished and probably going

[jira] [Commented] (LUCENE-2962) Skip data should be inlined into the postings lists

2013-04-22 Thread Han Jiang (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637983#comment-13637983 ] Han Jiang commented on LUCENE-2962: --- A full summary of skip frequency in

[jira] [Comment Edited] (LUCENE-2962) Skip data should be inlined into the postings lists

2013-04-22 Thread Han Jiang (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637983#comment-13637983 ] Han Jiang edited comment on LUCENE-2962 at 4/22/13 1:02 PM: A

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Jack Krupansky
Is this a fix to 4.3 (RC3?) or for a 4.3.1? -- Jack Krupansky -Original Message- From: Steve Rowe Sent: Monday, April 22, 2013 2:07 AM To: dev@lucene.apache.org Subject: Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2) I've reopened LUCENE-4810 and attached a patch with a test and fix for

[jira] [Created] (SOLR-4746) Distributed grouping output bug (NamedList used instead of SimpleOrderedMap)

2013-04-22 Thread Yonik Seeley (JIRA)
Yonik Seeley created SOLR-4746: -- Summary: Distributed grouping output bug (NamedList used instead of SimpleOrderedMap) Key: SOLR-4746 URL: https://issues.apache.org/jira/browse/SOLR-4746 Project: Solr

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Simon Willnauer
I think we can add this to 4.3 I can roll another RC for that. simon On Mon, Apr 22, 2013 at 3:11 PM, Jack Krupansky j...@basetechnology.com wrote: Is this a fix to 4.3 (RC3?) or for a 4.3.1? -- Jack Krupansky -Original Message- From: Steve Rowe Sent: Monday, April 22, 2013 2:07 AM

[jira] [Updated] (SOLR-4746) Distributed grouping output bug (NamedList used instead of SimpleOrderedMap)

2013-04-22 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yonik Seeley updated SOLR-4746: --- Fix Version/s: 5.0 4.3 Distributed grouping output bug (NamedList used

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Yonik Seeley
On Mon, Apr 22, 2013 at 9:17 AM, Simon Willnauer simon.willna...@gmail.com wrote: I think we can add this to 4.3 I can roll another RC for that. Someone just found a somewhat serious (but hopefully simple to fix) bug that I'd like to get in also: https://issues.apache.org/jira/browse/SOLR-4746

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Simon Willnauer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637989#comment-13637989 ] Simon Willnauer commented on LUCENE-4947: - bq. I'm fully committed providing it

[jira] [Commented] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637990#comment-13637990 ] Commit Tag Bot commented on LUCENE-4810: [trunk commit] sarowe

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Simon Willnauer
Yonik, can you fix this in the near future? I mean how much time do you need? On Mon, Apr 22, 2013 at 3:23 PM, Yonik Seeley yo...@lucidworks.com wrote: On Mon, Apr 22, 2013 at 9:17 AM, Simon Willnauer simon.willna...@gmail.com wrote: I think we can add this to 4.3 I can roll another RC for

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Robert Muir
If I was the RM, i would not respin for this edge-ngrams filter. We already have tests to find such bugs, but these tests are currently disabled (!) because the filter is basically rotting. So i can't see how something can be important enough to respin a release candidate for, but not important

[jira] [Commented] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637991#comment-13637991 ] Commit Tag Bot commented on LUCENE-4810: [branch_4x commit] sarowe

[jira] [Commented] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13637992#comment-13637992 ] Commit Tag Bot commented on LUCENE-4810: [lucene_solr_4_3 commit] sarowe

[jira] [Updated] (SOLR-1604) Wildcards, ORs etc inside Phrase Queries

2013-04-22 Thread Ahmet Arslan (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ahmet Arslan updated SOLR-1604: --- Attachment: ComplexPhrase-4.2.1.zip Bring to 4.2.1 version Wildcards, ORs etc

[jira] [Commented] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638003#comment-13638003 ] Steve Rowe commented on LUCENE-4810: FWIW, I fixed the svn:log property on the

[jira] [Commented] (LUCENE-4936) docvalues date compression

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638005#comment-13638005 ] Robert Muir commented on LUCENE-4936: - +1: nice catch adrien. Why do we have this

[jira] [Updated] (SOLR-4746) Distributed grouping output bug (NamedList used instead of SimpleOrderedMap)

2013-04-22 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yonik Seeley updated SOLR-4746: --- Attachment: SOLR-4746.patch Here's a simple patch that changes NamedList to SimpleOrderedMap. Tests

[JENKINS] Lucene-Solr-4.x-Linux (64bit/ibm-j9-jdk7) - Build # 5239 - Failure!

2013-04-22 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-4.x-Linux/5239/ Java: 64bit/ibm-j9-jdk7 1 tests failed. REGRESSION: org.apache.lucene.search.postingshighlight.TestPostingsHighlighter.testCambridgeMA Error Message: Array index out of range: 37 Stack Trace:

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Robert Muir
On Mon, Apr 22, 2013 at 9:52 AM, Simon Willnauer simon.willna...@gmail.comwrote: my take on this more community oriented. I really want to encourage folks to test our releases. Its a lot of work to upgrade existing apps to run with an RC and if somebody does that and finds a bug I think this

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Simon Willnauer
I hear ya robert! On Mon, Apr 22, 2013 at 3:54 PM, Robert Muir rcm...@gmail.com wrote: On Mon, Apr 22, 2013 at 9:52 AM, Simon Willnauer simon.willna...@gmail.com wrote: my take on this more community oriented. I really want to encourage folks to test our releases. Its a lot of work to

Re: [JENKINS] Lucene-Solr-4.x-Linux (64bit/ibm-j9-jdk7) - Build # 5239 - Failure!

2013-04-22 Thread Robert Muir
I think this is an IBM jvm bug. On Mon, Apr 22, 2013 at 9:52 AM, Policeman Jenkins Server jenk...@thetaphi.de wrote: Build: http://jenkins.thetaphi.de/job/Lucene-Solr-4.x-Linux/5239/ Java: 64bit/ibm-j9-jdk7 1 tests failed. REGRESSION:

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Steve Rowe
On Apr 22, 2013, at 9:52 AM, Simon Willnauer simon.willna...@gmail.com wrote: On Mon, Apr 22, 2013 at 3:42 PM, Steve Rowe sar...@gmail.com wrote: I just committed the edge-ngrams fix on the 4.3 release branch. I will not -1 RC2 for this, but if we're respinning anyway for SOLR-4746,

RE: [JENKINS] Lucene-Solr-4.x-Linux (64bit/ibm-j9-jdk7) - Build # 5239 - Failure!

2013-04-22 Thread Uwe Schindler
I think so, too. I reenabled IBM J9 last night for other purposes. I can disable it again if it does not work. In any case, we should document that bug in the JavaBugs wiki page I recently updated with non-Oracle JVMs. Before disbling it, I will also try to update to latest version. Uwe

[jira] [Commented] (SOLR-4746) Distributed grouping output bug (NamedList used instead of SimpleOrderedMap)

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4746?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638019#comment-13638019 ] Commit Tag Bot commented on SOLR-4746: -- [trunk commit] yonik

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638020#comment-13638020 ] Uwe Schindler commented on LUCENE-4947: --- Hi, My comments: Can this tool be used to

[jira] [Created] (SOLR-4747) DIH postgres connections are not closed

2013-04-22 Thread Remko Kuipers (JIRA)
Remko Kuipers created SOLR-4747: --- Summary: DIH postgres connections are not closed Key: SOLR-4747 URL: https://issues.apache.org/jira/browse/SOLR-4747 Project: Solr Issue Type: Bug

[jira] [Commented] (SOLR-4746) Distributed grouping output bug (NamedList used instead of SimpleOrderedMap)

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4746?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638022#comment-13638022 ] Commit Tag Bot commented on SOLR-4746: -- [branch_4x commit] yonik

[jira] [Commented] (SOLR-4746) Distributed grouping output bug (NamedList used instead of SimpleOrderedMap)

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4746?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638024#comment-13638024 ] Commit Tag Bot commented on SOLR-4746: -- [lucene_solr_4_3 commit] yonik

[jira] [Resolved] (SOLR-4746) Distributed grouping output bug (NamedList used instead of SimpleOrderedMap)

2013-04-22 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yonik Seeley resolved SOLR-4746. Resolution: Fixed committed. We should figure out a way to test for this, but I just tested by

[jira] [Commented] (SOLR-4747) DIH postgres connections are not closed

2013-04-22 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638031#comment-13638031 ] Shalin Shekhar Mangar commented on SOLR-4747: - It sounds like you want DIH to

[jira] [Commented] (SOLR-3251) dynamically add fields to schema

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638032#comment-13638032 ] Commit Tag Bot commented on SOLR-3251: -- [trunk commit] sarowe

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Simon Willnauer
building an RC3 off SVN rev: 1470541 now simon On Mon, Apr 22, 2013 at 3:59 PM, Steve Rowe sar...@gmail.com wrote: On Apr 22, 2013, at 9:52 AM, Simon Willnauer simon.willna...@gmail.com wrote: On Mon, Apr 22, 2013 at 3:42 PM, Steve Rowe sar...@gmail.com wrote: I just committed the

[jira] [Created] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Robert Muir (JIRA)
Robert Muir created SOLR-4748: - Summary: bogus files in licenses/ directory Key: SOLR-4748 URL: https://issues.apache.org/jira/browse/SOLR-4748 Project: Solr Issue Type: Bug

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638037#comment-13638037 ] Robert Muir commented on SOLR-4748: --- The bug is in 'ant check-svn-working-copy'. it

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Walter Underwood
I did the work on 4810, thanks for improving it. We've been running that code on 3.3 for a while now with no problems. Even with a lemmatizer, you can get some odd results with edge ngrams. Any internal vowel changes, for example. Or a more heavily-inflected language than English. I

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638042#comment-13638042 ] Robert Muir commented on SOLR-4748: --- {noformat} Index: extra-targets.xml

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Kevin Lawson (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638050#comment-13638050 ] Kevin Lawson commented on LUCENE-4947: -- bq. Alternatively, can the code be ported

[jira] [Resolved] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steve Rowe resolved LUCENE-4810. Resolution: Fixed Committed fix to insure first token position increment 0, to trunk,

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638053#comment-13638053 ] Commit Tag Bot commented on SOLR-4748: -- [trunk commit] rmuir

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638057#comment-13638057 ] Commit Tag Bot commented on SOLR-4748: -- [branch_4x commit] rmuir

[jira] [Comment Edited] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Kevin Lawson (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638050#comment-13638050 ] Kevin Lawson edited comment on LUCENE-4947 at 4/22/13 2:53 PM:

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638060#comment-13638060 ] Commit Tag Bot commented on SOLR-4748: -- [lucene_solr_4_3 commit] rmuir

[jira] [Resolved] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved SOLR-4748. --- Resolution: Fixed Fix Version/s: 4.3 bogus files in licenses/ directory

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638068#comment-13638068 ] Commit Tag Bot commented on SOLR-4748: -- [trunk commit] rmuir

[jira] [Commented] (LUCENE-1690) Morelikethis queries are very slow compared to other search types

2013-04-22 Thread Richard Marr (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1690?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638071#comment-13638071 ] Richard Marr commented on LUCENE-1690: -- [~erickerickson] as far as I know this is

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638072#comment-13638072 ] Commit Tag Bot commented on SOLR-4748: -- [branch_4x commit] rmuir

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638075#comment-13638075 ] Commit Tag Bot commented on SOLR-4748: -- [lucene_solr_4_3 commit] rmuir

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638084#comment-13638084 ] Mark Miller commented on SOLR-4748: --- bq. I dont know how these became like this This

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638085#comment-13638085 ] Robert Muir commented on SOLR-4748: --- Well i meant more of 'why isnt our build detecting

Re: AW: AW: AW: [VOTE] Release PyLucene 4.2.1-1

2013-04-22 Thread Andi Vajda
On Apr 22, 2013, at 4:06, Thomas Koch k...@orbiteam.de wrote: Thanks again. A trick - on Windows - might be to rename the testrepo dir to testrepo.current datetime and move to the next test. And clean them all up at the end. Or create a testrepos directory tree where each

[jira] [Commented] (LUCENE-4936) docvalues date compression

2013-04-22 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638090#comment-13638090 ] Adrien Grand commented on LUCENE-4936: -- I guess the point was to avoid one level of

[jira] [Commented] (LUCENE-4936) docvalues date compression

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638102#comment-13638102 ] Robert Muir commented on LUCENE-4936: - I see. In this case should we just take

[jira] [Commented] (SOLR-4333) edismax query with escaped colon ignores AND and OR

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4333?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638103#comment-13638103 ] Commit Tag Bot commented on SOLR-4333: -- [trunk commit] jdyer

[jira] [Resolved] (SOLR-4333) edismax query with escaped colon ignores AND and OR

2013-04-22 Thread James Dyer (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4333?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Dyer resolved SOLR-4333. -- Resolution: Fixed committed Trunk: r1470577 Branch_4x: r1470578 (sorry! did not enter a svn

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Kevin Lawson (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638111#comment-13638111 ] Kevin Lawson commented on LUCENE-4947: -- bq. do you own all the copyrights for this

[jira] [Commented] (LUCENE-4936) docvalues date compression

2013-04-22 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638114#comment-13638114 ] Adrien Grand commented on LUCENE-4936: -- One advantage of DELTA_COMPRESSED is that it

[jira] [Comment Edited] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Kevin Lawson (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638111#comment-13638111 ] Kevin Lawson edited comment on LUCENE-4947 at 4/22/13 3:44 PM:

[jira] [Commented] (LUCENE-4936) docvalues date compression

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638115#comment-13638115 ] Robert Muir commented on LUCENE-4936: - Only in the case of outliers... but TABLE

[jira] [Commented] (LUCENE-4936) docvalues date compression

2013-04-22 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638117#comment-13638117 ] Adrien Grand commented on LUCENE-4936: -- bq. In this case should we just take

[jira] [Commented] (LUCENE-4936) docvalues date compression

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4936?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638118#comment-13638118 ] Robert Muir commented on LUCENE-4936: - (decreasing rather)

[jira] [Commented] (SOLR-4748) bogus files in licenses/ directory

2013-04-22 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638120#comment-13638120 ] Uwe Schindler commented on SOLR-4748: - Thanks for fixing, Robert. There are more crazy

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638127#comment-13638127 ] Steve Rowe commented on LUCENE-4947: {quote} bq. I haven't looked into it yet but

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Christian Moen (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638128#comment-13638128 ] Christian Moen commented on LUCENE-4947: It sounds proper to do a code grant also

[jira] [Updated] (SOLR-4738) Update to latest Jetty bug fix release, 8.1.10

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated SOLR-4738: -- Attachment: SOLR-4738.patch Here's a patch. As far as I know, its just these two version variables in

[jira] [Created] (SOLR-4749) Refactor the new solr.xml and core discovery code.

2013-04-22 Thread Mark Miller (JIRA)
Mark Miller created SOLR-4749: - Summary: Refactor the new solr.xml and core discovery code. Key: SOLR-4749 URL: https://issues.apache.org/jira/browse/SOLR-4749 Project: Solr Issue Type:

Re: [VOTE] Lucene/Solr 4.3 Take 2 (RC2)

2013-04-22 Thread Chris Hostetter
: my take on this more community oriented. I really want to encourage : folks to test our releases. Its a lot of work to upgrade existing apps : to run with an RC and if somebody does that and finds a bug I think : this is worth rolling a new RC. I don't have a rush here and quality : of the

[jira] [Commented] (SOLR-2079) Expose HttpServletRequest object from SolrQueryRequest object

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-2079?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638154#comment-13638154 ] Commit Tag Bot commented on SOLR-2079: -- [trunk commit] rmuir

[jira] [Commented] (SOLR-4743) Group query crashes server

2013-04-22 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638158#comment-13638158 ] Hoss Man commented on SOLR-4743: Ravi: i can not reproduce the problem you are describing

[jira] [Commented] (SOLR-4749) Refactor the new solr.xml and core discovery code.

2013-04-22 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638164#comment-13638164 ] Yonik Seeley commented on SOLR-4749: One issue I noticed after a quick glance is a race

[jira] [Commented] (SOLR-2079) Expose HttpServletRequest object from SolrQueryRequest object

2013-04-22 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-2079?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638168#comment-13638168 ] Commit Tag Bot commented on SOLR-2079: -- [branch_4x commit] rmuir

[jira] [Commented] (LUCENE-4810) Positions are incremented for each ngram in EdgeNGramTokenFilter

2013-04-22 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638170#comment-13638170 ] Michael McCandless commented on LUCENE-4810: Thanks Steve!

[jira] [Commented] (SOLR-4749) Refactor the new solr.xml and core discovery code.

2013-04-22 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638171#comment-13638171 ] Yonik Seeley commented on SOLR-4749: The publishCoresAsDown() code holds the same lock

[jira] [Commented] (LUCENE-4947) Java implementation (and improvement) of Levenshtein associated lexicon automata

2013-04-22 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638175#comment-13638175 ] Steve Rowe commented on LUCENE-4947: Kevin, You can license your code under multiple

[jira] [Created] (LUCENE-4948) Stink bug in PostingsHighlighter

2013-04-22 Thread Michael McCandless (JIRA)
Michael McCandless created LUCENE-4948: -- Summary: Stink bug in PostingsHighlighter Key: LUCENE-4948 URL: https://issues.apache.org/jira/browse/LUCENE-4948 Project: Lucene - Core Issue

[jira] [Commented] (LUCENE-4948) Stink bug in PostingsHighlighter

2013-04-22 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638186#comment-13638186 ] Robert Muir commented on LUCENE-4948: - Thanks for looking into this Mike! I agree the

[jira] [Commented] (LUCENE-4948) Stink bug in PostingsHighlighter

2013-04-22 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13638191#comment-13638191 ] Uwe Schindler commented on LUCENE-4948: --- This is easy to explain: J9 does not know

  1   2   >