Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
Thank you for you response, Shawn! Then what do I do? I think I did a re-index after. I guess I will have to try again. I have been at this for days and up until 2:30am and getting up at 6:30am. It has been killing me! All I want is to search the name field and the tag field, which I believe is b

Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
And apparently, a string field does not support an analyzer...? Plugin init failure for [schema.xml] fieldType "string": FieldType: StrField (string) does not support specifying an analyzer -- View this message in context: http://lucene.472066.n3.nabble.com/How-on-EARTH-do-I-remove-s-in-schema

Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
Well, if I change it to text, then I get 0 results... I seriously am at a loss... I don't know why this is so hard. Everything else works, except for this! Something that should be SOOO simple. Why am I not getting this!? Everything I have tried does not work. It just doesn't! Can you please look

Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
Hi John, I actually do have in there already... Thanks. -- View this message in context: http://lucene.472066.n3.nabble.com/How-on-EARTH-do-I-remove-s-in-schema-file-tp4325709p4325856.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
Thank you so much, John! How do I set the Tag field then too? I think that is the problem, correct? Sorry, but I just inherited this recently... From: John Blythe [via Lucene] Sent: Sunday, March 19, 2017 9:17:52 AM To: donato Subject: Re: How on EARTH do I

Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
d. Why is the Tag field not using the analyzer and filters I have in place? From: John Blythe [via Lucene] Sent: Sunday, March 19, 2017 9:04:29 AM To: donato Subject: Re: How on EARTH do I remove 's in schema file? StandardTokenizer IS removing it. The t

Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
And here is my most recent schema.xml file after your suggestions... * DOWNLOAD HERE* -- View this message in context: http://lucene.472066.n3.nabble.com/How-on-EARTH-do-I-remove-s-in-schema-file-tp4325709p4325841.html Sent from the Solr - User mailing list archive a

Re: How on EARTH do I remove 's in schema file?

2017-03-19 Thread donato
Thanks, Erick! Okay. Clearly the StandardTokenizerFactory is keeping the 's. I have commented almost everything out, including the stopwords, which doesn't even HAVE patrick's in there. This is what the analyizer is saying now: for the *Name *Fieldname / FieldType ST | patrick's - StandardToken

Re: How on EARTH do I remove 's in schema file?

2017-03-18 Thread donato
your time. Truly. Thank you! From: Erick Erickson [via Lucene] Sent: Saturday, March 18, 2017 11:29:49 PM To: donato Subject: Re: How on EARTH do I remove 's in schema file? First, uncheck the "verbose" checkbox. The nitty-gritty information is

Re: How on EARTH do I remove 's in schema file?

2017-03-18 Thread donato
Erick, Here is the analysis: https://www.screencast.com/t/DKKklTXk Do you need everything on that page? I'm not sure what I am looking for here... Also, this is my current schema.xml file * DOWNLOAD HERE *. Not sure if I have

RE: stemEnglishPossessive and contractions

2017-03-18 Thread donato
Hi Herman, I just noticed your post on possessives and I am having the same problem. With Sr. Patrick's Day coming up, people are searching our site for "patrick" and patrick's" yet they are yielding different results. If we search for "patrick" and patricks" they yield the same results. I want al

Re: How on EARTH do I remove 's in schema file?

2017-03-17 Thread donato
Thanks for the response, Erik! Can you download my schema file here? CLICK HERE . I'm not too familiar with this technology yet. I tried adding that &debug=query at the end of my URL, but nothing happened. Thanks again for the repsonse! All along, I just wanted queri

How on EARTH do I remove 's in schema file?

2017-03-17 Thread donato
I have been racking my brain for days... I need to remove 's from say "patrick's" If I search for "patrick" or "patricks" I get the same number of results, however, if I search for "patrick's" it's a different number. I just want solr to ignore the 'sCan someone PLEASE help me It is driving me

DIH using a connection pool

2012-05-24 Thread Esteban Donato
Hi community, I am using Solr with DIH to index content from a DB.  The point is that I have to configure DIH to check changes in the DB very frequently (aprox 1 sec) to maintain the index almost up-to-date.  I noted that JDBCDataSource closes the DB connection after every execution which is not a

