Re: Why do SolrIndex/QueryAnalyzers use PER_FIELD_REUSE_STRATEGY

2015-07-24 Thread Shai Erera
Thanks Shalin, but I reviewed the code in trunk, and it still passes PER_FIELD. I can double check but I'm pretty sure that's what I saw. Shai On Jul 24, 2015 7:59 AM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: Uwe fixed this in 4.10 with LUCENE-5803. Now we use GLOBAL_REUSE_STRATEGY

Re: Solr 5.x tests sometimes fail with PermGen error

2015-07-24 Thread Dawid Weiss
Permgens are like JVM hanging completely -- there's not much the test runner can do (because everything is typically and effectively dead on the Java side of things). It needs to be solved in the code; there's very likely multiple classloaders being loaded and something prevents them from being

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Dawid Weiss
Congratulations, Christine. Dawid On Fri, Jul 24, 2015 at 9:27 AM, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Tommaso Teofili
Welcome on board Christine! Regards, Tommaso 2015-07-24 9:27 GMT+02:00 Adrien Grand jpou...@gmail.com: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your

Re: Why do SolrIndex/QueryAnalyzers use PER_FIELD_REUSE_STRATEGY

2015-07-24 Thread Shai Erera
What I also want to double check is, after I sent the email I thought about it some more, and I think the PER_FIELD is passed as a fallback strategy, but otherwise it uses the wrapped analyzer's strategy. Maybe in 4.7 before Uwe fixed things some Analyzers still returned PER_FIELD, but now they

[JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_51) - Build # 13582 - Still Failing!

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/13582/ Java: 64bit/jdk1.8.0_51 -XX:+UseCompressedOops -XX:+UseParallelGC 1 tests failed. FAILED: org.apache.solr.cloud.CdcrReplicationDistributedZkTest.doTests Error Message: Timeout while trying to assert update logs @

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Varun Thacker
Congratulations and welcome Christine! On Fri, Jul 24, 2015 at 1:00 PM, Uwe Schindler u...@thetaphi.de wrote: Welcome Christine! I am glad to have you on board! Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Christian Moen
Congrats, Christine! On Jul 24, 2015, at 4:27 PM, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your account is not

[jira] [Commented] (LUCENE-6694) Snowball stemmer for Lithuanian language

2015-07-24 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6694?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640061#comment-14640061 ] Robert Muir commented on LUCENE-6694: - Thank for the contribution here! We really

Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Adrien Grand
I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your account is not entirely ready yet. We will let you know when it is created and karma has been granted so that you

Re: [JENKINS] Lucene-Solr-5.x-Linux (32bit/jdk1.9.0-ea-b73) - Build # 13391 - Failure!

2015-07-24 Thread Dawid Weiss
Uwe: perhaps you could change your JDK9 jenkins job to run but not send emails on failures? I'm for prefixing title somehow so that uninterested people can filter out those e-mails, but leaving them as e-mails. I am interested in those failures and it's push-style notification that suits me much

RE: Why do SolrIndex/QueryAnalyzers use PER_FIELD_REUSE_STRATEGY

