AW: [VOTE] Release PyLucene 3.6.2

2013-01-02 Thread Thomas Koch
Update: I was also able to build JCC2.15/PyLucene3.6.2 on Win7(32 bit) with Python 2.7.2, Java 1.6 and MSVC9.0 Regards, Thomas -Ursprüngliche Nachricht- Von: Thomas Koch [mailto:k...@orbiteam.de] Gesendet: Sonntag, 30. Dezember 2012 15:22 An: pylucene developers Betreff: Re: [VOTE]

Re: [VOTE] Release PyLucene 3.6.2

2013-01-02 Thread Andi Vajda
On Wed, 2 Jan 2013, Michael McCandless wrote: Sorry for the delay here ... was out on vacation. Happy new year! Happy new year to you too ! I tested on OS X 10.8.2, and was able to install run my usual smoke test (index search first 100K Wikipedia docs). But I hit a few strange things

[jira] [Created] (LUCENE-4650) Test framework should be more robust under OOM conditions

2013-01-02 Thread Dawid Weiss (JIRA)
Dawid Weiss created LUCENE-4650: --- Summary: Test framework should be more robust under OOM conditions Key: LUCENE-4650 URL: https://issues.apache.org/jira/browse/LUCENE-4650 Project: Lucene - Core

[jira] [Commented] (LUCENE-4650) Test framework should be more robust under OOM conditions

