Magento solr Invalid Date String:'false'

2013-08-26 Thread Nikesh12
We are getting below message during solr indexing running by cron setting in magento. Aug 12, 2013 8:06:15 AM org.apache.solr.update.processor.LogUpdateProcessor finish INFO: {add=[24P1602]} 0 1 Aug 12, 2013 8:06:16 AM org.apache.solr.common.SolrException log SEVERE: org.apache.solr.common.SolrEx

Re: More on topic of Meta-search/Federated Search with Solr

2013-08-26 Thread Paul Libbrecht
Dan, if you're bound to federated search then I would say that you need to work on the service guarantees of each of the nodes and, maybe, create strategies to cope with bad nodes. paul Le 26 août 2013 à 22:57, Dan Davis a écrit : > First answer: > > My employer is a library and do not have

Re: Default query operator "OR" wont work in some cases

2013-08-26 Thread Jack Krupansky
Yeah, sorry, I read the parsed query too quickly - the phrase is the optional relevancy boost due to the pf2 parameter. -- Jack Krupansky -Original Message- From: smanad Sent: Monday, August 26, 2013 10:08 PM To: solr-user@lucene.apache.org Subject: Re: Default query operator "OR" won

Re: Filter cache pollution during sharded edismax queries

2013-08-26 Thread Ken Krugler
Hi Otis, Sorry I missed your reply, and thanks for trying to find a similar report. Wondering if I should file a Jira issue? That might get more attention :) -- Ken On Jul 5, 2013, at 1:05pm, Otis Gospodnetic wrote: > Hi Ken, > > Uh, I left this email until now hoping I could find you a refer

Re: Default query operator "OR" wont work in some cases

2013-08-26 Thread smanad
I am not searching for phrase query, I am not sure why it shows up in parsedquery. 0 3 true true egg salad 1377569284170 xml -- View this message in context: http://lucene.472066.n3.nabble.com/Default-query-operator-OR-wont-work-in-some-cases-tp4086624p4086732.h

ANNOUNCE: Lucene/Solr Revolution EU 2013: Registration & Community Voting

2013-08-26 Thread Chris Hostetter
(NOTE: cross-posted to various lists, please reply only to general@lucene w/ any questions or follow ups) 2 Announcements folks should be aware of regarding the upcoming Lucene/Solr Revolution EU 2013 in Dublin... # 1) Registration Now Open Registration is now open for Lucene/Solr Revolu

Re: Default query operator "OR" wont work in some cases

2013-08-26 Thread Jack Krupansky
The phrase "egg salad" does not occur in your input. And, quoted phrases are an implicit "AND", not an "OR". Either you wanted "egg" and "salad" but not as a phrase, or as a very loose sloppy phrase, such as "egg salad"~10. Or, who knows what you really want - your requirements are expressed to

Re: More on topic of Meta-search/Federated Search with Solr

2013-08-26 Thread Amit Jha
Hi, I would suggest for the following. 1. Create custom search connectors for each individual sources. 2. Connector will responsible to query the source of any type web, gateways etc. and get the results & write the top N results to a solr. 3. Query the same keyword to solr and display the resu

Re: Default query operator "OR" wont work in some cases

2013-08-26 Thread smanad
here is keywords field for 3 docs, "Simply Asia products,Simply Asia,Sesame Chicken Egg Drop Soup,Soy Ginger Shrimp and Noodle Salad,Sesame Teriyaki Noodle Bowl" "Eggs,AllWhites,Better'n Eggs,Foods,AllWhites or Better'n Eggs" "DOLE Salad Blend Salad Kit,Salad Kit,Salad,DOLE,produce" Here is my

solr-user@lucene.apache.org

2013-08-26 Thread Erick Erickson
First thing to do is attach &query=debug to your queries and look at the parsed output. Second thing to do is look at the admin/analysis page and see what happens at index and query time to things like o'reilly. You have WordDelimiterFilterFactory configured in your query but not index analysis ch