2015-07-24 Thread Uwe Schindler
In 4.10, SolrIndexAnalyzer extends DelegatingAnalyzerWrapper instead of AnalyzerWrapper. DelegatingAnalyzerWrapper has its own „ReuseStrategy“. The perField one here and is used as fallback only (for incompatible configurations, e.g. when one of the per-field configs wrap with a filter or

[jira] [Updated] (LUCENE-6694) Snowball stemmer for Lithuanian language

2015-07-24 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6694?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-6694: Attachment: LUCENE-6694.patch Updated patch adding LithuanianAnalyzer, a stopwords set, and some

Solr 5.x tests sometimes fail with PermGen error

2015-07-24 Thread Uwe Schindler
Hi, (this is unrelated to my permgen improvements yesterday about the Ant build). This mail is about the test runners. I had to kill builds on MacOSX quite often because the test runner went into a permgen error. The problem: Killing the jenkins job was not enough, because the test runners not

RE: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Uwe Schindler
Welcome Christine! I am glad to have you on board! Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original Message- From: Adrien Grand [mailto:jpou...@gmail.com] Sent: Friday, July 24, 2015 9:28 AM To:

RE: Solr 5.x tests sometimes fail with PermGen error

2015-07-24 Thread Uwe Schindler
Hi, Permgens are like JVM hanging completely -- there's not much the test runner can do (because everything is typically and effectively dead on the Java side of things). It needs to be solved in the code; there's very likely multiple classloaders being loaded and something prevents them

RE: Why do SolrIndex/QueryAnalyzers use PER_FIELD_REUSE_STRATEGY

2015-07-24 Thread Shai Erera
Ok thanks Uwe, this makes sense now! Shai On Jul 24, 2015 9:55 AM, Uwe Schindler u...@thetaphi.de wrote: In 4.10, SolrIndexAnalyzer extends DelegatingAnalyzerWrapper instead of AnalyzerWrapper. DelegatingAnalyzerWrapper has its own „ReuseStrategy“. The perField one here and is used as

RE: [JENKINS] Lucene-Solr-5.x-Linux (32bit/jdk1.9.0-ea-b73) - Build # 13391 - Failure!

2015-07-24 Thread Uwe Schindler
I agree with that. I could change the prefix [JENKINS] to [JENKINS-EA] for EA-Builds by script/pattern. Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de http://www.thetaphi.de/ eMail: u...@thetaphi.de From: Dawid Weiss

[JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.8.0_51) - Build # 13403 - Failure!

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/13403/ Java: 64bit/jdk1.8.0_51 -XX:-UseCompressedOops -XX:+UseParallelGC 1 tests failed. FAILED: org.apache.solr.search.TestSearcherReuse.test Error Message: expected same:Searcher@ca82346[collection1]

[JENKINS] Lucene-Solr-trunk-Windows (64bit/jdk1.8.0_51) - Build # 5062 - Failure!

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Windows/5062/ Java: 64bit/jdk1.8.0_51 -XX:-UseCompressedOops -XX:+UseParallelGC 3 tests failed. FAILED: junit.framework.TestSuite.org.apache.solr.core.TestLazyCores Error Message: ERROR: SolrIndexSearcher opens=51 closes=50 Stack Trace:

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Han Jiang
Welcome, Christine! On Fri, Jul 24, 2015 at 3:27 PM, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your account is not

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Shawn Heisey
On 7/24/2015 1:27 AM, Adrien Grand wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Congratulations and welcome! - To unsubscribe, e-mail:

[jira] [Commented] (LUCENE-6693) Permgen errors in 5.x on Jenkins builds with JDK 1.7

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6693?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640208#comment-14640208 ] ASF subversion and git services commented on LUCENE-6693: - Commit

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Ramkumar R. Aiyengar
Welcome Christine. Glad to have company a couple of desks away :) On 24 Jul 2015 08:28, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a

[jira] [Commented] (SOLR-7820) IndexFetcher should delete the current index directory before downloading the new index when isFullCopyNeeded==true

2015-07-24 Thread Ramkumar Aiyengar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7820?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640204#comment-14640204 ] Ramkumar Aiyengar commented on SOLR-7820: - -0. As Mark mentions, its a scary place

[jira] [Commented] (LUCENE-6693) Permgen errors in 5.x on Jenkins builds with JDK 1.7

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6693?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640209#comment-14640209 ] ASF subversion and git services commented on LUCENE-6693: - Commit

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Shai Erera
Welcome! On Jul 24, 2015 11:13 AM, Han Jiang jiangha...@gmail.com wrote: Welcome, Christine! On Fri, Jul 24, 2015 at 3:27 PM, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Koji Sekiguchi
Congratulations, Christine! Koji On 2015/07/24 16:27, Adrien Grand wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your account is not entirely ready yet.

