Re: ODD Solr Error on Update POST - XMLStreamException: ParseError

2008-04-17 Thread realw5
solr.servlet.SolrUpdateServlet.doPost(SolrUpdateServlet.java:65) >> >> This seems to me to be the most likely culprit given what I've seen so >> far on this thread. I hope it helps. >> >> -- Brian >> >> >> >> - Original Message >&

Re: ODD Solr Error on Update POST - XMLStreamException: ParseError

2008-04-17 Thread realw5
gt; Since you've already tried different Solr versions and different JVM > versions, it's most likely Tomcat... try version 5.5. If that doesn't > work, try a different OS (less likely, but it could be a libc bug or > something). > > -Yonik > > On Thu, Apr 17,

ODD Solr Error on Update POST - XMLStreamException: ParseError

2008-04-17 Thread realw5
Hey All, I've been beating my head on this problem with no luck on finding the cause. I've done many nabble and google searches with no real solution. Let me explain the problem. First my system setup: Ubuntu 64bit Linux 6.06 Java 1.6 (amd64) (Also tried 1.5 with same results) Solr 1.2 (also try

Re: SOLR 1.2 - Duplicate Documents??

2007-11-07 Thread realw5
I'm currently indexing all documents using the update XML. I have always used the following when post the documents to solr: I've never had allowDups flag set to true...I'm assuming this is false by default? We did have Tomcat crash once (JVM OutOfMem) durning an indexing process, could th

Re: SOLR 1.2 - Duplicate Documents??

2007-11-07 Thread realw5
I haven't made any changes to the schema since the intial full-index. Do you know if there is a way to rebuild the full index in the background, without having to take down the current live index? Dan ryantxu wrote: > >> >> Schema.xml >> > > Have you edited schema.xml since building a ful

SOLR 1.2 - Duplicate Documents??

2007-11-06 Thread realw5
Hey all, I have a fairly odd case of duplicate documents in our solr index (See attached xml sample). THe index is roughtly 35k in documents. The only way I've found to fix the problem is to run a delete statement by id, which deletes both, I can then re-index that one document. This happened prev

Re: DisMax request handler doesn't work with stopwords?

2007-06-14 Thread realw5
You're absolute right. I missed one field, which did not have the solr.StopFilterFactory applied to. I must of missed that while reading the post yesterday. Anyways, I ensured all the fields that dismax was searching across had the stopwords applied, and now everything works great! Thanks Hoss!

Re: DisMax request handler doesn't work with stopwords?

2007-06-13 Thread realw5
I'm having the same issues. We are using Dismax, with a stopword list. Currently we are having customers typing in "model ipod", we added model to the stopwords list and tested with the standard handler..works fine, but not with dismax (MM = 3<-1 5<-2 6<90%). When i comment out MM, it works. Do yo

SOLR Indexing/Querying

2007-05-30 Thread realw5
Hey Guys, I need some guidance in regards to a problem we are having with our solr index. Below is a list of terms our customers search for, which are failing or not returning the complete set. The second side of the list is the product id/keyword we want it to match. Can you give me some directi

Re: Facet Results Strange - Help

2007-04-27 Thread realw5
exed I'll post back again. Otherwise thanks for the quick replies! Dan Yonik Seeley wrote: > > On 4/27/07, realw5 <[EMAIL PROTECTED]> wrote: >> I have a dynamic field setup for facets. It looks like this: >> >> > multiValued="true" /> >> &

Re: Facet Results Strange - Help

2007-04-27 Thread realw5
I'll give that a go and see if I notice anything. Dan Yonik Seeley wrote: > > On 4/27/07, realw5 <[EMAIL PROTECTED]> wrote: >> Hello, >> I'm running into some strange results for some facets of mine. Below >> you'll >> see the XML returned f

Facet Results Strange - Help

2007-04-27 Thread realw5
Hello, I'm running into some strange results for some facets of mine. Below you'll see the XML returned from solr. I did a query using the standard request handler. Notice the duplicated values returned (american standard, delta, etc). There is actually quite a few of them. At first I though it ma

Re: Solr Scripts.conf Parsing Error

2007-04-16 Thread realw5
gt; > On 4/13/07, realw5 <[EMAIL PROTECTED]> wrote: >> >> >> I think you're on to something, here was the output: >> >> # Licensed to the Apache Software Foundation (ASF) under one or more^M$ >> # contributor license agreements. See the NOTICE file

Re: Solr Scripts.conf Parsing Error

2007-04-13 Thread realw5
I think you're on to something, here was the output: # Licensed to the Apache Software Foundation (ASF) under one or more^M$ # contributor license agreements. See the NOTICE file distributed with^M$ # this work for additional information regarding copyright ownership.^M$ # The ASF licenses this

Re: Solr Scripts.conf Parsing Error

2007-04-11 Thread realw5
d entry for solr + exit 1 ++ echo -ne '\033]0;[EMAIL PROTECTED]:/usr/local/apache-tomcat\007' Dan Bill Au wrote: > > What does your directory structure looks like? Have you tried running > rsyncd-enable with "bash -x" to see how/what $user is set? > > Bill

Re: Solr Scripts.conf Parsing Error

2007-04-11 Thread realw5
d entry for solr + exit 1 ++ echo -ne '\033]0;[EMAIL PROTECTED]:/usr/local/apache-tomcat\007' Dan Bill Au wrote: > > What does your directory structure looks like? Have you tried running > rsyncd-enable with "bash -x" to see how/what $user is set? > > Bill

Re: Solr Scripts.conf Parsing Error

2007-04-11 Thread realw5
d entry for solr + exit 1 ++ echo -ne '\033]0;[EMAIL PROTECTED]:/usr/local/apache-tomcat\007' Dan Bill Au wrote: > > What does your directory structure looks like? Have you tried running > rsyncd-enable with "bash -x" to see how/what $user is set? > > Bill

Solr Scripts.conf Parsing Error

2007-04-09 Thread realw5
Hello, I'm having troubles getting replication to work using the supplied solr scripts. I've been doing alot of digging today, going though all the bash scripts that make all this happen using rsync. I'm pretty sure I've boiled it down to the scripts.conf file. When I make my settings in this file

Re: Solr DisMax and 'New' DateField query syntax

2007-02-19 Thread realw5
Duuh! Stupid me. I didn't even try that. Thanks for such a quick replay. That should solve my problem..Thanks Hoss!! Chris Hostetter wrote: > > > the square brackets raen't anything new ... they are the standard Lucene > QUeryParser syntax for range queries, which have hte syntax... > fi

Solr DisMax and 'New' DateField query syntax

2007-02-19 Thread realw5
First off, solr has done nothing but wonders for me! So let me give everyone envolved a big cheers! Recently I discovered the 'new' DateField syntax options which allow "[NOW/DAY-1MONTH]" type querys. However when going to try out this I found a possible bug (or maybe I'm just missing something)