Re: [ANNOUNCE] Apache PyLucene 4.3.0

2013-05-15 Thread Andi Vajda
On Wed, 15 May 2013, Robert Muir wrote: I got it working, with 2 steps: 1. force staging to rebuild, by making a commit under templates/ that just added a space inside a comment 2. deploy staging to production, by clicking https://cms.apache.org/lucene/publish Oh, I didn't know about step

[jira] [Updated] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher updated SOLR-1913: -- Attachment: WEB-INF lib.jpg QParserPlugin plugin for Search Results Filtering Based on Bitwise

[jira] [Commented] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658126#comment-13658126 ] Christopher commented on SOLR-1913: --- Hi Deepthi Sigireddi, I attached a screenshot of my

[jira] [Comment Edited] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658126#comment-13658126 ] Christopher edited comment on SOLR-1913 at 5/15/13 7:07 AM: Hi

[jira] [Commented] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658143#comment-13658143 ] Christopher commented on SOLR-1913: --- It works with solr 4.2.1 !

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Steve Rowe
Shai, that .sha1 file was not leftover - I just added it. After you removed it, I now get the following from 'ant validate-maven-dependencies': - -validate-maven-dependencies: [licenses] MISSING sha1 checksum file for:

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Shai Erera
Steve, I discussed this w/ Robert before I removed the file. Robert explained me that jar-checksums removes any license files that without a matching .jar and then check-svn-working-copy reports a dirty checkout. Why is this file required by maven? At any rate, I don't understand what's going

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Steve Rowe
Shai, As I mentioned in another email thread, the Ant+Ivy setup for the replicator module renames remote dependency javax.servlet-3.0.0.v201112011016.jar to local filename servlet-api-3.0.jar - I don't know how or why. As a result, the checksum, license and notice files in lucene/licenses/

RE: svn commit: r1482642 - /lucene/dev/branches/lucene_solr_4_3/lucene/core/src/java/org/apache/lucene/util/Constants.java

2013-05-15 Thread Uwe Schindler
Are we sure that this is the right thing? The LUCENE_MAIN_VERSION is used for index compatibility and should always be only in X.Y format. Please revert this! - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original Message-

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Shai Erera
I copied the replicator's ivy dependencies from Solr's. In replicator/build.xml you can find the copy/renaming thing, I think that I tried also without it, but something else broke, I don't remember what though. So the question is I guess, how does the maven dependency check passes for Solr?

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Steve Rowe
Looks like the Solr build is just ignoring the servlet jar for the purposes of license/checksum validation - from solr/common-build.xml: - target name=-validate-maven-dependencies depends=-validate-maven-dependencies.init m2-validate-dependencies pom.xml=${maven.pom.xml}

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Shai Erera
I added something like that to lucene/build.xml$check-licenses. Perhaps we should add the same to validate-maven-dependencies? Shai On Wed, May 15, 2013 at 11:33 AM, Steve Rowe sar...@gmail.com wrote: Looks like the Solr build is just ignoring the servlet jar for the purposes of

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Steve Rowe
Here's lucene/build.xml$check-licenses - nothing in there about the servlet api jar?: - target name=check-licenses depends=compile-tools,resolve,load-custom-tasks description=Validate license stuff. license-check-macro dir=${basedir} licensedir=${common.dir}/licenses

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Shai Erera
Right, I now remember it was for jetty, because there are many jetty jars, but only one license. Maybe just add the same ignore from solr to lucene/build.xml? Shai On Wed, May 15, 2013 at 12:04 PM, Steve Rowe sar...@gmail.com wrote: Here's lucene/build.xml$check-licenses - nothing in there

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Steve Rowe
I'd rather not skip the license/checksum checking - I'll look into fixing the Solr issue once the replicator situation has stabilized. I'm investigating not renaming the jar in the Ant+Ivy build, which should make the Maven stuff just work, I hope. I'll get back to this in a few hours. Steve

[jira] [Commented] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658198#comment-13658198 ] Christopher commented on SOLR-1913: --- I don't know if I correctly use the plugin or if

[jira] [Comment Edited] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658198#comment-13658198 ] Christopher edited comment on SOLR-1913 at 5/15/13 9:40 AM: I

[jira] [Comment Edited] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658198#comment-13658198 ] Christopher edited comment on SOLR-1913 at 5/15/13 9:40 AM: I