solr-user@lucene.apache.org

2013-08-26 Thread Utkarsh Sengar
Some of the queries (not all) with special chars return no documents. Example: queries returning no documents q=m&m (this can be explained, when I search for "m m", no documents are returned) q=o'reilly (when I search for "o reilly", I get documents back) Queries returning documents: q=hello&wor

Re: More on topic of Meta-search/Federated Search with Solr

2013-08-26 Thread Dan Davis
One more question here - is this topic more appropriate to a different list? On Mon, Aug 26, 2013 at 4:38 PM, Dan Davis wrote: > I have now come to the task of estimating man-days to add "Blended Search > Results" to Apache Solr. The argument has been made that this is not > desirable (see Jo

Re: More on topic of Meta-search/Federated Search with Solr

2013-08-26 Thread Dan Davis
First answer: My employer is a library and do not have the license to harvest everything indexed by a "web-scale discovery service" such as PRIMO or Summon.If our design automatically relays searches entered by users, and then periodically purges results, I think it is reasonable from a licens

Re: Dropping Caches of Machine That Solr Runs At

2013-08-26 Thread Furkan KAMACI
EOF exception seems like a generic exception for me. I should find the underlying problem within my infrastructure. 26 Ağustos 2013 Pazartesi tarihinde Walter Underwood adlı kullanıcı şöyle yazdı: > We use Amazon EC2 machines with 34GB of memory (m2.2xlarge). The Solr heap is 8GB. We have several

Re: More on topic of Meta-search/Federated Search with Solr

2013-08-26 Thread Paul Libbrecht
Why not simply create a meta search engine that indexes everything of each of the nodes.? (I think one calls this harvesting) I believe that this the way to avoid all sorts of performance bottleneck. As far as I could analyze, the performance of a federated search is the performance of the leas

Re: More on topic of Meta-search/Federated Search with Solr

2013-08-26 Thread Dan Davis
I have now come to the task of estimating man-days to add "Blended Search Results" to Apache Solr. The argument has been made that this is not desirable (see Jonathan Rochkind's blog entries on Bento search with blacklight). But the estimate remains.No estimate is worth much without a desig

Re: Adding one core to an existing core?

2013-08-26 Thread Bruno Mannina
ok thanks ! Le 26/08/2013 17:52, Jack Krupansky a écrit : Unfortunately, there is no -Dcore property, so you have to due -Durl - java -Durl=http://localhost:8983/solr/collection2/update ... -jar post.jar ... You have the proper /select syntax. -- Jack Krupansky -Original Message- F

Re: Default query operator "OR" wont work in some cases

2013-08-26 Thread Erick Erickson
Try adding &debug=query to your URL, that'll show you how the parsing actually happened and should give you some pointers. Best, Erick On Mon, Aug 26, 2013 at 9:55 AM, smanad wrote: > Hi, > > I have some documents with keywords "egg" and some with "salad" and some > with "egg salad". > When I

Re: Solr 4.2.1 update to 4.3/4.4 problem

2013-08-26 Thread Erick Erickson
What is a "select" analyzer type? Never seen one of those before or I'm just blanking Either of those types should work for case-insensitive search, did you re-index? And please don't hijack threads, start a new subject with new questions. Best Erick On Mon, Aug 26, 2013 at 7:42 AM, skorr

Re: Grouping

2013-08-26 Thread tvellore
I'm getting the same error...Is there any workaround to this? -- View this message in context: http://lucene.472066.n3.nabble.com/Grouping-tp2820116p4086674.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Master / Slave Set Up Documentation

2013-08-26 Thread Jared Griffith
Ha, I guess I didn't see that page listed in the Table of contents it's definitely Monday. Thanks. On Mon, Aug 26, 2013 at 10:36 AM, Andrea Gazzarini < andrea.gazzar...@gmail.com> wrote: > You mean this > > http://wiki.apache.org/solr/SolrReplication > > ? > > What's wrong with this page?

Re: Dropping Caches of Machine That Solr Runs At

2013-08-26 Thread Walter Underwood
We use Amazon EC2 machines with 34GB of memory (m2.2xlarge). The Solr heap is 8GB. We have several cores, totaling about 14GB on disk. This configuration allows 100% of the indexes to be in file buffers. wunder On Aug 26, 2013, at 9:57 AM, Furkan KAMACI wrote: > Hi Walter; > > You said you ar

Re: Master / Slave Set Up Documentation

2013-08-26 Thread Andrea Gazzarini
You mean this http://wiki.apache.org/solr/SolrReplication ? What's wrong with this page? It seems clear. I'm widely using replication and the first time I set up a 1 master + 2 slaves by simply following that page On 26 Aug 2013 18:54, "Jared Griffith" wrote: > Hello, > I'm new to this Solr th

Re: Adding one core to an existing core?

2013-08-26 Thread Jack Krupansky
Unfortunately, there is no -Dcore property, so you have to due -Durl - java -Durl=http://localhost:8983/solr/collection2/update ... -jar post.jar ... You have the proper /select syntax. -- Jack Krupansky -Original Message- From: Bruno Mannina Sent: Monday, August 26, 2013 9:36 AM T

Re: Dropping Caches of Machine That Solr Runs At

2013-08-26 Thread Furkan KAMACI
Hi Walter; You said you are caching your documents. What is average Physical Memory usage of your Solr Nodes? 2013/8/26 Walter Underwood > It looks lik that error happens when reading XML from an HTTP request. The > XML ends too soon. This should be unrelated to file buffers. > > wunder > > On

Re: ERROR org.apache.solr.update.CommitTracker – auto commit error...:org.apache.solr.common.SolrException: Error opening new searcher

2013-08-26 Thread Shawn Heisey
On 8/26/2013 1:54 AM, zhaoxin wrote: > Caused by: java.lang.ClassCastException Generally when you get this kind of error with Solr, it means you have a mix of old and new jars. This might be from an upgrade, where either the old war expansion doesn't get removed, or from unnecessarily including j

Master / Slave Set Up Documentation

2013-08-26 Thread Jared Griffith
Hello, I'm new to this Solr thing, and I was wondering if there is any good / solid documentation on setting up and running replication. I'm going through the Wiki but I am not seeing anything that is obvious there. -- Jared Griffith Linux Administrator, PICS Auditing, LLC P: (949) 936-4574 C:

Re: Dropping Caches of Machine That Solr Runs At

2013-08-26 Thread Walter Underwood
It looks lik that error happens when reading XML from an HTTP request. The XML ends too soon. This should be unrelated to file buffers. wunder On Aug 26, 2013, at 9:17 AM, Furkan KAMACI wrote: > It has a 48 GB of RAM and index size is nearly 100 GB at each node. I have > CentOS 6.4. While index

Re: Dropping Caches of Machine That Solr Runs At

2013-08-26 Thread Furkan KAMACI
It has a 48 GB of RAM and index size is nearly 100 GB at each node. I have CentOS 6.4. While indexing I got that error and I am suspicious about that it is because of high percentage of Physical Memory usage. ERROR - 2013-08-21 22:01:30.979; org.apache.solr.common.SolrException; java.lang.RuntimeE

Re: custom names for replicas in solrcloud

2013-08-26 Thread Jack Krupansky
No, it is part of the core admin API. -- Jack Krupansky -Original Message- From: smanad Sent: Monday, August 26, 2013 10:02 AM To: solr-user@lucene.apache.org Subject: Re: custom names for replicas in solrcloud Is coreNodeName exposed via collections api? -- View this message in c

RE: "Caused by: java.net.SocketException: Connection reset by peer: socket write error" solr querying

2013-08-26 Thread Greg Walters
AnilJayanti, Have you checked your entire stack from the client all the way to solr along with anything between them? Your timeout values should match everywhere and if there's something between the client and server that'll timeout before either the client or server does it'll cause that error

Re: Dropping Caches of Machine That Solr Runs At

2013-08-26 Thread Walter Underwood
What is the precise error? What kind of machine? File buffers are a robust part of the OS. Unix has had file buffer caching for decades. wunder On Aug 26, 2013, at 1:37 AM, Furkan KAMACI wrote: > Hi Walter; > > You are right about performance. However when I index documents on a > machine tha

Can a data import handler grab all pages of an RSS feed?

2013-08-26 Thread eShard
Good morning, I have an IBM Portal atom feed that spans multiple pages. Is there a way to instruct the DIH to grab all available pages? I can put a huge range in but that can be extremely slow with large amounts of XML data. I'm currently using Solr 4.0 final. Thanks, -- View this message in co

autoCommit and autoSoftCommit

2013-08-26 Thread Bryan Bende
I'm running Solr 4.3 with: 6 false 5000 When I start Solr and send in a couple of hundred documents, I am able to retrieve documents after 5 seconds using SolrJ. However, from the Solr admin console if I query for *:* it will show that there are docs in the numFound attribute, but

Re: Tokenization at query time

2013-08-26 Thread Andrea Gazzarini
On 08/26/2013 04:09 PM, Erick Erickson wrote: right, edismax is much preferred, dismax hasn't been formally deprecated, but almost nobody uses it... Good to know...I basically use dismax in ALL my SOLR instances :D I'd be really careful about adding whitespace to the list of escape chars becaus

Re: Tokenization at query time

2013-08-26 Thread Erick Erickson
right, edismax is much preferred, dismax hasn't been formally deprecated, but almost nobody uses it... I'd be really careful about adding whitespace to the list of escape chars because it changes the semantics of the search. While it'll work for this specific case, if you use it in other cases it

Re: custom names for replicas in solrcloud

2013-08-26 Thread smanad
Is coreNodeName exposed via collections api? -- View this message in context: http://lucene.472066.n3.nabble.com/custom-names-for-replicas-in-solrcloud-tp4086205p4086628.html Sent from the Solr - User mailing list archive at Nabble.com.

Default query operator "OR" wont work in some cases

2013-08-26 Thread smanad
Hi, I have some documents with keywords "egg" and some with "salad" and some with "egg salad". When I search for egg salad, I expect to see egg results + salad results. I dont see them. egg and salad queries individually work fine. I am using whitespacetokenizer. Not sure if I am missing somet

Re: Different Responses for 4.4 and 3.5 solr index

2013-08-26 Thread Stefan Matheis
Did you check the scoring? (use fl=*,score to retrieve it) .. additionally debugQuery=true might provide more information about how the score was calculated. - Stefan On Monday, August 26, 2013 at 12:46 AM, Kuchekar wrote: > Hi, > The response from 4.4 and 3.5 in the current scenario differs

Re: Adding one core to an existing core?

2013-08-26 Thread Bruno Mannina
Dear Solr User, now I have 2 cores "collection1" "collection2" Default collection is the "Collection1" I have two questions: - Is exist a parameter to add in my html link to indicate the selected core? http://xxx.xxx.xxx.xxx/solr/select/?q=*%3A*&version=2.2&start=0&rows=10&indent=on I mean

adding support for deleteInstanceDir from solrj

2013-08-26 Thread Lyuba Romanchuk
Hi all, Did anyone have a chance to look at the code? It's attached here: https://issues.apache.org/jira/browse/SOLR-5023. Thank you very much. Lyuba

Re: Tokenization at query time

2013-08-26 Thread Andrea Gazzarini
Hi Erick, sorry I forgot the SOLR version...is the 3.6.0 ClientUtils in that version does whitespace escaping: public static String escapeQueryChars(String s) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < s.length(); i++) { char c = s.charAt(i); // These cha

Re: Tokenization at query time

2013-08-26 Thread Erick Erickson
Andrea: Works for me, admittedly through the browser I suspect the problem is here: ClientUtils.**escapeQueryChars That doesn't do anything about escaping the spaces, it just handles characters that have special meaning to the query syntax, things like +- etc. Using your field definition, t

Re: Solr 4.2.1 update to 4.3/4.4 problem

2013-08-26 Thread skorrapa
I have also re indexed the data and tried. And also tried with the belowl This didnt work as well... On Mon, Aug 26, 2013 at 4:03 PM, skorrapa [via Lucene] < ml-node+s472066n4086601...@n3.nabble.c

ERROR org.apache.solr.update.CommitTracker – auto commit error...:org.apache.solr.common.SolrException: Error opening new searcher

2013-08-26 Thread zhaoxin
470665 [commitScheduler-14-thread-1] ERROR org.apache.solr.update.CommitTracker – auto commit error...:org.apache.solr.common.SolrException: Error opening new searcher at org.apache.solr.core.SolrCore.openNewSearcher(SolrCore.java:1522) at org.apache.solr.core.SolrCore.getSearcher(

RE: "Caused by: java.net.SocketException: Connection reset by peer: socket write error" solr querying

2013-08-26 Thread aniljayanti
Hi Greg, thanks for reply, I tried to set the maxIdleTime to 30 milliSeconds. But still getting same error. WARN - 2013-08-26 09:44:29.058; org.eclipse.jetty.server.Response; Committed before 500 {msg=Connection reset by peer: socket write error,trace=org.eclipse.jetty.io.EofException

Re: Solr 4.2.1 update to 4.3/4.4 problem

2013-08-26 Thread skorrapa
Hello All, I am still facing the same issue. Case insensitive search isnot working on Solr 4.3 I am using the below configurations in schema.xml Basically I want my string

Re: Tokenization at query time

2013-08-26 Thread Andrea Gazzarini
Hi Erick, escaping spaces doesn't work... Briefly, - In a document I have an ISBN field that (stored value) is *978-90-04-23560-1* - In the index I have this value: *9789004235601* Now, I want be able to search the document by using: 1) q=*978-90-04-23560-1* 2) q=*978 90 04 23560 1* 3) q=*97

Re: Dropping Caches of Machine That Solr Runs At

2013-08-26 Thread Furkan KAMACI
Hi Walter; You are right about performance. However when I index documents on a machine that has a high percentage of Physical Memory usage I get EOF errors? 2013/8/26 Walter Underwood > On Aug 25, 2013, at 1:41 PM, Furkan KAMACI wrote: > > > Sometimes Physical Memory usage of Solr is over %9

SimpleFacet feature combinations..

2013-08-26 Thread Bram Van Dam
Hi folks, Some of the features of SimpleFacet can't be combined -- the most notable missing combination being range + pivot. Another combination which we'd find very useful is integration with StatsComponent (pivot/ranged stats). Is anyone working on this? Or willing to work on this? This is

Re: custom names for replicas in solrcloud

2013-08-26 Thread YouPeng Yang
Hi smanad If I do not make a mistake, You can append the coreNodeName parameter to your creation command: http://10.7.23.125:8080/solr/admin/cores?action=CREATE&name=dfscore8_3&shard=shard3_3&collection.configName=myconf&schema=schema.xml&config=solrconfig3.xml&collection=collection1&dataDir

Re: How to patch Solr4.2 for SolrEnityProcessor Sub-Enity issue

2013-08-26 Thread harshchawla
Thanks a lot in advance. I am eagerly waiting for your response. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-patch-Solr4-2-for-SolrEnityProcessor-Sub-Enity-issue-tp4086292p4086572.html Sent from the Solr - User mailing list archive at Nabble.com.