Re: Stable release, trunk release - same Tomcat instance

2009-06-12 Thread Jeff Rodenburg
Um, yes this works. On Fri, Jun 12, 2009 at 11:12 AM, Jeff Rodenburg wrote: > If I want to run the stable 1.3 release and the nightly build under the > same Tomcat instance, should that be configured as multiple solr > applications, or is there a different configuration to follow? >

Stable release, trunk release - same Tomcat instance

2009-06-12 Thread Jeff Rodenburg
If I want to run the stable 1.3 release and the nightly build under the same Tomcat instance, should that be configured as multiple solr applications, or is there a different configuration to follow?

Re: Getting SolrSharp to work, Part 2

2008-01-25 Thread Jeff Rodenburg
;? I don't mind adding a few more comments to the > discussion I already started on CodePlex. > > \peter > > -Original Message- > From: Jeff Rodenburg [mailto:[EMAIL PROTECTED] > Sent: 24. januar 2008 20:59 > To: solr-user@lucene.apache.org > Subject: Re: Getting So

Re: Getting SolrSharp to work, Part 2

2008-01-24 Thread Jeff Rodenburg
Hey Peter - if you could submit your changes as an svn patch, we could apply the update much faster. thanks, jeff On Jan 23, 2008 2:42 AM, Peter Thygesen <[EMAIL PROTECTED]> wrote: > I wrote a small client in .Net which query Solr and dumps the result on > screen.. fantastic low-tech.. ;) > >

Re: Updating and Appending

2008-01-24 Thread Jeff Rodenburg
On Jan 23, 2008 1:29 PM, Chris Harris <[EMAIL PROTECTED]> wrote: > > >>> And then if you're using > a client such as solrsharp, there's the question of whether *it* will > slurp the whole stream into memory. > > Solrsharp reads of the XML stream from Solr use standard dotnet framework XML objects,

Re: Getting SolrSharp to work

