[jira] Updated: (SOLR-1352) DIH: MultiThreaded

2009-11-13 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noble Paul updated SOLR-1352: - Attachment: SOLR-1352.patch first cut an ugly patch. a lot of work left before putting it in DIH:

[jira] Updated: (SOLR-1352) DIH: MultiThreaded

2009-11-13 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noble Paul updated SOLR-1352: - Description: It has been a long pending request to make DIH multithreaded. Now that we have implemented

[jira] Assigned: (SOLR-1561) Import Lucene 2.9.1 Geospatial JAR

2009-11-13 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1561?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Grant Ingersoll reassigned SOLR-1561: - Assignee: Grant Ingersoll Import Lucene 2.9.1 Geospatial JAR

[jira] Created: (SOLR-1561) Import Lucene 2.9.1 Geospatial JAR

2009-11-13 Thread Grant Ingersoll (JIRA)
Import Lucene 2.9.1 Geospatial JAR -- Key: SOLR-1561 URL: https://issues.apache.org/jira/browse/SOLR-1561 Project: Solr Issue Type: New Feature Reporter: Grant Ingersoll Priority:

[jira] Updated: (SOLR-1561) Import Lucene 2.9.1 Geospatial JAR

2009-11-13 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1561?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Grant Ingersoll updated SOLR-1561: -- Fix Version/s: 1.5 Import Lucene 2.9.1 Geospatial JAR --

[jira] Work started: (SOLR-773) Incorporate Local Lucene/Solr

2009-11-13 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-773?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on SOLR-773 started by Grant Ingersoll. Incorporate Local Lucene/Solr - Key: SOLR-773 URL:

[jira] Resolved: (SOLR-1561) Import Lucene 2.9.1 Geospatial JAR

2009-11-13 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1561?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Grant Ingersoll resolved SOLR-1561. --- Resolution: Fixed Import Lucene 2.9.1 Geospatial JAR --

[jira] Commented: (SOLR-773) Incorporate Local Lucene/Solr