[jira] [Comment Edited] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658198#comment-13658198 ] Christopher edited comment on SOLR-1913 at 5/15/13 9:41 AM: I

[jira] [Comment Edited] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658198#comment-13658198 ] Christopher edited comment on SOLR-1913 at 5/15/13 9:41 AM: I

[jira] [Comment Edited] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658198#comment-13658198 ] Christopher edited comment on SOLR-1913 at 5/15/13 9:42 AM: I

Re: [JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0-ea-b86) - Build # 5661 - Still Failing!

2013-05-15 Thread Shai Erera
Fine with me. I don't really care how the jar is called :). Was only trying to make the build happy. Shai On Wed, May 15, 2013 at 12:19 PM, Steve Rowe sar...@gmail.com wrote: I'd rather not skip the license/checksum checking - I'll look into fixing the Solr issue once the replicator

[jira] [Updated] (LUCENE-4901) TestIndexWriterOnJRECrash should work on any JRE vendor via Runtime.halt()

2013-05-15 Thread Dawid Weiss (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4901?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dawid Weiss updated LUCENE-4901: Attachment: LUCENE-4901.patch A version with runtime.halt() fallback for JVMs on which unsafe npe

[jira] [Resolved] (LUCENE-4901) TestIndexWriterOnJRECrash should work on any JRE vendor via Runtime.halt()

2013-05-15 Thread Dawid Weiss (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4901?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dawid Weiss resolved LUCENE-4901. - Resolution: Fixed TestIndexWriterOnJRECrash should work on any JRE vendor via

[jira] [Updated] (SOLR-4734) Can not create collection via collections API on empty solr

2013-05-15 Thread Alexander Eibner (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexander Eibner updated SOLR-4734: --- Affects Version/s: 4.3 Can not create collection via collections API on empty solr

Re: New query parser?

2013-05-15 Thread Roman Chyla
Hi Jan, Thanks for thumbs up On Tue, May 14, 2013 at 11:14 AM, Jan Høydahl jan@cominvent.com wrote: Hello :) I think it has been the intention of the dev community for a long time to start using the flex parser framework, and in this regard this contribution is much welcome as a

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

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

Re: svn commit: r1482642 - /lucene/dev/branches/lucene_solr_4_3/lucene/core/src/java/org/apache/lucene/util/Constants.java

2013-05-15 Thread Robert Muir
On Wed, May 15, 2013 at 4:23 AM, Uwe Schindler u...@thetaphi.de wrote: Are we sure that this is the right thing? The LUCENE_MAIN_VERSION is used for index compatibility and should always be only in X.Y format. Please revert this! Uwe is correct: please only adjust build.xml here or

[jira] [Commented] (LUCENE-3422) IndeIndexWriter.optimize() throws FileNotFoundException and IOException

2013-05-15 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3422?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658277#comment-13658277 ] Michael McCandless commented on LUCENE-3422: If you are keeping an

[jira] [Commented] (LUCENE-3422) IndeIndexWriter.optimize() throws FileNotFoundException and IOException

2013-05-15 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3422?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658280#comment-13658280 ] Robert Muir commented on LUCENE-3422: - is this on a nfs filesystem?

Re: svn commit: r1482642 - /lucene/dev/branches/lucene_solr_4_3/lucene/core/src/java/org/apache/lucene/util/Constants.java

2013-05-15 Thread Robert Muir
I double checked (also 3.6.1, 3.6.2, and 4.2.1 releases): hossman's commit is correct actually. This is the one used for back compat (its tested with the version comparator), but its just marking which version of lucene wrote the segment. The variable name should really be changed, MAIN says

[jira] [Commented] (LUCENE-4583) StraightBytesDocValuesField fails if bytes 32k

2013-05-15 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4583?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658287#comment-13658287 ] Robert Muir commented on LUCENE-4583: - You convinced me dont worry, you convinced me

[jira] [Comment Edited] (SOLR-4744) Version conflict error during shard split test

2013-05-15 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4744?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13657460#comment-13657460 ] Yonik Seeley edited comment on SOLR-4744 at 5/15/13 12:26 PM: --

[jira] [Created] (SOLR-4823) Split LBHttpLoadBalancer into two classes one for the solrj use case and one for the solr cloud use case

2013-05-15 Thread philip hoy (JIRA)
philip hoy created SOLR-4823: Summary: Split LBHttpLoadBalancer into two classes one for the solrj use case and one for the solr cloud use case Key: SOLR-4823 URL: https://issues.apache.org/jira/browse/SOLR-4823

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658306#comment-13658306 ] Joel Bernstein commented on SOLR-4816: -- Hoss, sounds good I'll work this into the next

[jira] [Commented] (SOLR-4618) Integrate LucidWorks' Solr Reference Guide with Solr documentation

2013-05-15 Thread Alexandre Rafalovitch (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4618?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658311#comment-13658311 ] Alexandre Rafalovitch commented on SOLR-4618: - Just some thoughts: # Apache

[jira] [Updated] (SOLR-4823) Split LBHttpSolrServer into two classes one for the solrj use case and one for the solr cloud use case

2013-05-15 Thread philip hoy (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4823?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] philip hoy updated SOLR-4823: - Summary: Split LBHttpSolrServer into two classes one for the solrj use case and one for the solr cloud

[jira] [Assigned] (SOLR-4734) Can not create collection via collections API on empty solr

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller reassigned SOLR-4734: - Assignee: Mark Miller Can not create collection via collections API on empty solr

[jira] [Commented] (SOLR-4734) Can not create collection via collections API on empty solr

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658327#comment-13658327 ] Mark Miller commented on SOLR-4734: --- Could use a better erorr message - it's not finding

[jira] [Updated] (SOLR-4734) Can not create collection via collections API on empty solr

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller updated SOLR-4734: -- Fix Version/s: 4.4 5.0 Can not create collection via collections API on empty

[jira] [Commented] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Deepthi Sigireddi (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658348#comment-13658348 ] Deepthi Sigireddi commented on SOLR-1913: - Christopher, I'm sorry but I don't

[jira] [Updated] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Joel Bernstein updated SOLR-4816: - Attachment: SOLR-4816.patch No longer going to the core url directly with updates and instead

[jira] [Comment Edited] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658360#comment-13658360 ] Joel Bernstein edited comment on SOLR-4816 at 5/15/13 1:40 PM:

Re: [jira] [Created] (SOLR-4822) SOLR for SharePoint Indexing and search

2013-05-15 Thread Jack Krupansky
This is not a bug in Solr! Please ask this type of question on the Solr user email list first. I'm sure people will be happy to answer it there. -- Jack Krupansky -Original Message- From: jaya shankar (JIRA) Sent: Wednesday, May 15, 2013 12:59 AM To: dev@lucene.apache.org Subject:

[jira] [Updated] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Stephen Riesenberg (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stephen Riesenberg updated SOLR-4816: - Attachment: SOLR-4816-sriesenberg.patch First attempt. This patch is to fix issues with

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Stephen Riesenberg (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658364#comment-13658364 ] Stephen Riesenberg commented on SOLR-4816: -- Oops, I missed your latest. I'll check

[jira] [Comment Edited] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Stephen Riesenberg (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658364#comment-13658364 ] Stephen Riesenberg edited comment on SOLR-4816 at 5/15/13 1:55 PM:

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658386#comment-13658386 ] Joel Bernstein commented on SOLR-4816: -- Stephen, I see what you did with the

[jira] [Updated] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Joel Bernstein updated SOLR-4816: - Attachment: SOLR-4816.patch Added Stephen's code fixing NPE with when params and/or collection is

[jira] [Comment Edited] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658392#comment-13658392 ] Joel Bernstein edited comment on SOLR-4816 at 5/15/13 2:21 PM:

[jira] [Commented] (SOLR-1913) QParserPlugin plugin for Search Results Filtering Based on Bitwise Operations on Integer Fields

2013-05-15 Thread Christopher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1913?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658421#comment-13658421 ] Christopher commented on SOLR-1913: --- Sorry, I made a mistake, the plugin works correctly!

[jira] [Commented] (SOLR-4734) Can not create collection via collections API on empty solr

2013-05-15 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658431#comment-13658431 ] Shawn Heisey commented on SOLR-4734: One other thing in addition to Mark's note - the

[ANNOUNCE] Apache PyLucene 4.3.0

2013-05-15 Thread Andi Vajda
I am pleased to announce the availability of Apache PyLucene 4.3.0, the first PyLucene release wrapping the Lucene 4.x API. Apache PyLucene, a subproject of Apache Lucene, is a Python extension for accessing Apache Lucene Core. Its goal is to allow you to use Lucene's text indexing and

[jira] [Commented] (SOLR-3369) shards.tolerant=true broken on group and facet queries

2013-05-15 Thread Jabouille jean Charles (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658443#comment-13658443 ] Jabouille jean Charles commented on SOLR-3369: -- Hi, here is a test, you just

[jira] [Commented] (SOLR-4734) Can not create collection via collections API on empty solr

2013-05-15 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658445#comment-13658445 ] Shawn Heisey commented on SOLR-4734: Another note: The linkconfig might in fact be

[jira] [Commented] (SOLR-4734) Can not create collection via collections API on empty solr

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658459#comment-13658459 ] Mark Miller commented on SOLR-4734: --- bq. at that point, the collection doesn't exist, so

RE: svn commit: r1482642 - /lucene/dev/branches/lucene_solr_4_3/lucene/core/src/java/org/apache/lucene/util/Constants.java

2013-05-15 Thread Uwe Schindler
Hi, ok, I just wanted to be sure! I double checked (also 3.6.1, 3.6.2, and 4.2.1 releases): hossman's commit is correct actually. This is the one used for back compat (its tested with the version comparator), but its just marking which version of lucene wrote the segment. The variable

[jira] [Updated] (SOLR-4734) Leader election fails with an NPE if there is no UpdateLog.

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller updated SOLR-4734: -- Priority: Minor (was: Major) Summary: Leader election fails with an NPE if there is no UpdateLog.

[jira] [Commented] (SOLR-4734) Leader election fails with an NPE if there is no UpdateLog.

2013-05-15 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658478#comment-13658478 ] Shawn Heisey commented on SOLR-4734: bq. You can link before the collection exists -

[jira] [Resolved] (SOLR-4822) SOLR for SharePoint Indexing and search

2013-05-15 Thread Ryan McKinley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4822?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ryan McKinley resolved SOLR-4822. - Resolution: Invalid check: http://manifoldcf.apache.org SOLR for SharePoint

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Stephen Riesenberg (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658510#comment-13658510 ] Stephen Riesenberg commented on SOLR-4816: -- Fixed several other NPEs before

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658516#comment-13658516 ] Joel Bernstein commented on SOLR-4816: -- Stephen, let's discuss offline. Just sent you

[jira] [Commented] (LUCENE-4981) Deprecate PositionFilter

2013-05-15 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4981?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658517#comment-13658517 ] Steve Rowe commented on LUCENE-4981: Adrien, I looked

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658531#comment-13658531 ] Mark Miller commented on SOLR-4816: --- Seems we should be batching bulk docs up based on

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658532#comment-13658532 ] Mark Miller commented on SOLR-4816: --- Ah, glanced too quickly - that is what is happening

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658536#comment-13658536 ] Mark Miller commented on SOLR-4816: --- bq. Fixed several other NPEs before getting to the

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658543#comment-13658543 ] Yonik Seeley commented on SOLR-4816: bq. Any idea how to get the correct DocRouter for

[jira] [Commented] (LUCENE-4981) Deprecate PositionFilter

2013-05-15 Thread Adrien Grand (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4981?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658546#comment-13658546 ] Adrien Grand commented on LUCENE-4981: -- bq. Without PositionFilter, is there some

Re: [ANNOUNCE] Apache PyLucene 4.3.0

2013-05-15 Thread Michael McCandless
Hmm the web site News section doesn't have 4.3.0? Mike McCandless http://blog.mikemccandless.com On Wed, May 15, 2013 at 11:14 AM, Andi Vajda va...@apache.org wrote: I am pleased to announce the availability of Apache PyLucene 4.3.0, the first PyLucene release wrapping the Lucene 4.x API.

[jira] [Resolved] (SOLR-4734) Leader election fails with an NPE if there is no UpdateLog.

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller resolved SOLR-4734. --- Resolution: Fixed Leader election fails with an NPE if there is no UpdateLog.

[jira] [Assigned] (SOLR-4805) Calling Collection RELOAD where collection has a single core, leaves collection offline and unusable till reboot

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4805?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller reassigned SOLR-4805: - Assignee: Mark Miller Calling Collection RELOAD where collection has a single core, leaves

[jira] [Updated] (SOLR-4805) Calling Collection RELOAD where collection has a single core, leaves collection offline and unusable till reboot

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4805?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller updated SOLR-4805: -- Fix Version/s: 4.4 5.0 Calling Collection RELOAD where collection has a single

[jira] [Commented] (LUCENE-4981) Deprecate PositionFilter

2013-05-15 Thread Steve Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-4981?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658577#comment-13658577 ] Steve Rowe commented on LUCENE-4981: bq. So I don't really think this is a use-case

slf4j version included in Solr

2013-05-15 Thread Shawn Heisey
I'm wondering if there's a valid technical reason why we're on an older minor release of slf4j in Solr. I've upgraded my slf4j components to 1.7.5 and haven't seen any problem. Thanks, Shawn - To unsubscribe, e-mail:

Re: [ANNOUNCE] Apache PyLucene 4.3.0

2013-05-15 Thread Andi Vajda
On May 15, 2013, at 10:08, Michael McCandless luc...@mikemccandless.com wrote: Hmm the web site News section doesn't have 4.3.0? I checked in the web site change last night. It probably needs some propagation time ? Andi.. Mike McCandless http://blog.mikemccandless.com On Wed,

[JENKINS-MAVEN] Lucene-Solr-Maven-trunk #851: POMs out of sync

2013-05-15 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-Maven-trunk/851/ 1 tests failed. REGRESSION: org.apache.solr.cloud.SyncSliceTest.testDistribSearch Error Message: shard1 is not consistent. Got 305 from http://127.0.0.1:28511/collection1lastClient and got 5 from

[jira] [Commented] (SOLR-3369) shards.tolerant=true broken on group and facet queries

2013-05-15 Thread Russell Black (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658664#comment-13658664 ] Russell Black commented on SOLR-3369: - This test case fail sometimes because it

[jira] [Comment Edited] (SOLR-3369) shards.tolerant=true broken on group and facet queries

2013-05-15 Thread Russell Black (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658664#comment-13658664 ] Russell Black edited comment on SOLR-3369 at 5/15/13 6:53 PM: --

[jira] [Created] (SOLR-4824) Faceting results are changed after ingestion of documents past a certain number

2013-05-15 Thread Lakshmi Venkataswamy (JIRA)
Lakshmi Venkataswamy created SOLR-4824: -- Summary: Faceting results are changed after ingestion of documents past a certain number Key: SOLR-4824 URL: https://issues.apache.org/jira/browse/SOLR-4824

[jira] [Updated] (SOLR-4824) Fuzzy / Faceting results are changed after ingestion of documents past a certain number

2013-05-15 Thread Lakshmi Venkataswamy (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4824?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lakshmi Venkataswamy updated SOLR-4824: --- Summary: Fuzzy / Faceting results are changed after ingestion of documents past a

[jira] [Updated] (SOLR-4824) Fuzzy / Faceting results are changed after ingestion of documents past a certain number

2013-05-15 Thread Lakshmi Venkataswamy (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4824?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lakshmi Venkataswamy updated SOLR-4824: --- Description: In upgrading from SOLR 3.6 to 4.2/4.3 and comparing results on fuzzy

[jira] [Updated] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Joel Bernstein (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Joel Bernstein updated SOLR-4816: - Description: This issue changes CloudSolrServer so it routes update requests to the correct

[jira] [Commented] (SOLR-4823) Split LBHttpSolrServer into two classes one for the solrj use case and one for the solr cloud use case

2013-05-15 Thread JIRA
[ https://issues.apache.org/jira/browse/SOLR-4823?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658700#comment-13658700 ] Jan Høydahl commented on SOLR-4823: --- Yea, load balancing should be handled separately for

[jira] [Commented] (SOLR-4824) Fuzzy / Faceting results are changed after ingestion of documents past a certain number

2013-05-15 Thread Jack Krupansky (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4824?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658718#comment-13658718 ] Jack Krupansky commented on SOLR-4824: -- Lucene FuzzyQuery has a parameter named

[jira] [Updated] (SOLR-4048) Add a getRecursive method to NamedList

2013-05-15 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4048?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shawn Heisey updated SOLR-4048: --- Attachment: SOLR-4048.patch Updated patch following advice from [~rcmuir] and improving the javadoc.

[jira] [Commented] (SOLR-4048) Add a getRecursive method to NamedList

2013-05-15 Thread Shawn Heisey (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4048?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658724#comment-13658724 ] Shawn Heisey commented on SOLR-4048: Adding find and deprecating get seems reasonable

[jira] [Created] (SOLR-4825) Port SolrLogFormatter to log4j

2013-05-15 Thread Mark Miller (JIRA)
Mark Miller created SOLR-4825: - Summary: Port SolrLogFormatter to log4j Key: SOLR-4825 URL: https://issues.apache.org/jira/browse/SOLR-4825 Project: Solr Issue Type: Test Reporter:

[jira] [Commented] (SOLR-4824) Fuzzy / Faceting results are changed after ingestion of documents past a certain number

2013-05-15 Thread Lakshmi Venkataswamy (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4824?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658732#comment-13658732 ] Lakshmi Venkataswamy commented on SOLR-4824: Not sure I understand. When I

[jira] [Updated] (SOLR-4825) Port SolrLogFormatter to log4j

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller updated SOLR-4825: -- Attachment: SOLR-4825.patch Patch attached. Port SolrLogFormatter to log4j

[jira] [Updated] (SOLR-4825) Port SolrLogFormatter to log4j

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller updated SOLR-4825: -- Fix Version/s: 4.4 5.0 Port SolrLogFormatter to log4j

[jira] [Assigned] (SOLR-4825) Port SolrLogFormatter to log4j

2013-05-15 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Miller reassigned SOLR-4825: - Assignee: Mark Miller Port SolrLogFormatter to log4j --

[jira] [Commented] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Stephen Riesenberg (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658772#comment-13658772 ] Stephen Riesenberg commented on SOLR-4816: -- {quote}It's collection specific. See

[jira] [Comment Edited] (SOLR-4816) Change CloudSolrServer to send updates to the correct shard

2013-05-15 Thread Stephen Riesenberg (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-4816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13658772#comment-13658772 ] Stephen Riesenberg edited comment on SOLR-4816 at 5/15/13 8:57 PM:

[jira] [Created] (SOLR-4826) TikaException Parsing PPTX file

2013-05-15 Thread Thomas Weidman (JIRA)
Thomas Weidman created SOLR-4826: Summary: TikaException Parsing PPTX file Key: SOLR-4826 URL: https://issues.apache.org/jira/browse/SOLR-4826 Project: Solr Issue Type: Bug

Help working with patch for SOLR-3076 (Block Joins)

2013-05-15 Thread Tom Burton-West
Hello, I would like to build Solr with the July 12th Solr-3076 patch. How do I determine what version/revision of Solr I need to check out to build this patch against? I tried using the latest branch_4x and got a bunch of errors. I suspect I need an earlier revision or maybe trunk. This

[jira] [Updated] (SOLR-3369) shards.tolerant=true broken on group and facet queries

2013-05-15 Thread Russell Black (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Russell Black updated SOLR-3369: Attachment: (was: SOLR-3369-shards-tolerant.patch) shards.tolerant=true broken on group

[jira] [Updated] (SOLR-3369) shards.tolerant=true broken on group and facet queries

2013-05-15 Thread Russell Black (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Russell Black updated SOLR-3369: Attachment: SOLR-3369-shards-tolerant.patch Added test case shards.tolerant=true

[jira] [Comment Edited] (SOLR-3369) shards.tolerant=true broken on group and facet queries

2013-05-15 Thread Russell Black (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13659018#comment-13659018 ] Russell Black edited comment on SOLR-3369 at 5/15/13 11:33 PM:

[jira] [Commented] (SOLR-3369) shards.tolerant=true broken on group and facet queries

2013-05-15 Thread Ryan McKinley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-3369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13659021#comment-13659021 ] Ryan McKinley commented on SOLR-3369: - latest patch adds: {code} + // test group

[JENKINS] Lucene-Solr-4.x-Windows (32bit/jdk1.6.0_45) - Build # 2791 - Failure!

2013-05-15 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-4.x-Windows/2791/ Java: 32bit/jdk1.6.0_45 -client -XX:+UseParallelGC 1 tests failed. FAILED: junit.framework.TestSuite.org.apache.solr.update.processor.RegexBoostProcessorTest Error Message: Clean up static fields (in @AfterClass?), your test

  1   2   >