2008-01-18 Thread Jeff Rodenburg
gt; Thx, > Peter > > -Original Message- > From: Jeff Rodenburg [mailto:[EMAIL PROTECTED] > Sent: 18. januar 2008 03:24 > To: solr-user@lucene.apache.org > Subject: Re: Getting SolrSharp to work > > Thanks for the updates Peter. Can you pass along your Solr instance >

Re: Getting SolrSharp to work

2008-01-17 Thread Jeff Rodenburg
Thanks for the updates Peter. Can you pass along your Solr instance information? thanks, jeff r. On Jan 17, 2008 7:22 AM, Peter Thygesen <[EMAIL PROTECTED]> wrote: > Version solrsharp-Dec-30-2007.zip > > I had to make a few changes to get this version to work. Here is what I > did. > > ---

Re: SolrSharp and UTF-8, danish letters are messed up

2008-01-17 Thread Jeff Rodenburg
Hi Peter - Hmm, not sure what's going on here. Please take a look in the SolrConfigurationSection class, which sets the Culture setting. thanks, jeff r. On Jan 17, 2008 6:05 AM, Peter Thygesen <[EMAIL PROTECTED]> wrote: > Norwegian and danish letters like "ÆØÅ" are messed up when indexing us

Re: Solr, operating systems and globalization

2007-10-18 Thread Jeff Rodenburg
OK, this simplifies things greatly. For C#, the proper culture setting for interaction with Solr should be Invariant. Basically, the primary requirement for Solrsharp is to be "culturally-consistent" with the targeted Solr server to ensure proper data-type formatting. Since Solr is culturally-ag

Re: Solr, operating systems and globalization

2007-10-17 Thread Jeff Rodenburg
Thanks for the comments Hoss. More notes embedded below... On 10/17/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > > : However, SolrSharp culture settings should be reflective and consistent > with > : the solr server instance's culture. This leads to my question: does > Solr > : control its

Solr, operating systems and globalization

2007-10-12 Thread Jeff Rodenburg
We discovered and verified an issue in SolrSharp whereby indexing and searching can be disrupted without taking Windows globalization & culture settings into consideration. For example, European cultures affect numeric and date values differently from US/English cultures. The resolution for this

Re: WebException (ServerProtocolViolation) with SolrSharp

2007-10-11 Thread Jeff Rodenburg
ent that was using a non-invariant number format, but can this also > happen on Solr's side? If so, I guess I may need to configure it > somewhere... > > Cheers, > Filipe Correia > > On 10/10/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > > Hi Felipe - >

Re: WebException (ServerProtocolViolation) with SolrSharp

2007-10-10 Thread Jeff Rodenburg
Hi Felipe - The issue you're encountering is a problem with the data format being passed to the solr server. If you follow the stack trace that you posted, you'll notice that the solr field is looking for a value that's a float, but the passed value is "1,234". I'm guessing this is caused by one

Re: Solrsharp culture problems

2007-09-24 Thread Jeff Rodenburg
Yes, that would be the right solution. I'm not sure if, in order to use french culture settings on xp, you would require corresponding changes in culture settings for the solr instance. Hope this helps. -- j On 9/24/07, JP Genty - LibertySurf <[EMAIL PROTECTED]> wrote: > > > I use solrsharp

Dilbert (off-topic)

2007-09-07 Thread Jeff Rodenburg
It may be off-topic, but it's friday and thought all the java coders would appreciate today's dilbert. (I'm not primary a java dev, but I know the feeling) http://www.dilbert.com/comics/dilbert/archive/dilbert-20070907.html cheers, jeff r.

Solrsharp now supports debugQuery

2007-08-31 Thread Jeff Rodenburg
Solrsharp now supports query debugging. This is enabled through the debugQuery and explainOther parameters. A DebugResults object is referenced by a SearchResults instance and provides all the debugging information that is available through these parameters, such as: - QueryString and ParsedQ

Major update to Solrsharp

2007-08-22 Thread Jeff Rodenburg
A big update was just posted to the Solrsharp project. This update now provides for first-class support for highlighting in the library. The implementation is really robust and provides the following features: - Structured highlight parameter assignment based on the SolrField object - F

Re: Solrsharp highlighting

2007-08-15 Thread Jeff Rodenburg
ould help me out a > great deal. > > As for the highlighting, did you have any ideas about a good way to go > about it? I was thinking about taking a stab at it, but I want to get > your input first. > > > Thanks, > Charlie > > > -Original Message- > F

Re: Solrsharp highlighting

2007-08-13 Thread Jeff Rodenburg
Pull down the latest example code from http://solrstuff.org/svn/solrsharpwhich includes adding facets to search results. It's really short and simple to add facets; the example application implements one form of it. The nice thing about the facet support is that it utilizes generics to allow you t

Re: Solrsharp highlighting

2007-08-13 Thread Jeff Rodenburg
Thanks for the comments, Charlie. No, you didn't miss anything with the highlight results. It hasn't been implemented yet. :-/ The first implementation was quite janky, and was consequently removed. I'm adding an issue in JIRA about implementing highlighted fields. ( https://issues.apache.org/

Re: Please help! Solr 1.1 HTTP server stops responding

2007-07-31 Thread Jeff Rodenburg
Not sure if this would help you, but we encountered java heap OOM issues with 1.1 earlier this year. We patched solr with the latest bits at the time, which included a lucene memory fix for java heap OOM issues. ( http://issues.apache.org/jira/browse/LUCENE-754) Different servlet container (Tomc

Re: Acceptable schema def?

2007-07-23 Thread Jeff Rodenburg
As an example, consider the following: Two questions: 1) Is the definition of the source attribute for a copyField node that would work as a dynamicField node valid? 2) Is the dest attribute for a copyField node required to be implemented as a node? Could it be a dynamic field? For exampl

Acceptable schema def?

2007-07-23 Thread Jeff Rodenburg
As an example, consider the following: Two questions: 1) Is the definition of the source attribute for a copyField node that would work as a dynamicField node valid? 2) Is the dest attribute for a copyField node required to be implemented as a node? Could it be a dynamic field? For example