[jira] [Updated] (LUCENE-6694) Snowball stemmer for Lithuanian language

2015-07-24 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6694?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-6694: Fix Version/s: 5.3 Snowball stemmer for Lithuanian language

[jira] [Commented] (LUCENE-6694) Snowball stemmer for Lithuanian language

2015-07-24 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6694?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640412#comment-14640412 ] Robert Muir commented on LUCENE-6694: - Thanks for checking! I plan to commit this

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Mike Drob
Well done! On Fri, Jul 24, 2015 at 4:46 AM, Koji Sekiguchi koji.sekigu...@rondhuit.com wrote: Congratulations, Christine! Koji On 2015/07/24 16:27, Adrien Grand wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine,

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Shalin Shekhar Mangar
Welcome Christine! On Fri, Jul 24, 2015 at 12:57 PM, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your account is not

[jira] [Commented] (LUCENE-6693) Permgen errors in 5.x on Jenkins builds with JDK 1.7

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6693?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640252#comment-14640252 ] ASF subversion and git services commented on LUCENE-6693: - Commit

[jira] [Created] (LUCENE-6695) BlendedTermQuery

2015-07-24 Thread Adrien Grand (JIRA)
Adrien Grand created LUCENE-6695: Summary: BlendedTermQuery Key: LUCENE-6695 URL: https://issues.apache.org/jira/browse/LUCENE-6695 Project: Lucene - Core Issue Type: New Feature

[jira] [Updated] (LUCENE-6695) BlendedTermQuery

2015-07-24 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6695?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrien Grand updated LUCENE-6695: - Attachment: LUCENE-6695.patch Here is a patch: it computes the aggregated doc freq from several

[jira] [Updated] (LUCENE-6695) BlendedTermQuery

2015-07-24 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6695?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrien Grand updated LUCENE-6695: - Attachment: LUCENE-6695.patch Updated patch to apply Uwe's suggestion. By the way, the funny

[jira] [Commented] (LUCENE-6693) Permgen errors in 5.x on Jenkins builds with JDK 1.7

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6693?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640256#comment-14640256 ] ASF subversion and git services commented on LUCENE-6693: - Commit

[jira] [Commented] (LUCENE-6590) Explore different ways to apply boosts

2015-07-24 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640288#comment-14640288 ] Adrien Grand commented on LUCENE-6590: -- bq. What do you think is possible in terms

[jira] [Commented] (LUCENE-6695) BlendedTermQuery

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6695?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640326#comment-14640326 ] Uwe Schindler commented on LUCENE-6695: --- Would it be not better to use

[jira] [Commented] (LUCENE-6695) BlendedTermQuery

2015-07-24 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6695?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640330#comment-14640330 ] Adrien Grand commented on LUCENE-6695: -- Thanks Uwe, I'll do that. Eventually I would

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Erick Erickson
Glad to have you aboard! Erick On Fri, Jul 24, 2015 at 6:12 AM, Stefan Matheis ste...@mathe.is wrote: Congratulations, Christine! -Stefan On Friday, July 24, 2015 at 9:27 AM, Adrien Grand wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become

[JENKINS] Lucene-Solr-5.x-Linux (32bit/jdk1.7.0_80) - Build # 13407 - Failure!

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/13407/ Java: 32bit/jdk1.7.0_80 -server -XX:+UseParallelGC All tests passed Build Log: [...truncated 26839 lines...] -check-forbidden-all: [forbidden-apis] Reading bundled API signatures: jdk-unsafe-1.7 [forbidden-apis] Reading bundled

[jira] [Updated] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar updated SOLR-7825: Attachment: SOLR-7825.patch Thanks Oliver. This patch: # Fixes almost all places

[jira] [Commented] (SOLR-7819) ZkController.ensureReplicaInLeaderInitiatedRecovery does not respect retryOnConnLoss