Re: using pre-core properties in dih config

2012-02-05 Thread Esteban Donato
they way you described it is how DIH works with variable replacement. Alternatively, you can define the per-core properties in SOLR_HOME//conf/solrcore.properties file as a list of key=value pairs. For the global variable, NUM_CORES, you can define it as a JVM system property, like -DNUM_CORES=3

Re: Catchall field does not seem to work. Solr 3.4

2012-02-04 Thread Esteban Donato
also, if you want to search across different fields without specifying field names, you can use dismax http://wiki.apache.org/solr/DisMaxQParserPlugin On Sat, Feb 4, 2012 at 11:06 AM, Ahmet Arslan wrote: >>   >>   >>   >>   >> >>  searchField >> >> >> I have noticed that 'title' field  and 'pate

Re: Solr Scoring question

2012-01-08 Thread Esteban Donato
filter queries (fq) are not included for score calculation, just the query in q parameter is used for this purpose. That's why although you get the same results, lucene will just use q=*:* in your 1st query and q=tag:car in your 2nd query to calculate the scores. As you can see since both queries

Re: NRT and replication

2011-10-26 Thread Esteban Donato
- a distributed update processor like the one Yonik wrote will do fine >> in simple situations. >> >> On Oct 17, 2011, at 7:33 PM, Esteban Donato wrote: >> >> > thanks Yonik.  Any idea of when this should be completed?  In the >> > meantime I think I will ha

Re: NRT and replication

2011-10-17 Thread Esteban Donato
ban Donato > wrote: >>  I found soft commits very useful for NRT search requirements. >> However I couldn't figure out how replication works with this feature. >>  I mean, if I have N replicas of an index for load balancing purposes, >> when I soft commit a doc in

NRT and replication

2011-10-14 Thread Esteban Donato
Hello guys, I found soft commits very useful for NRT search requirements. However I couldn't figure out how replication works with this feature. I mean, if I have N replicas of an index for load balancing purposes, when I soft commit a doc in one of this nodes, is there any way that those "in-m

Re: text search and data aggregation, thoughts?

2011-10-14 Thread Esteban Donato
thanks Pravesh for your feedback. I have 10 million products and 165M rows of visits accumulated for 2 years. The data-aggregated needs to be shown in the search result page along with the product description. I also felt option 2 was the most suitable but wanted to have a second view. The only

text search and data aggregation, thoughts?

2011-10-12 Thread Esteban Donato
Hello community,  Let me explain my case.  I need to implement a feature that combines text search and data aggregation.  That is, the app will let the users search for products and set a date range.  As result, I need to show them products that matched the search + some data aggregated for that p

aggregate functions in Solr?

2011-09-26 Thread Esteban Donato
Hello guys,   I need to implement a functionality which requires something similar to aggregate functions in SQL.  My Solr schema looks like this: -doc_id: integer -date: date -value1: integer -value2: integer   Basically the index contains some numerical values (value1, value2, etc) per doc and

Re: multicore and replication cause OOM

2011-06-25 Thread Esteban Donato
thanks Shalin. One more question: is there any way to avoid multiple cores replicating at the same time? Like synchronizing the ReplicationHandler somehow? On Fri, Jun 24, 2011 at 6:55 AM, Shalin Shekhar Mangar wrote: > On Fri, Jun 24, 2011 at 1:41 PM, Esteban Donato > wrote: >&

Re: Query may only contain [a-z][0-9]

2011-06-24 Thread Esteban Donato
I think another alternative is to use phrase query and then a PatternReplaceFilterFactory at query time to remove the unwanted characters. Don't know if phrase query behavior meets your requirements thought. On Fri, Jun 24, 2011 at 9:39 AM, roySolr wrote: > Yes i use the dismax handler, but i wi

multicore and replication cause OOM

2011-06-24 Thread Esteban Donato
Hi, I have a Solr with 7 cores (~150MB each). All cores replicate at the same time from a Solr master instance. Every time the replication happens I get an OOM after experiencing long response times. This Solr used to have 4 cores before and I've never got an OOM with that configuration (replic

testing subscription.

2011-06-23 Thread Esteban Donato