Solrsharp: direction

2007-07-08 Thread Jeff Rodenburg
I've been asked a few questions of late that all have a familiar theme: what's going on with solrsharp development? Well, I've been working on the next iteration of the Solrsharp client library, attempting to bring it more in line with the capabilities of Solr, at least as of the 1.2 release. Th

Re: solrsharp thoughts

2007-07-05 Thread Jeff Rodenburg
Thanks Ryan. Comments below. On 7/5/07, Ryan McKinley <[EMAIL PROTECTED]> wrote: I just took a quick look at solrsharp. I don't really have to use it yet, so this is not an in depth review. I like the templated SearchResults -- that seems useful. That has proven to be extremely useful in

Re: SolrSharp boost - int vs. float

2007-07-05 Thread Jeff Rodenburg
Nope, other than just oversight. I just modified the QueryParameter class to change the _boost and Boost variable & property to type float, and all works well. I'll log an issue in JIRA and update the source. thanks otis, jeff On 7/5/07, Otis Gospodnetic <[EMAIL PROTECTED]> wrote: Hi, He

Re: Solr Injection

2007-07-03 Thread Jeff Rodenburg
On 7/3/07, Walter Underwood <[EMAIL PROTECTED]> wrote: The Atom Publishing Protocol would be a good choice for a rest API to Solr. That comes with a spec, interop testing, and an active community. +1

SolrRequestHandler question