2015-07-24 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7819?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640506#comment-14640506 ] Shalin Shekhar Mangar commented on SOLR-7819: - bq. I think we already do this,

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Mark Miller
Welcome! On Fri, Jul 24, 2015 at 11:09 AM Erick Erickson erickerick...@gmail.com wrote: Glad to have you aboard! Erick On Fri, Jul 24, 2015 at 6:12 AM, Stefan Matheis ste...@mathe.is wrote: Congratulations, Christine! -Stefan On Friday, July 24, 2015 at 9:27 AM, Adrien Grand

[jira] [Updated] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Oliver Schrenk (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oliver Schrenk updated SOLR-7825: - Attachment: slf4j.patch Use slf4j consistently -- Key:

[jira] [Commented] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Oliver Schrenk (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640504#comment-14640504 ] Oliver Schrenk commented on SOLR-7825: -- The logging implementations of dependencies

[jira] [Commented] (LUCENE-6694) Snowball stemmer for Lithuanian language

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6694?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640627#comment-14640627 ] ASF subversion and git services commented on LUCENE-6694: - Commit

[jira] [Updated] (SOLR-5022) PermGen exhausted test failures on Jenkins.

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-5022?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler updated SOLR-5022: Fix Version/s: (was: 5.0) (was: Trunk) 5.3 PermGen

[jira] [Reopened] (SOLR-5022) PermGen exhausted test failures on Jenkins.

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-5022?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler reopened SOLR-5022: - I want to reopen this. Recently because there were more and more libraries added to Solr's core, the

[jira] [Commented] (SOLR-7820) IndexFetcher should delete the current index directory before downloading the new index when isFullCopyNeeded==true

2015-07-24 Thread Timothy Potter (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7820?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640575#comment-14640575 ] Timothy Potter commented on SOLR-7820: -- Thanks for the feedback ... this actually came

[JENKINS] Lucene-Solr-trunk-Windows (32bit/jdk1.8.0_51) - Build # 5063 - Still Failing!

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Windows/5063/ Java: 32bit/jdk1.8.0_51 -client -XX:+UseSerialGC All tests passed Build Log: [...truncated 26241 lines...] -check-forbidden-all: [forbidden-apis] Reading bundled API signatures: jdk-unsafe-1.8 [forbidden-apis] Reading bundled

[jira] [Commented] (LUCENE-6694) Snowball stemmer for Lithuanian language

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6694?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640664#comment-14640664 ] ASF subversion and git services commented on LUCENE-6694: - Commit

[jira] [Resolved] (LUCENE-6694) Snowball stemmer for Lithuanian language

2015-07-24 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6694?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved LUCENE-6694. - Resolution: Fixed Thanks Dainius! Snowball stemmer for Lithuanian language

RE: Solr 5.x tests sometimes fail with PermGen error

2015-07-24 Thread Uwe Schindler
FYI: Windows does not fail, although it uses 2 JVMs to run tests, because it excludes HDFS/Hadoop. 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:

[jira] [Commented] (LUCENE-6696) FilterDirectoryReader.doClose() should call in.close() not in.doClose()

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640549#comment-14640549 ] ASF subversion and git services commented on LUCENE-6696: - Commit

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_51) - Build # 13586 - Failure!

2015-07-24 Thread Adrien Grand
I'll fix, sorry for the noise. On Fri, Jul 24, 2015 at 4:47 PM, Policeman Jenkins Server jenk...@thetaphi.de wrote: Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/13586/ Java: 64bit/jdk1.8.0_51 -XX:+UseCompressedOops -XX:+UseParallelGC All tests passed Build Log:

RE: Solr 5.x tests sometimes fail with PermGen error

2015-07-24 Thread Uwe Schindler
I reopened https://issues.apache.org/jira/browse/SOLR-5022. - 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: Friday, July 24, 2015 4:14 PM To:

[JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_51) - Build # 13586 - Failure!

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/13586/ Java: 64bit/jdk1.8.0_51 -XX:+UseCompressedOops -XX:+UseParallelGC All tests passed Build Log: [...truncated 26369 lines...] -check-forbidden-all: [forbidden-apis] Reading bundled API signatures: jdk-unsafe-1.8 [forbidden-apis]

[jira] [Commented] (SOLR-6688) There should be no error about a non-required file admin-extra.html

2015-07-24 Thread Tramel Jones (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-6688?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640547#comment-14640547 ] Tramel Jones commented on SOLR-6688: Is this still the preferred solution to the

[jira] [Commented] (LUCENE-6696) FilterDirectoryReader.doClose() should call in.close() not in.doClose()

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640551#comment-14640551 ] ASF subversion and git services commented on LUCENE-6696: - Commit

[jira] [Commented] (SOLR-7804) TestCloudPivotFacet failures: expected:X but was:Y

2015-07-24 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14641036#comment-14641036 ] Steve Rowe commented on SOLR-7804: -- I looked through recent failures on my Jenkins for

[jira] [Assigned] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar reassigned SOLR-7825: --- Assignee: Shalin Shekhar Mangar Use slf4j consistently

[jira] [Updated] (SOLR-5022) PermGen exhausted test failures on Jenkins.

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-5022?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler updated SOLR-5022: Priority: Critical (was: Major) PermGen exhausted test failures on Jenkins.

[jira] [Commented] (SOLR-5022) PermGen exhausted test failures on Jenkins.

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-5022?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640522#comment-14640522 ] Uwe Schindler commented on SOLR-5022: - See:

[jira] [Updated] (SOLR-7227) Solr distribution archive should have the WAR file extracted already

2015-07-24 Thread Timothy Potter (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7227?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Timothy Potter updated SOLR-7227: - Attachment: SOLR-7227.patch Updated patch that removes the server/webapps directory as well;

[jira] [Commented] (SOLR-7804) TestCloudPivotFacet failures: expected:X but was:Y

2015-07-24 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14641088#comment-14641088 ] Steve Rowe commented on SOLR-7804: -- About the OOM failure mode: I don't have time to fully

[jira] [Commented] (SOLR-7804) TestCloudPivotFacet failures: expected:X but was:Y

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640785#comment-14640785 ] ASF subversion and git services commented on SOLR-7804: --- Commit

[JENKINS] Lucene-Solr-NightlyTests-5.x - Build # 909 - Still Failing

2015-07-24 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-NightlyTests-5.x/909/ 1 tests failed. FAILED: org.apache.solr.cloud.CollectionsAPIDistributedZkTest.test Error Message: Captured an uncaught exception in thread: Thread[id=6896, name=collection5, state=RUNNABLE,

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Joel Bernstein
Welcome Christine! Joel Bernstein http://joelsolr.blogspot.com/ On Fri, Jul 24, 2015 at 12:41 PM, Erik Hatcher erik.hatc...@gmail.com wrote: Welcome aboard, Christine! On Jul 24, 2015, at 03:27, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has

[jira] [Commented] (SOLR-7804) TestCloudPivotFacet failures: expected:X but was:Y

2015-07-24 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640773#comment-14640773 ] Hoss Man commented on SOLR-7804: There's two distinct types of failures here.. *

[jira] [Created] (SOLR-7828) add a new facet function to pick one result's value

2015-07-24 Thread Gary Yang (JIRA)
Gary Yang created SOLR-7828: --- Summary: add a new facet function to pick one result's value Key: SOLR-7828 URL: https://issues.apache.org/jira/browse/SOLR-7828 Project: Solr Issue Type: New Feature

Re:Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Christine Poerschke (BLOOMBERG/ LONDON)
Thanks for the invitation and all the welcomes! super brief bio: * based in the UK (originally from Germany) * software developer in the News Search team at Bloomberg in London (joined Bloomberg RD more than 10 years ago, directly after BSc and PhD time at university) * hobby beekeeper

[jira] [Comment Edited] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640844#comment-14640844 ] Uwe Schindler edited comment on SOLR-7825 at 7/24/15 6:10 PM: --

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Michael McCandless
Welcome Christine! Mike McCandless http://blog.mikemccandless.com On Fri, Jul 24, 2015 at 3:27 AM, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce

[jira] [Commented] (LUCENE-6590) Explore different ways to apply boosts

2015-07-24 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640729#comment-14640729 ] Yonik Seeley commented on LUCENE-6590: -- bq. That's an interesting idea but I think

[jira] [Commented] (SOLR-7804) TestCloudPivotFacet failures: expected:X but was:Y

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640775#comment-14640775 ] ASF subversion and git services commented on SOLR-7804: --- Commit

[jira] [Updated] (SOLR-7828) add a facet function to pick one result's value

2015-07-24 Thread Gary Yang (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary Yang updated SOLR-7828: Summary: add a facet function to pick one result's value (was: add a new facet function to pick one

[jira] [Commented] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Shai Erera (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640771#comment-14640771 ] Shai Erera commented on SOLR-7825: -- [~shalinmangar] I think I left it there by mistake,

[jira] [Updated] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar updated SOLR-7825: Attachment: SOLR-7825.patch Thanks for reviewing, Uwe! This patch incorporates both

[JENKINS] Lucene-Solr-Tests-5.x-Java7 - Build # 3368 - Failure

2015-07-24 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-Tests-5.x-Java7/3368/ 1 tests failed. FAILED: junit.framework.TestSuite.org.apache.solr.cloud.HttpPartitionTest Error Message: ObjectTracker found 1 object(s) that were not released!!! [TransactionLog] Stack Trace: java.lang.AssertionError:

[JENKINS] Lucene-Solr-5.x-Windows (64bit/jdk1.8.0_51) - Build # 4937 - Failure!

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Windows/4937/ Java: 64bit/jdk1.8.0_51 -XX:+UseCompressedOops -XX:+UseConcMarkSweepGC 1 tests failed. FAILED: org.apache.solr.handler.TestReplicationHandler.doTestStressReplication Error Message: [index.20150725062247601,

Possible deadlock in DefaultSolrCoreState?

2015-07-24 Thread Erick Erickson
I was looking at a report from the field where apparently writerFree and pauseWriter get out of sync. Looking at the code in DefaultSolrCoreState I saw something and wondered if I'm off chasing an untamed ornithoid. The precursor was a RELOAD operation on the collection. In closeIndexWriter,

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Jan Høydahl
Welcome, Christine! -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com 24. jul. 2015 kl. 09.27 skrev Adrien Grand jpou...@gmail.com: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition

[jira] [Commented] (SOLR-7760) Fix method and field visibility for UIMAUpdateRequestProcessor and SolrUIMAConfiguration

2015-07-24 Thread Tommaso Teofili (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7760?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640473#comment-14640473 ] Tommaso Teofili commented on SOLR-7760: --- I remember myself having the same need some

[jira] [Comment Edited] (SOLR-7760) Fix method and field visibility for UIMAUpdateRequestProcessor and SolrUIMAConfiguration

2015-07-24 Thread Tommaso Teofili (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7760?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640473#comment-14640473 ] Tommaso Teofili edited comment on SOLR-7760 at 7/24/15 1:54 PM:

[JENKINS] Lucene-Solr-Tests-trunk-Java8 - Build # 230 - Failure

2015-07-24 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-Tests-trunk-Java8/230/ 1 tests failed. REGRESSION: org.apache.solr.cloud.CdcrReplicationHandlerTest.doTest Error Message: There are still nodes recoverying - waited for 330 seconds Stack Trace: java.lang.AssertionError: There are still nodes

[jira] [Resolved] (LUCENE-6696) FilterDirectoryReader.doClose() should call in.close() not in.doClose()

2015-07-24 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrien Grand resolved LUCENE-6696. -- Resolution: Fixed Fix Version/s: 5.3 FilterDirectoryReader.doClose() should call

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

2015-07-24 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-MacOSX/2493/ Java: 64bit/jdk1.7.0 -XX:-UseCompressedOops -XX:+UseConcMarkSweepGC 1 tests failed. FAILED: org.apache.solr.TestDistributedSearch.test Error Message: Error from server at https://127.0.0.1:57406//collection1:

RE: Solr 5.x tests sometimes fail with PermGen error

2015-07-24 Thread Uwe Schindler
Next failure: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-MacOSX/2493/console Had to kill manually. We should really fix that! No build with JDK 1.7 succeeds anymore! So something must have changed that uses tons of permgen! Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen

[jira] [Created] (SOLR-7830) topdocs facet function

2015-07-24 Thread Yonik Seeley (JIRA)
Yonik Seeley created SOLR-7830: -- Summary: topdocs facet function Key: SOLR-7830 URL: https://issues.apache.org/jira/browse/SOLR-7830 Project: Solr Issue Type: New Feature Components:

[jira] [Commented] (LUCENE-6693) Permgen errors in 5.x on Jenkins builds with JDK 1.7

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6693?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14641002#comment-14641002 ] ASF subversion and git services commented on LUCENE-6693: - Commit

[jira] [Commented] (LUCENE-6693) Permgen errors in 5.x on Jenkins builds with JDK 1.7

2015-07-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6693?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14641005#comment-14641005 ] ASF subversion and git services commented on LUCENE-6693: - Commit

[jira] [Commented] (LUCENE-6693) Permgen errors in 5.x on Jenkins builds with JDK 1.7

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6693?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14641007#comment-14641007 ] Uwe Schindler commented on LUCENE-6693: --- After analyzing Jenkins build logs, I

[jira] [Created] (SOLR-7829) Pivot Facet Bug: facet.missing=true + facet.sort=index facet.pivot.mincount ? == incorrect missing count

2015-07-24 Thread Hoss Man (JIRA)
Hoss Man created SOLR-7829: -- Summary: Pivot Facet Bug: facet.missing=true + facet.sort=index facet.pivot.mincount ? == incorrect missing count Key: SOLR-7829 URL: https://issues.apache.org/jira/browse/SOLR-7829

[jira] [Assigned] (SOLR-7804) TestCloudPivotFacet failures: expected:X but was:Y

2015-07-24 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hoss Man reassigned SOLR-7804: -- Assignee: Hoss Man TestCloudPivotFacet failures: expected:X but was:Y

[jira] [Commented] (SOLR-7804) TestCloudPivotFacet failures: expected:X but was:Y

2015-07-24 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640899#comment-14640899 ] Hoss Man commented on SOLR-7804: Confirmed the facet.missing count discrepency is a

[jira] [Updated] (SOLR-7828) add a facet function to pick one result's value

2015-07-24 Thread Gary Yang (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary Yang updated SOLR-7828: Description: The facet functions and analytics working great, especially with json API ! As a developer, I

Re: Welcome Christine Poerschke as Lucene/Solr committer

2015-07-24 Thread Erik Hatcher
Welcome aboard, Christine! On Jul 24, 2015, at 03:27, Adrien Grand jpou...@gmail.com wrote: I'm pleased to announce that Christine Poerschke has accepted the PMC's invitation to become a committer. Christine, it's tradition that you introduce yourself with a brief bio. Your account is

[jira] [Commented] (SOLR-7825) Use slf4j consistently

2015-07-24 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7825?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14640844#comment-14640844 ] Uwe Schindler commented on SOLR-7825: - Some comments: - MapReduceIndexertool still

  1   2   >