2009-11-13 Thread Gijs Kunze (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-773?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777549#action_12777549 ] Gijs Kunze commented on SOLR-773: - I've written a Solr plugin which uses a field with the

[jira] Commented: (SOLR-236) Field collapsing

2009-11-13 Thread Thomas Woodard (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777582#action_12777582 ] Thomas Woodard commented on SOLR-236: - I'm trying to get field collapsing to work against

Functions, floats and doubles

2009-11-13 Thread Grant Ingersoll
Implementing my first function (distance stuff) and notices that functions seem to have a float bent to them. Not even sure what would be involved, but there are cases for distance that I could see wanting double precision. Thoughts? -Grant

Re: Functions, floats and doubles

2009-11-13 Thread Yonik Seeley
On Fri, Nov 13, 2009 at 12:52 PM, Grant Ingersoll gsing...@apache.org wrote: Implementing my first function (distance stuff) and notices that functions seem to have a float bent to them.  Not even sure what would be involved, but there are cases for distance that I could see wanting double

Re: Functions, floats and doubles

2009-11-13 Thread Walter Underwood
Float is almost never good enough. The loss of precision is horrific. wunder On Nov 13, 2009, at 9:58 AM, Yonik Seeley wrote: On Fri, Nov 13, 2009 at 12:52 PM, Grant Ingersoll gsing...@apache.org wrote: Implementing my first function (distance stuff) and notices that functions seem to have

[jira] Updated: (SOLR-1561) Import Lucene 2.9.1 Geospatial JAR

2009-11-13 Thread Erik Hatcher (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1561?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Erik Hatcher updated SOLR-1561: --- Description: Bring in the spatial contrib jar so that we can use its utilities, etc. where

Re: Functions, floats and doubles

2009-11-13 Thread Grant Ingersoll
On Nov 13, 2009, at 12:58 PM, Yonik Seeley wrote: On Fri, Nov 13, 2009 at 12:52 PM, Grant Ingersoll gsing...@apache.org wrote: Implementing my first function (distance stuff) and notices that functions seem to have a float bent to them. Not even sure what would be involved, but there are

Re: Functions, floats and doubles

2009-11-13 Thread Yonik Seeley
On Fri, Nov 13, 2009 at 1:01 PM, Walter Underwood wun...@wunderwood.org wrote: Float is almost never good enough. The loss of precision is horrific. Are you saying it's not good enough for this case (the final answer of a relative distance calculation)? 7 digits of precision is enough to

Re: Functions, floats and doubles

2009-11-13 Thread Yonik Seeley
On Fri, Nov 13, 2009 at 1:31 PM, Grant Ingersoll gsing...@apache.org wrote: Yeah, in the end, Lucene Scorer returns a float...  However, if we allow for pseudo fields and other capabilities, it would be nice to have doubles. We have doubles already... It's just that our general purpose

Re: Functions, floats and doubles

2009-11-13 Thread Walter Underwood
Float is often OK until you try and use it for further calculation. Maybe it is good enough for printing out distance, but maybe not for further use. wunder On Nov 13, 2009, at 10:32 AM, Yonik Seeley wrote: On Fri, Nov 13, 2009 at 1:01 PM, Walter Underwood wun...@wunderwood.org wrote:

Re: Functions, floats and doubles

2009-11-13 Thread Grant Ingersoll
If I implement Vincenty's formula for distance between two points on an ellipsoid that can be accurate down to the 0.5mm. Not doing that yet and not planning on implementing, so this is not a huge issue right now. Still, I think we should put it on our roadmap. On Nov 13, 2009, at 1:32 PM,

Re: Functions, floats and doubles

2009-11-13 Thread Grant Ingersoll
On Nov 13, 2009, at 1:35 PM, Yonik Seeley wrote: On Fri, Nov 13, 2009 at 1:31 PM, Grant Ingersoll gsing...@apache.org wrote: Yeah, in the end, Lucene Scorer returns a float... However, if we allow for pseudo fields and other capabilities, it would be nice to have doubles. We have doubles

Lucene MMAP Usage with Solr

2009-11-13 Thread ST ST
Folks, I am trying to get Lucene MMAP to work in solr. I am assuming that when I configure MMAP the entire index will be loaded into RAM. Is that the right assumption ? I have tried the following ways for using MMAP: Option 1. Using the solr config below for MMAP configuration

Re: Functions, floats and doubles

2009-11-13 Thread Mattmann, Chris A (388J)
On 11/13/09 11:38 AM, Grant Ingersoll gsing...@apache.org wrote: If I implement Vincenty's formula for distance between two points on an ellipsoid that can be accurate down to the 0.5mm. Not doing that yet and not planning on implementing, so this is not a huge issue right now. Still, I

[jira] Created: (SOLR-1562) Functions should better support double values

2009-11-13 Thread Grant Ingersoll (JIRA)
Functions should better support double values - Key: SOLR-1562 URL: https://issues.apache.org/jira/browse/SOLR-1562 Project: Solr Issue Type: Improvement Reporter: Grant Ingersoll

Re: Functions, floats and doubles

2009-11-13 Thread Grant Ingersoll
On Nov 13, 2009, at 1:48 PM, Mattmann, Chris A (388J) wrote: Still, I think we should put it on our roadmap. SOLR-1562.

Re: union functionality?

2009-11-13 Thread Chris Hostetter
http://people.apache.org/~hossman/#solr-dev Please Use solr-u...@lucene Not solr-...@lucene Your question is better suited for the solr-u...@lucene mailing list ... not the solr-...@lucene list. solr-dev is for discussing development of the internals of the Solr application ... it is *not* the

[jira] Commented: (SOLR-1302) Fun with Distances - Add Distance functions for a variety of things

2009-11-13 Thread Chris A. Mattmann (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1302?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777648#action_12777648 ] Chris A. Mattmann commented on SOLR-1302: - Hey Grant, I'd love to help on this

[jira] Commented: (SOLR-236) Field collapsing

2009-11-13 Thread Martijn van Groningen (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777649#action_12777649 ] Martijn van Groningen commented on SOLR-236: Thomas, the method that cannot be

Re: Solr 1.4.0 vs 1.4.1

2009-11-13 Thread Chris Hostetter
: So which would be appropriate? My concern is that the 1.4.1 has a larger : file size so don't want to miss some 1.4 feature or bug fix that happened I don't understand this question ... what do you mean by 1.4.1 has a larger file size ? building 1.4.0 from the source in the official release

Re: [Solr Wiki] Trivial Update of UpdateCSV by kristopolo us

2009-11-13 Thread Chris Hostetter
: The UpdateCSV page has been changed by kristopolous. : The comment on this change is: grammar. : http://wiki.apache.org/solr/UpdateCSV?action=diffrev1=13rev2=14 Did someone revert this change? ... i was going to (since the old version was actually correct) but the wiki says the current

Re: [Solr Wiki] Trivial Update of UpdateCSV by kristopolous

2009-11-13 Thread Yonik Seeley
On Fri, Nov 13, 2009 at 3:55 PM, Chris Hostetter hossman_luc...@fucit.org wrote: : The UpdateCSV page has been changed by kristopolous. : The comment on this change is: grammar. : http://wiki.apache.org/solr/UpdateCSV?action=diffrev1=13rev2=14 Did someone revert this change? ... i was going

[jira] Commented: (SOLR-236) Field collapsing

2009-11-13 Thread Thomas Woodard (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777659#action_12777659 ] Thomas Woodard commented on SOLR-236: - I tried the build again, and you are right, it

[jira] Issue Comment Edited: (SOLR-236) Field collapsing

2009-11-13 Thread Thomas Woodard (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777659#action_12777659 ] Thomas Woodard edited comment on SOLR-236 at 11/13/09 9:10 PM: ---

Re: [Solr Wiki] Trivial Update of UpdateCSV by kristopolous

2009-11-13 Thread Chris Hostetter
: Good question... I tried to revert it too when I first saw it. : The live page actually showed the new edited version, but every time I : tried to edit it, I got the old text. Eventually, the live page : showed the old version. The history never showed the new edit AFAIK. : Was going to bring

[jira] Commented: (SOLR-1432) FunctionQueries aren't correctly weighted

2009-11-13 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1432?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777674#action_12777674 ] Hoss Man commented on SOLR-1432: bq. I wish this issue would have been called out in the

[jira] Commented: (SOLR-1302) Fun with Distances - Add Distance functions for a variety of things

2009-11-13 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1302?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12777676#action_12777676 ] Grant Ingersoll commented on SOLR-1302: --- I've got Haversine implemented (great

Re: Solr 1.4.0 vs 1.4.1

2009-11-13 Thread Jeff Newburn
That is fine we are using 1.4.0. When I compiled the 1.4.1 was 2k extra in size. -- Jeff Newburn Software Engineer, Zappos.com jnewb...@zappos.com - 702-943-7562 From: Chris Hostetter hossman_luc...@fucit.org Reply-To: solr-dev@lucene.apache.org Date: Fri, 13 Nov 2009 12:47:34 -0800 (PST)

[jira] Updated: (SOLR-1302) Fun with Distances - Add Distance functions for a variety of things

2009-11-13 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1302?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Grant Ingersoll updated SOLR-1302: -- Attachment: SOLR-1302.patch Haversine implementation, RadianFunction and DegreeFunction. Also

[jira] Commented: (SOLR-1302) Fun with Distances - Add Distance functions for a variety of things

2009-11-13 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1302?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=1227#action_1227 ] Grant Ingersoll commented on SOLR-1302: --- Note, we may want to mod this to work more

[jira] Created: (SOLR-1563) NPE's occur in various situations related to FIeldable.stringValue when upgrading from 1.3 to 1.4

2009-11-13 Thread Hoss Man (JIRA)
NPE's occur in various situations related to FIeldable.stringValue when upgrading from 1.3 to 1.4 - Key: SOLR-1563 URL:

[jira] Commented: (SOLR-1563) NPE's occur in various situations related to FIeldable.stringValue when upgrading from 1.3 to 1.4

2009-11-13 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=1285#action_1285 ] Hoss Man commented on SOLR-1563: First anecdotal NPE stack trace reported by Jake Brownell

[jira] Commented: (SOLR-1563) NPE's occur in various situations related to FIeldable.stringValue when upgrading from 1.3 to 1.4

2009-11-13 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=1286#action_1286 ] Hoss Man commented on SOLR-1563: Second anecdotal exception reported by Solr Trey, also

[jira] Commented: (SOLR-1563) NPE's occur in various situations related to FIeldable.stringValue when upgrading from 1.3 to 1.4

2009-11-13 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=1288#action_1288 ] Hoss Man commented on SOLR-1563: The following stack trace was generated using Solr 1.4, and

[jira] Commented: (SOLR-1563) NPE's occur in various situations related to FIeldable.stringValue when upgrading from 1.3 to 1.4

2009-11-13 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=1290#action_1290 ] Hoss Man commented on SOLR-1563: These stack traces demonstrate similar NPE exceptions when

[jira] Commented: (SOLR-1563) NPE's occur in various situations related to FIeldable.stringValue when upgrading from 1.3 to 1.4

2009-11-13 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=1292#action_1292 ] Hoss Man commented on SOLR-1563: In all of the stack traces listed above, the NPE seems to