2007-06-28 Thread Jeff Rodenburg
I have a search use case that requires that I use the results of search from IndexA and apply them as a query component of a second search to IndexB. (The nature of the data doesn't allow me to combine these indexes). At present, this is handled at the client level: search one index, get the resul

Re: Recent updates to Solrsharp

2007-06-21 Thread Jeff Rodenburg
great, thanks Yonik. On 6/20/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 6/21/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > As an aside, it would be nice to record these issues more granularly in > JIRA. Could we get a component created for our client library, similar

Recent updates to Solrsharp

2007-06-20 Thread Jeff Rodenburg
Thanks to Yonik, Michael, Ryan, (and others) for some recent help on various issues discovered with Solrsharp. We were able to discover a few issues with the library relative to the Solr 1.2 release. Those issues have been remedied and have been pushed into source control. The Solrsharp source

Re: SolrSharp example

2007-06-20 Thread Jeff Rodenburg
eldValue("timestamp", DateTime.Now.ToString("s")+"Z"))); Regards Michael - Original Message - From: "Jeff Rodenburg" <[EMAIL PROTECTED]> To: Sent: Wednesday, June 20, 2007 1:56 PM Subject: Re: SolrSharp example > On 6/20/07, Yonik Seeley <[EMA

Re: SolrSharp example

2007-06-20 Thread Jeff Rodenburg
On 6/20/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 6/20/07, Michael Plax <[EMAIL PROTECTED]> wrote: > This is a log that I got after runnning SolrSharp example. I think example > program posts not properly formatted xml. > I'm running Solr on Windows XP, Java 1.5. Are those settings could be

Re: SolrSharp example

2007-06-20 Thread Jeff Rodenburg
Hi Michael - Moving this conversations to the general solr mailing list... 1. SolrSharp example solution works with schema.xml from apache-solr-1.1.0-incubating.If I'm using schema.xml from apache-solr-1.2.0 example program doesn't update index... I didn't realize the solr 1.2 release c

Re: Update to SolrSharp

2007-06-13 Thread Jeff Rodenburg
rom VS solution. Thank you, Michael - Original Message - From: "Jeff Rodenburg" <[EMAIL PROTECTED]> To: Sent: Wednesday, June 13, 2007 3:59 PM Subject: Update to SolrSharp > Solrsharp has been validated against the Solr 1.2 release. Validation was > made using th

Update to SolrSharp

2007-06-13 Thread Jeff Rodenburg
Solrsharp has been validated against the Solr 1.2 release. Validation was made using the example application that's available with the Solrsharp code against a default example index with the Solr 1.2 released bits. - The source code for Solrsharp is now accessible via subversion. Many thanks to

Re: solr+hadoop = next solr

2007-06-08 Thread Jeff Rodenburg
On 6/7/07, Rafael Rossini <[EMAIL PROTECTED]> wrote: Hi, Jeff and Mike. Would you mind telling us about the architecture of your solutions a little bit? Mike, you said that you implemented a highly-distributed search engine using Solr as indexing nodes. What does that mean? You guys implemen

Re: solr+hadoop = next solr

2007-06-07 Thread Jeff Rodenburg
Mike - thanks for the comments. Some responses added below. On 6/7/07, Mike Klaas <[EMAIL PROTECTED]> wrote: I've implemented a highly-distributed search engine using Solr (200m docs and growing, 60+ servers). It is not a Solr-based solution in the vein of FederatedSearch--it is a higher-le

Re: solr+hadoop = next solr

2007-06-06 Thread Jeff Rodenburg
I've been exploring distributed search, as of late. I don't know about the "next solr" but I could certainly see a "distributed solr" grow out of such an expansion. In terms of the FederatedSearch wiki entry (updated last year), has there been any progress made this year on this topic, at least

Re: distributed search

2007-06-03 Thread Jeff Rodenburg
David - It depends on what "distributed" means in your question. If you're looking for high availability, that can be accomplished through typical load balancing schemes for the servlet container that's running solr. Solr helps out in this respect with a replication scheme using rsync that keep

Re: read only indexes?

2007-05-25 Thread Jeff Rodenburg
We're controlling this with Tomcat configuration on our end. I'm not a servlet-container guru, but I would imagine similar capabilities exist on Jetty, et al. -- j On 5/24/07, Ryan McKinley <[EMAIL PROTECTED]> wrote: Is there a good way to force an index to be read-only? I could configure a

Solrsharp feedback

2007-04-24 Thread Jeff Rodenburg
I sent a few messages to the list about Solrsharp, the C# library for working with Solr, a couple of weeks ago. This was the first iteration of the library and something I expected to see modified as others got a chance to review it. I've not heard any feedback since then, though. For those tha

Re: Requests per second/minute monitor?

2007-04-18 Thread Jeff Rodenburg
Not yet from us, but I'm thinking about a nagios plugin for Solr. It would be tomcat-based for the http stuff, however. On 4/18/07, Walter Underwood <[EMAIL PROTECTED]> wrote: Is there a good spot to track request rate in Solr? Has anyone built a monitor? wunder -- Search Guru Netflix

Re: SolrSharp - a C# client API for Solr

2007-04-10 Thread Jeff Rodenburg
to the Solr team too. I am looking forward to using Solr and Solr# in the coming months. Your client is going to be a great help. regards, -jim On 4/9/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > > All - > > I'm proud to announce a release to a new client API for So

SolrSharp - a C# client API for Solr

2007-04-09 Thread Jeff Rodenburg
All - I'm proud to announce a release to a new client API for Solr -- SolrSharp. SolrSharp is a C# library that abstracts the interoperation of a solr search server. This is an initial release that covers the basics of working with Solr. The library is very fleshed out, but the example has only

Re: Question about code contribution

2007-04-09 Thread Jeff Rodenburg
Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Original Message From: Jeff Rodenburg <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Sent: Friday, April 6, 2007 11:16:28 AM Subject: Re: Question about code contribution Whoops, typo: "...do the source c

Re: Solr logo poll

2007-04-06 Thread Jeff Rodenburg
I prefer B.

Re: Question about code contribution

2007-04-06 Thread Jeff Rodenburg
Whoops, typo: "...do the source code files need to contain the boilerplate Apache license." On 4/6/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: If I'm contributing new source files (separate project entirely) through JIRA, so the source code files need to contain t

Question about code contribution

2007-04-06 Thread Jeff Rodenburg
If I'm contributing new source files (separate project entirely) through JIRA, so the source code files need to contain the boilerplate Apache license/disclaimers and the like? This is new code and a new project (C#), and the wiki page on contributions ( http://wiki.apache.org/solr/HowToContribut

Re: C# API for Solr

2007-04-05 Thread Jeff Rodenburg
happy with this C# client. grts,m "Jeff Rodenburg" <[EMAIL PROTECTED]> 31/03/2007 18:00 Please respond to solr-user@lucene.apache.org To solr-user@lucene.apache.org cc Subject C# API for Solr We built our first search system architecture around Lucene.Net back in

Re: problems finding negative values

2007-04-04 Thread Jeff Rodenburg
This one caught us as well. Refer to http://lucene.apache.org/java/docs/queryparsersyntax.html#Escaping%20Special%20Charactersfor understanding what characters need to be escaped for your queries. On 4/4/07, galo <[EMAIL PROTECTED]> wrote: Hi, I have an index consisting on the following fie

Re: org.apache.jasper.JasperException: Exception in JSP: /admin/_info.jsp:27"

2007-04-03 Thread Jeff Rodenburg
Whenever I've encountered this, the cause has nearly always been starting tomcat with the proper current working directory. I went through the example install a few weeks ago, line by line, from the wiki page for Tomcat and it ran fine. I'm running 5.5.17, and have done this on both FC5 and FC6.

Re: Troubleshooting java heap out-of-memory

2007-04-02 Thread Jeff Rodenburg
upport on this issue. cheers, j On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > Yonik - is this the JIRA entry you're referring to? > > http://issues.apache.org/jira/browse/LUCENE-754 Yes. But from the heap dump

Re: Troubleshooting java heap out-of-memory

2007-04-02 Thread Jeff Rodenburg
Yonik - is this the JIRA entry you're referring to? http://issues.apache.org/jira/browse/LUCENE-754 On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > We are doing incremental updates, and we optimize quite

Re: Troubleshooting java heap out-of-memory

2007-04-02 Thread Jeff Rodenburg
Major version is 1.0. The bits are from a nightly build from early September 2006. We do have plans to upgrade solr soon. On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > We are doing incremental updates, and we optim

Re: Troubleshooting java heap out-of-memory

2007-04-02 Thread Jeff Rodenburg
Sorry for the confusion. We do have caching disabled. I was asking the question because I wasn't certain if the configurable cache settings applied throughout, or if the FieldCache in lucene still came in play. The two integer-based facets are single valued per document. The string-based facet

Re: Troubleshooting java heap out-of-memory

2007-04-02 Thread Jeff Rodenburg
ra eyes on this, much appreciated. -- j On 4/2/07, Mike Klaas <[EMAIL PROTECTED]> wrote: On 4/2/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > With facet queries and the fields used, what qualifies as a "large" number > of values? The wiki uses U.S. states as an exa

Re: Troubleshooting java heap out-of-memory

2007-04-02 Thread Jeff Rodenburg
On 4/2/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 4/1/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > Our scenario: 150MB index, 14 documents, read/write servers in place > using standard replication. Running Tomcat 5.5.17 on Redhat Enterprise > Linux 4. Java con

Re: Troubleshooting java heap out-of-memory

2007-04-02 Thread Jeff Rodenburg
can use to estimate the cache consumption rate for facet queries? -- j On 4/1/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: I've read through the list entries here, the Lucene list, and the wiki docs and am not resolving a major pain point for us. We've been trying to determine wh

Re: C# API for Solr

2007-04-01 Thread Jeff Rodenburg
Ryan - I'm working on cleanup to release this thing for the world to enjoy. -- j On 3/31/07, Ryan McKinley <[EMAIL PROTECTED]> wrote: Yes yes! On 3/31/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > We built our first search system architecture around Lucene.Net back in

Re: C# API for Solr

2007-04-01 Thread Jeff Rodenburg
What would make things consistent for the client api's is a prescribed set of implementations for a solr release. For example, executing searches with these parameters, support for facets requires those parameters, updates should be called in this manner, etc. For lack of a better term, a loosel

Troubleshooting java heap out-of-memory

2007-04-01 Thread Jeff Rodenburg
I've read through the list entries here, the Lucene list, and the wiki docs and am not resolving a major pain point for us. We've been trying to determine what could possibly cause us to hit this in our given environment, and am hoping more eyes on this issue can help. Our scenario: 150MB index

Re: C# API for Solr

2007-03-31 Thread Jeff Rodenburg
Good thought, Yonik. I haven't looked at the Java client, would certainly be worthwhile. I'll move to prepping the files so they're completely generic and can work for anyone. One administrative question: can I contribute these files to be stored under /lucene/solr/trunk/client? I don't have a

C# API for Solr

2007-03-31 Thread Jeff Rodenburg
We built our first search system architecture around Lucene.Net back in 2005 and continued to make modifications through 2006. We quickly learned that search management is so much more than query algorithms and indexing choices. We were not readily prepared for the operational overhead that our

Controlling read/write access for replicated indexes

2007-03-28 Thread Jeff Rodenburg
I'm curious what mechanisms everyone is using to control read/write access for distributed replicated indexes. We're moving to a replication environment very soon, and our client applications (quite a few) all have configuration pointers to the URLs for solr instances. As a precaution, I don't w

Re: production solr - app server choice ?

2007-03-09 Thread Jeff Rodenburg
We're running solr with multiple webapps under Tomcat 5.5.17, runs fine. We have it deployed on FC5, FC6 and RHEL4 distros. Works the same on all of them, no blocking issues. From a general perspective, Bertrand is correct: go with what you know as long as it meets your needs. On 3/9/07, Be

Re: Error with bin/optimize and multiple solr webapps

2007-03-06 Thread Jeff Rodenburg
Jira before and wasn't sure of the process. I decided to figure it out after answering Gola's question this morning...then saw that Jeff had mentioned a similar issue last night. I apologize again for confusion over the double entry. Thanks, -Graham > -Original Message- > Fro

Re: Error with bin/optimize and multiple solr webapps

2007-03-06 Thread Jeff Rodenburg
This issue has been logged as: https://issues.apache.org/jira/browse/SOLR-188 A patch file is included for those who are interested. I've unit tested in my environment, please validate it for your own environment. cheers, j On 3/5/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote:

Re: Error with bin/optimize and multiple solr webapps

2007-03-05 Thread Jeff Rodenburg
Thanks Hoss. I'll add an issue in JIRA and attach the patch. On 3/5/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : This line assumes a single solr installation under Tomcat, whereas the : multiple webapp scenario runs from a different location (the "/solr" part). : I'm sure this applies e

Error with bin/optimize and multiple solr webapps

2007-03-05 Thread Jeff Rodenburg
I noticed an issue with the optimize bash script in /bin. Per the line: rs=`curl http://${solr_hostname}:${solr_port}/solr/update -s -d ""` This line assumes a single solr installation under Tomcat, whereas the multiple webapp scenario runs from a different location (the "/solr" part). I'm sure

Re: One item, multiple fields, and range queries

2007-01-17 Thread Jeff Rodenburg
Now I follow. I was misreading the first comments, thinking that the field content would be deconstructed to smaller components or pieces. Too much (or not enough) coffee. I'm expecting the index doc needs to be constructed with lat/long/dates in sequential order, i.e.: 123 32.123456

Re: Solr graduates and joins Lucene as sub-project

2007-01-17 Thread Jeff Rodenburg
Congrats to all involved committers on the project as well. Solr is an invaluable system in my operation. Great job. On 1/17/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: Solr has just graduated from the Incubator, and has been accepted as a Lucene sub-project! Thanks to all the Lucene and Solr

Re: One item, multiple fields, and range queries

2007-01-16 Thread Jeff Rodenburg
Yonik/Hoss - OK, you lost me. It sounds as if this PhraseQuery-ish approach involves breaking datetime and lat/long values into pieces, and evaluation occurs with positioning. Is that accurate? On 1/16/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 1/15/07, Chris Hostetter <[EMAIL PROTECTE

Re: Apostrophes in fields

2007-01-15 Thread Jeff Rodenburg
Nick - this depends on the analyzer used to index the field as well as the analyzer used in your search query. This gets handled in solr with the fieldtype and requesthandler. Referencing the sample schema.xml off the wiki site, I would start with fieldtype="text" and go from there. If it doesn

Re: One item, multiple fields, and range queries

2007-01-15 Thread Jeff Rodenburg
Thanks Hoss. Interesting approach, but the "N" bound could be well in the hundreds, and the N bound would be variable (some maximum number, but different across events.) I've not yet used dynamic fields in this manner. With that number range, what limitations could I encounter? Given the size

Re: One item, multiple fields, and range queries

2007-01-13 Thread Jeff Rodenburg
facet the way to go? thanks, jeff On 1/12/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 1/12/07, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > I'm stuck with a query issue that at present seems unresolvable. Hoping the > community has some insight to this. > > My in

One item, multiple fields, and range queries

2007-01-12 Thread Jeff Rodenburg
I'm stuck with a query issue that at present seems unresolvable. Hoping the community has some insight to this. My index contains events that have multiple beginning/ending date ranges and multiple locations. For example, event A (uniqueId = 123) occurs every weekend, sometimes in one location,

Re: WordDelimiterFilter usage

2007-01-11 Thread Jeff Rodenburg
that you need to deal with, the SynonymFilter can help you out. : Date: Thu, 11 Jan 2007 13:30:39 -0800 : From: Jeff Rodenburg <[EMAIL PROTECTED]> : Reply-To: solr-user@lucene.apache.org : To: solr-user@lucene.apache.org : Subject: WordDelimiterFilter usage : : I'm trying to determine

WordDelimiterFilter usage

2007-01-11 Thread Jeff Rodenburg
I'm trying to determine how to index/query for a certain use case, and the WordDelimiterFilterFactory appears to be what I need to use. Here's the scenario: - Text field being indexed - Field exists as a full name - Data might be "cold play" - This should match against searches for "cold play" a

Re: Multiple indexes

2007-01-08 Thread Jeff Rodenburg
This is good information, thanks Chris. My preference was to keep things separate, just needed some external info from others to back me up. thanks, jeff On 1/7/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: I don't know if there really are any general purpose best practices ... it really de

Multiple indexes

2007-01-05 Thread Jeff Rodenburg
I've followed a host of past threads on this subject and am trying to determine what's best for our implementation. For those who've chimed in on this, I think I'm just looking for a good summary (as Hoss recently mentioned, perhaps a FAQ). We presently have one index running under Solr/Tomcat55

Replacing a nightly build

2006-11-07 Thread Jeff Rodenburg
What is the recommended path to deployment for replacing a solr nightly build with another? In our scenario, we're updating our current build is roughly 3 months old. We're updating to the latest. Aside from replacing the bits and restarting, are there any steps that everyone is following in ma

Re: Error in faceted browsing

2006-09-13 Thread Jeff Rodenburg
Outstanding, thanks. - j On 9/13/06, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 9/13/06, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: > Thanks for the heads up on the merchant_name. I would probably just keep a > dictionary in memory, but if I wanted to pull the stored merchan

Re: Error in faceted browsing

2006-09-13 Thread Jeff Rodenburg
Thanks Chris. I bumped the facet.limit to 10 and it works like a charm. Thanks for the heads up on the merchant_name. I would probably just keep a dictionary in memory, but if I wanted to pull the stored merchant_name back, how would/can I do that? thanks, j On 9/13/06, Chris Hostetter <[EMAI

Error in faceted browsing

2006-09-13 Thread Jeff Rodenburg
I just pulled down the nightly solr build from 9/12 and have it up and running. I copied an index created in a solr version that's about 3 months old. I have a query formulated like this: http://solrbox:8080/solr/select?q=description:dell&rows=0&facet=true&facet.limit=-1&facet.field=merchant_nam

Re: Mobile phone shop + Solr

2006-09-12 Thread Jeff Rodenburg
On 9/12/06, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 9/12/06, climbingrose <[EMAIL PROTECTED]> wrote: > I want to be able to programmatically > submit/delete document from Java code rather than through command line. I > read JavaSolr page but it seems that the code isn't stable enough for > pr

Re: Solr in production env.

2006-09-11 Thread Jeff Rodenburg
Hi Simon - We're running Solr in production, and it's rock solid. Of course you can't really just take an anonymous word for it, but I would honestly put this stack up against any other system you can find, open source or commercial. Run it for yourself and you'll be alarmed at how sound it is,

Re: Re: IIS web server and Solr integration

2006-09-10 Thread Jeff Rodenburg
Tim - If you can help it, I would suggest running Solr under Tomcat under Linux. Speaking from experience in a mixed mode environment, the Linux/Tomcat/Solr implementation just works. We're not newbies under Linux, but we're also a native Windows shop. The memory management and system availabil

Faceted browsing: status

2006-08-14 Thread Jeff Rodenburg
From the Tasklist wiki: - Simple faceted browsing (grouping) support in the standard query handler - group by field (provide counts for each distinct value in that field) - group by (query1, query2, query3, query4, query5) How far/close is this task to completio

Re: Dumb question

2006-06-27 Thread Jeff Rodenburg
perfect, thanks Chris On 6/27/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: : Would the query term(s) passed in a request need to be stemmed/analyzed : outside of the request (prior to), or is that handled internally? I'm still : making my way through the code but need to answer that questio

Dumb question

2006-06-27 Thread Jeff Rodenburg
Would the query term(s) passed in a request need to be stemmed/analyzed outside of the request (prior to), or is that handled internally? I'm still making my way through the code but need to answer that question in short order. cheers, j

Re: Distribution and Tomcat

2006-06-26 Thread Jeff Rodenburg
That's great information, thanks Bill On 6/26/06, Bill Au <[EMAIL PROTECTED]> wrote: I added what I considered a first draft into the solrconfig.xml wiki. Bill On 6/23/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > > : You can put a load balancer in front of the pool of slave servers for

Re: Distribution and Tomcat

2006-06-23 Thread Jeff Rodenburg
O/E on the ping. Just found the adminPing config setting. On 6/23/06, Jeff Rodenburg <[EMAIL PROTECTED]> wrote: Should the /admin/ping URL work on any Solr instance? i.e., http://solr-server:8080/solr/admin/ping? I'm seeing a 500 error. Based on this information, it doesn't

Re: Distribution and Tomcat

2006-06-23 Thread Jeff Rodenburg
Should the /admin/ping URL work on any Solr instance? i.e., http://solr-server:8080/solr/admin/ping? I'm seeing a 500 error. Based on this information, it doesn't sound as if any failover or LB capacity in Tomcat is being used. Is that correct? thanks, j On 6/23/06, Chris Hostetter <[EMAIL PRO

Distribution and Tomcat

2006-06-22 Thread Jeff Rodenburg
I'm reading in earnest the wiki entries regarding collection distribution and the master/slave operational basis. This is very similar to what we've used previously in our operation based on the lucene core. We're deploying initially on Tomcat 5.5.17, Linux RHEL 3 and the latest bits from Solr.

Re: Documentation?

2006-05-16 Thread Jeff Rodenburg
Thanks Chris/Yonik, don't know why I didn't see those yet. -- j On 5/15/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: : I was checking around the solr site and pages at apache.org and wasn't : finding much. Before jumping into the code, I'd like to get as familiar : with solr as I could fro

Documentation?

2006-05-15 Thread Jeff Rodenburg
I was checking around the solr site and pages at apache.org and wasn't finding much. Before jumping into the code, I'd like to get as familiar with solr as I could from existing docs or the like. Can someone point me in the direction? thanks, jeff r.