2013-01-02 Thread Dawid Weiss (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542049#comment-13542049 ] Dawid Weiss commented on LUCENE-4650: - randomizedtesting 2.0.8 has some tweaks to

[jira] [Resolved] (LUCENE-4650) Test framework should be more robust under OOM conditions

2013-01-02 Thread Dawid Weiss (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dawid Weiss resolved LUCENE-4650. - Resolution: Fixed Test framework should be more robust under OOM conditions

[jira] [Resolved] (SOLR-4205) Clover runs on ASF Jenkins idle dead without a test or any thread running in main() loop waiting for file descriptor

2013-01-02 Thread Dawid Weiss (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4205?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dawid Weiss resolved SOLR-4205. --- Resolution: Duplicate Fix Version/s: 5.0 4.1 I can't guarantee it'll be

[jira] [Commented] (LUCENE-4650) Test framework should be more robust under OOM conditions

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542052#comment-13542052 ] Commit Tag Bot commented on LUCENE-4650: [trunk commit] Dawid Weiss

[jira] [Commented] (LUCENE-4650) Test framework should be more robust under OOM conditions

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542055#comment-13542055 ] Commit Tag Bot commented on LUCENE-4650: [branch_4x commit] Dawid Weiss

[jira] [Commented] (LUCENE-4100) Maxscore - Efficient Scoring

2013-01-02 Thread Stefan Pohl (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542058#comment-13542058 ] Stefan Pohl commented on LUCENE-4100: - Otis, thank you for your interest and I wish

[jira] [Created] (LUCENE-4651) Use generics for the type of assigned class in Classifier

2013-01-02 Thread Tommaso Teofili (JIRA)
Tommaso Teofili created LUCENE-4651: --- Summary: Use generics for the type of assigned class in Classifier Key: LUCENE-4651 URL: https://issues.apache.org/jira/browse/LUCENE-4651 Project: Lucene -

[jira] [Updated] (LUCENE-4651) Use generics for the type of assigned class in Classifier

2013-01-02 Thread Tommaso Teofili (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4651?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tommaso Teofili updated LUCENE-4651: Attachment: LUCENE-4651.patch proposed patch Use generics for the type

Re: CC0 license compatibility

2013-01-02 Thread Alan Woodward
It's used in the statistics package for sampling. The Histogram class holds a pool of values for calculating means and variances from a stream of data, and uses the ThreadLocalRandom to determine whether or not a new value will be added to the pool. This is copied directly from the existing

[JENKINS] Lucene-Solr-4.x-Linux (32bit/jdk1.6.0_37) - Build # 3544 - Failure!

2013-01-02 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-4.x-Linux/3544/ Java: 32bit/jdk1.6.0_37 -server -XX:+UseParallelGC All tests passed Build Log: [...truncated 29790 lines...] BUILD FAILED /mnt/ssd/jenkins/workspace/Lucene-Solr-4.x-Linux/build.xml:312: The following error occurred while

[JENKINS] Lucene-Solr-trunk-Linux (32bit/jdk1.6.0_37) - Build # 3562 - Failure!

2013-01-02 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/3562/ Java: 32bit/jdk1.6.0_37 -client -XX:+UseConcMarkSweepGC All tests passed Build Log: [...truncated 7145 lines...] ERROR: Failed to archive artifacts: **/*.events,heapdumps/**,README.txt hudson.util.IOException2: Failed to copy

Re: CC0 license compatibility

2013-01-02 Thread Alan Woodward
That's what the sampling code does - it holds an AtomicLongArray of fixed length, and updates the values in there randomly. There's also an ExponentiallyDecayingSample which biases the collection of values towards more recent entries, for the 5-minute and 15-minute window averages. You can

Re: CC0 license compatibility

2013-01-02 Thread Dawid Weiss
That's what the sampling code does - it holds an AtomicLongArray of fixed length, and updates the values in there randomly. There's also an ExponentiallyDecayingSample which biases the collection of values towards more recent entries, for the 5-minute and 15-minute window averages. You

Re: CC0 license compatibility

2013-01-02 Thread Alan Woodward
Ah, ok! I just remembered that some of this stuff was exploding memory and Uwe reverted it so that Jenkins could do its job. Don't know if it was a bug or something else - had very little time to look into it. That was a bug on my part. :-( This should fix it, though. TBH, I'm not even

[jira] [Commented] (SOLR-3279) Upgrade Carrot2 to minimize the possibility of dependency clashes

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542091#comment-13542091 ] Commit Tag Bot commented on SOLR-3279: -- [trunk commit] Stanisław Osiński

[jira] [Commented] (SOLR-3279) Upgrade Carrot2 to minimize the possibility of dependency clashes

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542094#comment-13542094 ] Commit Tag Bot commented on SOLR-3279: -- [trunk commit] Stanisław Osiński

Re: CC0 license compatibility

2013-01-02 Thread Dawid Weiss
That was a bug on my part. :-( This should fix it, though. No worries. It was holiday season so Uwe took the liberty to revert I guess. The updates are per-request, which could be pretty high, I suppose. I'll have a look at commons-math, anyway. Thanks! I don't think it'd be anywhere

[jira] [Commented] (SOLR-3279) Upgrade Carrot2 to minimize the possibility of dependency clashes

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542096#comment-13542096 ] Commit Tag Bot commented on SOLR-3279: -- [branch_4x commit] Stanisław Osiński

[jira] [Created] (SOLR-4253) Misleading resource loading warning from Carrot2 clustering component

2013-01-02 Thread Stanislaw Osinski (JIRA)
Stanislaw Osinski created SOLR-4253: --- Summary: Misleading resource loading warning from Carrot2 clustering component Key: SOLR-4253 URL: https://issues.apache.org/jira/browse/SOLR-4253 Project:

[jira] [Commented] (SOLR-4253) Misleading resource loading warning from Carrot2 clustering component

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542100#comment-13542100 ] Commit Tag Bot commented on SOLR-4253: -- [trunk commit] Stanisław Osiński

[jira] [Resolved] (SOLR-4253) Misleading resource loading warning from Carrot2 clustering component

2013-01-02 Thread Stanislaw Osinski (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stanislaw Osinski resolved SOLR-4253. - Resolution: Fixed Fixed in trunk and 4.x branch. Misleading resource

[jira] [Resolved] (SOLR-3279) Upgrade Carrot2 to minimize the possibility of dependency clashes

2013-01-02 Thread Stanislaw Osinski (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3279?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stanislaw Osinski resolved SOLR-3279. - Resolution: Fixed Carrot2 upgraded to 3.6.2 in trunk and 4.x branch. NB: Carrot2 3.6.2

[jira] [Commented] (SOLR-3279) Upgrade Carrot2 to minimize the possibility of dependency clashes

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542106#comment-13542106 ] Commit Tag Bot commented on SOLR-3279: -- [branch_4x commit] Stanisław Osiński

[jira] [Commented] (SOLR-4253) Misleading resource loading warning from Carrot2 clustering component

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542105#comment-13542105 ] Commit Tag Bot commented on SOLR-4253: -- [branch_4x commit] Stanisław Osiński

Re: CC0 license compatibility

2013-01-02 Thread Robert Muir
On Tue, Jan 1, 2013 at 5:22 PM, Alan Woodward alan.woodw...@romseysoftware.co.uk wrote: As part of a fix for SOLR-1972 I'm porting various bits of https://github.com/codahale/metrics into Solr. One of the classes, ThreadLocalRandom, is released under a CC0 license, with the following header:

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

2013-01-02 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-Maven-4.x/198/ No tests ran. Build Log: [...truncated 11216 lines...] - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail:

[jira] [Commented] (SOLR-4231) Enhance extensibility of AbstractSpatialFieldType

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4231?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542128#comment-13542128 ] Commit Tag Bot commented on SOLR-4231: -- [trunk commit] David Wayne Smiley

[jira] [Resolved] (SOLR-4231) Enhance extensibility of AbstractSpatialFieldType

2013-01-02 Thread David Smiley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4231?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Smiley resolved SOLR-4231. Resolution: Fixed Enhance extensibility of AbstractSpatialFieldType

[jira] [Commented] (SOLR-4231) Enhance extensibility of AbstractSpatialFieldType

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4231?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542131#comment-13542131 ] Commit Tag Bot commented on SOLR-4231: -- [branch_4x commit] David Wayne Smiley

[jira] [Commented] (LUCENE-4642) TokenizerFactory should provide a create method with a given AttributeSource

2013-01-02 Thread Renaud Delbru (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542144#comment-13542144 ] Renaud Delbru commented on LUCENE-4642: --- Hi, Any plan to commit this patch ? Or is

[jira] [Updated] (SOLR-1972) Need additional query stats in admin interface - median, 95th and 99th percentile

2013-01-02 Thread Alan Woodward (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1972?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alan Woodward updated SOLR-1972: Attachment: SOLR-1972_forked-metrics.patch Updated patch, removing ThreadLocalRandom in favour of

[jira] [Commented] (LUCENE-4649) kill ThreadInterruptedException

2013-01-02 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542162#comment-13542162 ] Robert Muir commented on LUCENE-4649: - This is also related (in my opinion a big part

[jira] [Updated] (LUCENE-4649) kill ThreadInterruptedException

2013-01-02 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-4649: Attachment: LUCENE-4649_broken.patch This patch still isnt quite right: (so i suffixed it with

[jira] [Commented] (LUCENE-4649) kill ThreadInterruptedException

2013-01-02 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542168#comment-13542168 ] Robert Muir commented on LUCENE-4649: - Really as part of this issue we should

[jira] [Updated] (LUCENE-4649) kill ThreadInterruptedException

2013-01-02 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-4649: Attachment: LUCENE-4649.patch another iteration: i fixed some bugs in the last patch, and

[jira] [Commented] (LUCENE-4649) kill ThreadInterruptedException

2013-01-02 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542178#comment-13542178 ] Robert Muir commented on LUCENE-4649: - the main bug in the current patch is how we

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

2013-01-02 Thread Uwe Schindler
Since the commit oft he carrotsearch updates, the maven build downloads additional JAR files without a license/sha1 sum. Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original Message- From: Apache Jenkins Server

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Steve Rowe
I'm working on it - I'll commit a fix in a couple minutes. - Steve On Jan 2, 2013, at 10:54 AM, Uwe Schindler u...@thetaphi.de wrote: Since the commit oft he carrotsearch updates, the maven build downloads additional JAR files without a license/sha1 sum. Uwe - Uwe Schindler

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Robert Muir
I think maven needs some exclusions. Its trying to download some unnecessary dependencies. But i cannot tell which maven jar is dragging in all this stuff to add the exclusions. On Wed, Jan 2, 2013 at 10:54 AM, Uwe Schindler u...@thetaphi.de wrote: Since the commit oft he carrotsearch updates,

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

2013-01-02 Thread Uwe Schindler
Hi, It is worse: The Maven build also download Lucene 3.6.0 (because carrot clustering depends on this). Our maven dependency checker does not fail on this because we have an exclusion: target name=-validate-maven-dependencies property name=top.level.dir location=${common.dir}/../

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Dawid Weiss
A transitional dependency. I'll take a look. D. On Wed, Jan 2, 2013 at 4:54 PM, Uwe Schindler u...@thetaphi.de wrote: Since the commit oft he carrotsearch updates, the maven build downloads additional JAR files without a license/sha1 sum. Uwe - Uwe Schindler H.-H.-Meier-Allee 63,

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Robert Muir
On Wed, Jan 2, 2013 at 11:02 AM, Uwe Schindler u...@thetaphi.de wrote: Hi, It is worse: The Maven build also download Lucene 3.6.0 (because carrot clustering depends on this). Our maven dependency checker does not fail on this because we have an exclusion: ... excludes

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Robert Muir
On Wed, Jan 2, 2013 at 11:05 AM, Robert Muir rcm...@gmail.com wrote: On Wed, Jan 2, 2013 at 11:02 AM, Uwe Schindler u...@thetaphi.de wrote: Hi, It is worse: The Maven build also download Lucene 3.6.0 (because carrot clustering depends on this). Our maven dependency checker does not fail on

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Steve Rowe
The Maven build does not download Lucene 3.6.0. There are already transitive dependency exclusions for this in the clustering POM. +1 to fix the checker though. Steve On Jan 2, 2013, at 11:02 AM, Uwe Schindler u...@thetaphi.de wrote: Hi, It is worse: The Maven build also download

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Robert Muir
It doesnt? Is it only downloading the .pom? [artifact:dependencies] Downloading: org/apache/lucene/lucene-memory/3.6.0/lucene-memory-3.6.0.pom from repository central at http://repo1.maven.org/maven2 [artifact:dependencies] Transferring 3K from central On Wed, Jan 2, 2013 at 11:10 AM, Steve Rowe

[jira] [Commented] (SOLR-1972) Need additional query stats in admin interface - median, 95th and 99th percentile

2013-01-02 Thread David Smiley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1972?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542207#comment-13542207 ] David Smiley commented on SOLR-1972: Alan, I recommend that you report the problems

[jira] [Commented] (SOLR-3279) Upgrade Carrot2 to minimize the possibility of dependency clashes

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542210#comment-13542210 ] Commit Tag Bot commented on SOLR-3279: -- [trunk commit] Steven Rowe

Re: svn commit: r1427841 - /lucene/dev/trunk/dev-tools/maven/solr/contrib/clustering/pom.xml.template

2013-01-02 Thread Stanislaw Osinski
Thanks, Steve! S. On Wed, Jan 2, 2013 at 5:14 PM, sar...@apache.org wrote: Author: sarowe Date: Wed Jan 2 16:14:47 2013 New Revision: 1427841 URL: http://svn.apache.org/viewvc?rev=1427841view=rev Log: SOLR-3279: Maven configuration: exclude unused carrot2-core transitive dependencies:

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Dawid Weiss
Yeah, these are transitive dependencies from mahout-math and simple-xml. I don't think they're required at runtime (read: they're not because we don't have them in distributions). Sorry for the noise, we'll fix the POM. Thanks Steve for updating the exclusions. Dawid On Wed, Jan 2, 2013 at 5:12

[jira] [Commented] (SOLR-1972) Need additional query stats in admin interface - median, 95th and 99th percentile

2013-01-02 Thread Alan Woodward (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1972?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542215#comment-13542215 ] Alan Woodward commented on SOLR-1972: - Hi David, this has actually already been fixed

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Steve Rowe
That's not the Maven build. Here's the leading context from the Jenkins build log: - -validate-maven-dependencies: [artifact:dependencies] Downloading: org/carrot2/carrot2-core/3.6.2/carrot2-core-3.6.2.pom from repository central at http://repo1.maven.org/maven2 [artifact:dependencies]

[jira] [Commented] (SOLR-3279) Upgrade Carrot2 to minimize the possibility of dependency clashes

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542217#comment-13542217 ] Commit Tag Bot commented on SOLR-3279: -- [branch_4x commit] Steven Rowe

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Dawid Weiss
By the way - has anybody mastered the art of publishing maven bundles via ivy? Is think this is possible and I'd like to have a single configuration to avoid such conflicts but I don't want to go it myself... Dawid On Wed, Jan 2, 2013 at 5:24 PM, Dawid Weiss dawid.we...@cs.put.poznan.pl wrote:

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Robert Muir
http://ant.apache.org/ivy/history/trunk/use/makepom.html On Wed, Jan 2, 2013 at 11:30 AM, Dawid Weiss dawid.we...@cs.put.poznan.pl wrote: By the way - has anybody mastered the art of publishing maven bundles via ivy? Is think this is possible and I'd like to have a single configuration to

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

2013-01-02 Thread Paul Alkema (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542223#comment-13542223 ] Paul Alkema commented on SOLR-3876: --- For those who use Windows Servers, this means you

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

2013-01-02 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542228#comment-13542228 ] Mark Miller commented on SOLR-3876: --- I don't care if everything is pretty or not, but we

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Steve Rowe
Cool! We should use this. On Jan 2, 2013, at 11:33 AM, Robert Muir rcm...@gmail.com wrote: http://ant.apache.org/ivy/history/trunk/use/makepom.html On Wed, Jan 2, 2013 at 11:30 AM, Dawid Weiss dawid.we...@cs.put.poznan.pl wrote: By the way - has anybody mastered the art of publishing

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

2013-01-02 Thread Jack Krupansky (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542232#comment-13542232 ] Jack Krupansky commented on SOLR-3876: -- And even I (who filed the Jira) don't use IE

[jira] [Created] (SOLR-4254) Harden the 'leader requests replica to recover' code path.

2013-01-02 Thread Mark Miller (JIRA)
Mark Miller created SOLR-4254: - Summary: Harden the 'leader requests replica to recover' code path. Key: SOLR-4254 URL: https://issues.apache.org/jira/browse/SOLR-4254 Project: Solr Issue Type:

[jira] [Created] (SOLR-4255) Solr 4 spatial- Add a filter=false local-param to just use the distance based valuesource

2013-01-02 Thread David Smiley (JIRA)
David Smiley created SOLR-4255: -- Summary: Solr 4 spatial- Add a filter=false local-param to just use the distance based valuesource Key: SOLR-4255 URL: https://issues.apache.org/jira/browse/SOLR-4255

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

2013-01-02 Thread Uwe Schindler
Hi, My idea with: rsel:name name=**/lucene-*-${version}.jar handledirsep=true/ Does not work for standard builds, as the ${version}==5.0-SNAPSHOT produces another filename (not ending in SNAPSHOT, instead a random date-like number). This is caused by some magic in the internet downloader:

[jira] [Updated] (SOLR-3180) ChaosMonkey test failures

2013-01-02 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3180?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yonik Seeley updated SOLR-3180: --- Attachment: fail.130102_020942.txt OK, here's a fail with more logging. What finally manifests as an

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

2013-01-02 Thread Erick Erickson (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542241#comment-13542241 ] Erick Erickson commented on SOLR-3876: -- FWIW, I'm certainly not objecting to putting

[jira] [Commented] (SOLR-4061) CREATE action in Collections API should allow to upload a new configuration

2013-01-02 Thread JIRA
[ https://issues.apache.org/jira/browse/SOLR-4061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542243#comment-13542243 ] Tomás Fernández Löbbe commented on SOLR-4061: - Yes, this is kind of limited, It

[jira] [Commented] (SOLR-4254) Harden the 'leader requests replica to recover' code path.

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

Re: [JENKINS-MAVEN] Lucene-Solr-Maven-4.x #198: POMs out of sync

2013-01-02 Thread Robert Muir
I only know how to do it in a hacky way: Index: common-build.xml === --- common-build.xml(revision 1427796) +++ common-build.xml(working copy) @@ -1350,6 +1350,13 @@ /sequential /target + !-- nocommit: this is wrong

[jira] [Commented] (SOLR-4254) Harden the 'leader requests replica to recover' code path.

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

[jira] [Assigned] (SOLR-4112) Dataimporting with SolrCloud Fails

2013-01-02 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4112?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar reassigned SOLR-4112: --- Assignee: Shalin Shekhar Mangar (was: James Dyer) Dataimporting with

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

2013-01-02 Thread Paul Alkema (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542277#comment-13542277 ] Paul Alkema commented on SOLR-3876: --- I HATE IE with a passion. I think most coders will

[jira] [Commented] (SOLR-1972) Need additional query stats in admin interface - median, 95th and 99th percentile

2013-01-02 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1972?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542288#comment-13542288 ] Shawn Heisey commented on SOLR-1972: Alan, updated to your latest patch. Everything is

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

2013-01-02 Thread Paul Alkema (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul Alkema updated SOLR-3876: -- Comment: was deleted (was: I HATE IE with a passion. I think most coders will agree that chrome and

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

2013-01-02 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542301#comment-13542301 ] Yonik Seeley commented on SOLR-3876: bq. FWIW, I'm certainly not objecting to putting

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

2013-01-02 Thread Paul Alkema (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542303#comment-13542303 ] Paul Alkema commented on SOLR-3876: --- I don't like IE as well however, the Solr

[jira] [Commented] (SOLR-4255) Solr 4 spatial- Add a filter=false local-param to just use the distance based valuesource

2013-01-02 Thread David Smiley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4255?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542304#comment-13542304 ] David Smiley commented on SOLR-4255: As an example, to boost by the reciprocal distance

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

2013-01-02 Thread Paul Alkema (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542303#comment-13542303 ] Paul Alkema edited comment on SOLR-3876 at 1/2/13 7:09 PM: --- I

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

2013-01-02 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3876?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542387#comment-13542387 ] Mark Miller commented on SOLR-3876: --- bq. the Solr documentation says that is supports

[jira] [Commented] (LUCENE-4649) kill ThreadInterruptedException

2013-01-02 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542404#comment-13542404 ] Michael McCandless commented on LUCENE-4649: bq. The official documentation

[jira] [Commented] (LUCENE-4649) kill ThreadInterruptedException

2013-01-02 Thread Dawid Weiss (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542409#comment-13542409 ] Dawid Weiss commented on LUCENE-4649: - This popped up on the hotspot-dev mailing list

[jira] [Created] (LUCENE-4652) highlight multiple fields with postings highlighter

2013-01-02 Thread Robert Muir (JIRA)
Robert Muir created LUCENE-4652: --- Summary: highlight multiple fields with postings highlighter Key: LUCENE-4652 URL: https://issues.apache.org/jira/browse/LUCENE-4652 Project: Lucene - Core

[jira] [Updated] (LUCENE-4652) highlight multiple fields with postings highlighter

2013-01-02 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4652?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-4652: Attachment: LUCENE-4652.patch here's a patch. it still keeps a simple API if you only want to

[jira] [Commented] (LUCENE-4647) Simplify CategoryDocumentBuilder

2013-01-02 Thread Sivan Yogev (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542430#comment-13542430 ] Sivan Yogev commented on LUCENE-4647: - As the author of most of the code being

[jira] [Resolved] (SOLR-4230) Enhance geofilt and bbox parsers to support Solr 4 spatial field types

2013-01-02 Thread David Smiley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4230?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Smiley resolved SOLR-4230. Resolution: Fixed Enhance geofilt and bbox parsers to support Solr 4 spatial field types

[jira] [Commented] (SOLR-4230) Enhance geofilt and bbox parsers to support Solr 4 spatial field types

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4230?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542431#comment-13542431 ] Commit Tag Bot commented on SOLR-4230: -- [trunk commit] David Wayne Smiley

[jira] [Commented] (SOLR-4230) Enhance geofilt and bbox parsers to support Solr 4 spatial field types

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4230?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542444#comment-13542444 ] Commit Tag Bot commented on SOLR-4230: -- [trunk commit] David Wayne Smiley

[jira] [Commented] (SOLR-4230) Enhance geofilt and bbox parsers to support Solr 4 spatial field types

2013-01-02 Thread Commit Tag Bot (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4230?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542448#comment-13542448 ] Commit Tag Bot commented on SOLR-4230: -- [branch_4x commit] David Wayne Smiley

[jira] [Updated] (SOLR-4255) Solr 4 spatial- Add a filter=false local-param to just use the distance based valuesource

2013-01-02 Thread David Smiley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4255?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Smiley updated SOLR-4255: --- Attachment: SOLR-4255_spatial_filter_=_false.patch Attached patch; includes test. I intend to commit

Re: [VOTE] Release PyLucene 3.6.2

2013-01-02 Thread Michael McCandless
Sorry for the delay here ... was out on vacation. Happy new year! I tested on OS X 10.8.2, and was able to install run my usual smoke test (index search first 100K Wikipedia docs). But I hit a few strange things ... first, lots of compilation warnings when compiling jcc and pylucene, eg: In

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

2013-01-02 Thread Uwe Schindler
Here is my groovy way, like the lucene.javadoc.url. Unfortunately there is no way to apply a regex to a property value and assign it to a new one (see e.g., http://stackoverflow.com/questions/1176071/replacing-characters-in-ant-property) Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213

[JENKINS] Lucene-Solr-4.x-MacOSX (64bit/jdk1.7.0) - Build # 26 - Failure!

2013-01-02 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-4.x-MacOSX/26/ Java: 64bit/jdk1.7.0 -XX:+UseParallelGC All tests passed Build Log: [...truncated 8893 lines...] [junit4:junit4] ERROR: JVM J0 ended with an exception, command line:

[jira] [Commented] (LUCENE-4644) Implement spatial WITHIN query for RecursivePrefixTree

2013-01-02 Thread Ryan McKinley (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4644?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542515#comment-13542515 ] Ryan McKinley commented on LUCENE-4644: --- WITHIN should mean that everything is

[jira] [Commented] (LUCENE-4647) Simplify CategoryDocumentBuilder

2013-01-02 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542526#comment-13542526 ] Michael McCandless commented on LUCENE-4647: This looks awesome Shai! I like

super-clean ant target?

2013-01-02 Thread Shawn Heisey
Is there such a thing as a super-clean ant build target, to return the checkout to a pristine state? An absolutely pristine branch_4x svn checkout takes up about 267MB of disk space. After 'ant compile' in the checkout root, that increased to 411MB. Following that with 'ant clean' dropped

How are tests divided among multiple JVMs?

2013-01-02 Thread Shawn Heisey
I was running Lucene/Solr tests on my dev server, including nightly and weekly. For my hardware, the build system automatically decides that 3 JVMs should be used. I noticed that for one bunch of tests (probably lucene/core), J1 was the only JVM that was actually running tests - J0 and J2

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

2013-01-02 Thread Uwe Schindler
I committed an improved version (after some suggestions by Robert) to trunk and 4.x. Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original Message- From: Uwe Schindler [mailto:u...@thetaphi.de] Sent: Wednesday, January

[jira] [Created] (LUCENE-4653) Make TestIndexWriter.testThreadInterruptDeadlock meaner

2013-01-02 Thread Michael McCandless (JIRA)
Michael McCandless created LUCENE-4653: -- Summary: Make TestIndexWriter.testThreadInterruptDeadlock meaner Key: LUCENE-4653 URL: https://issues.apache.org/jira/browse/LUCENE-4653 Project: Lucene -

[jira] [Updated] (LUCENE-4653) Make TestIndexWriter.testThreadInterruptDeadlock meaner

2013-01-02 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless updated LUCENE-4653: --- Attachment: LUCENE-4653.patch Still a work in progress ... the test still sometimes

[jira] [Commented] (LUCENE-4653) Make TestIndexWriter.testThreadInterruptDeadlock meaner

2013-01-02 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13542604#comment-13542604 ] Robert Muir commented on LUCENE-4653: - {noformat} } catch (ThreadInterruptedException

  1   2   >