Re: Date query not returning results only some time

2014-03-01 Thread Arun Rangarajan
> The slave is polling the master after the interval specified in solrconfig.xml. The slave essentially asks "has anything changed?" If so, the changes are brought down to the slave. Yes, I understand this, but if master does not open a new searcher after auto commits (which would indicate that the

Re: Solr is NoSQL database or not?

2014-03-01 Thread search engn dev
Thank you all for such nice thoughts. Got some more information from here -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-is-NoSQL-database-or-n

Re: Solr is NoSQL database or not?

2014-03-01 Thread David Smiley (@MITRE.org)
+1 Excellent responses, Jack. - Author: http://www.packtpub.com/apache-solr-3-enterprise-search-server/book -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-is-NoSQL-database-or-not-tp4120554p4120682.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: SolrCloud plugin

2014-03-01 Thread Soumitra Kumar
In general, yes. I don't how SolrCloud serves a distributed query? What all it does on the shards, and what on the server serving the query? On Mar 1, 2014 2:58 PM, "Furkan KAMACI" wrote: > Hi; > > Ok, I see that your aim is different. Do you want to implement something > similar to Map/Reduce p

Re: Solr is NoSQL database or not?

2014-03-01 Thread Jack Krupansky
NoSQL? To me it's just a marketing term, like Big Data. Data store? That does imply support for persistence, as opposed to mere caching, but mere persistence doesn't assure that the store is suitable for use as a System of Record which is a requirement in my view for a true database. So, I wou

Re: Adding (spatial) filter query slows down avg response time

2014-03-01 Thread David Smiley (@MITRE.org)
Hi, The reason why it's working faster for you when you put {!geofilt} into your main query is most likely because the particular field type you are using is LatLonType, which works on a per-document basis, and by putting it in the main query it will, by default, leap-frog across the documents wit

Re: Possible UI regression in the Analysis form in 4.7?

2014-03-01 Thread Timothy Potter
Thanks for confirming Shawn. I created SOLR-5800 for this. I'd dig into the UI code further but my JavaScript skills are a bit rusty to say the least ... bummer that this regression breaks a very nice example in the book though :-( On Sat, Mar 1, 2014 at 1:28 PM, Shawn Heisey wrote: > On 3/1/2014

Re: SolrCloud plugin

2014-03-01 Thread Furkan KAMACI
Hi; Ok, I see that your aim is different. Do you want to implement something similar to Map/Reduce paradigm? Thanks; Furkan KAMACI 2014-03-02 0:09 GMT+02:00 Soumitra Kumar : > I want to add a command to calculate average of some numeric field. How do > I efficiently do this when data is split

Re: Solr is NoSQL database or not?

2014-03-01 Thread Furkan KAMACI
Hi; The first link you provided includes ElasticSearch: http://en.wikipedia.org/wiki/NoSQL as a Document Store and plus a note that it is a search engine. What are the main differences between ElasticSearch and Solr that makes ElasticSearc a NoSQL store but not Solr. I think that these are concept

Re: SolrCloud plugin

2014-03-01 Thread Soumitra Kumar
I want to add a command to calculate average of some numeric field. How do I efficiently do this when data is split across multiple shards. I would like to do the computation on each shard, and then aggregate the result. On Sat, Mar 1, 2014 at 1:51 PM, Furkan KAMACI wrote: > Hi; > > I've written

Re: SolrCloud plugin

2014-03-01 Thread Furkan KAMACI
Hi; I've written a dashboard for such kind of purposes and I will make it open source soon. You can get information of SolrCloud via Solrj or you interact with Zookeeper. Could you explain more what do you want to do? Which kind of results do you want to aggregate for SolrCloud installation. Than

SolrCloud plugin

2014-03-01 Thread Soumitra Kumar
Hello, I want to write a plugin for a SolrCloud installation. I could not find where and how to aggregate the results from all shards, please give some pointers. Thanks, -Soumitra.

Re: range types in SOLR

2014-03-01 Thread Erick Erickson
Right, thanks Shawn for looking up the URLs. That's exactly what I was thinking of. Erick On Sat, Mar 1, 2014 at 11:54 AM, Shawn Heisey wrote: > On 3/1/2014 11:41 AM, Thomas Scheffler wrote: >> Am 01.03.14 18:24, schrieb Erick Erickson: >>> I'm not clear what you're really after here. >>> >>

Re: ContributorsGroup Add

2014-03-01 Thread Erick Erickson
Done, thanks! Erick On Sat, Mar 1, 2014 at 12:38 PM, Keith Mericle wrote: > Hello, > > > > My userID is KeithMericle. > > > > I would like to be added to the ContributorsGroup so that I can edit a link > on our company listing on the Solr Support page. > > > > Regards, > > > > Keith > > >

ContributorsGroup Add

2014-03-01 Thread Keith Mericle
Hello, My userID is KeithMericle. I would like to be added to the ContributorsGroup so that I can edit a link on our company listing on the Solr Support page. Regards, Keith

Re: Possible UI regression in the Analysis form in 4.7?

2014-03-01 Thread Shawn Heisey
On 3/1/2014 12:15 PM, Timothy Potter wrote: > The PatternReplaceCharFilterFactory (PRCF) is used to collapse > repeated letters in a term down to a max of 2, such as #yu would > be #yumm > > When I run some text through this analyzer using the Analysis form, > the output is as if the resulting

Re: range types in SOLR

2014-03-01 Thread Shawn Heisey
On 3/1/2014 11:41 AM, Thomas Scheffler wrote: > Am 01.03.14 18:24, schrieb Erick Erickson: >> I'm not clear what you're really after here. >> >> Solr certainly supports ranges, things like time:[* TO date_spec] or >> date_field:[date_spec TO date_spec] etc. >> >> >> There's also a really creative u

Possible UI regression in the Analysis form in 4.7?

2014-03-01 Thread Timothy Potter
I have an example in Solr In Action that uses the PatternReplaceCharFilterFactory and now it doesn't work in 4.7.0. Specifically, the is: The PatternReplaceCharFilterFactory (PRCF) is used to collapse repeated

Re: range types in SOLR

2014-03-01 Thread Raymond Wiker
Looks like you might be able to use sub-documents (or whatever it is called in SOLR) for this; create the parent document without any dates, and a child document for each date range. On 01 Mar 2014, at 19:41 , Thomas Scheffler wrote: > Am 01.03.14 18:24, schrieb Erick Erickson: >> I'm not cle

Re: range types in SOLR

2014-03-01 Thread Thomas Scheffler
Am 01.03.14 18:24, schrieb Erick Erickson: I'm not clear what you're really after here. Solr certainly supports ranges, things like time:[* TO date_spec] or date_field:[date_spec TO date_spec] etc. There's also a really creative use of spatial (of all things) to, say answer questions involving

java.lang.Exception: Conflict with StreamingUpdateSolrServer

2014-03-01 Thread Gopal Patwa
We have non SolrCloud cluster with Solr 4.1 version and often we get this error during indexing, Did anyone else had similar experience with Indexing or have seen this error. 2014-03-01 16:52:16,857 [1a44#fb2a/ActiveListingPump] priority=INFO app_name=listing-search-index thread=pool-15-thread-33

Re: range types in SOLR

2014-03-01 Thread Erick Erickson
I'm not clear what you're really after here. Solr certainly supports ranges, things like time:[* TO date_spec] or date_field:[date_spec TO date_spec] etc. There's also a really creative use of spatial (of all things) to, say answer questions involving multiple dates per record. Imagine, for inst

Re: Date query not returning results only some time

2014-03-01 Thread Erick Erickson
bq: the slave anyway replicates the index after auto commits! (Is this desired behavior?) Absolutely it's desired behavior. The slave is polling the master after the interval specified in solrconfig.xml. The slave essentially asks "has anything changed?" If so, the changes are brought down to the

Re: Solr is NoSQL database or not?

2014-03-01 Thread Gopal Patwa
Well said Jack, we are using Solr as NoSQL solution as Jack describe from Solr version 3.x and still using it in Production with 4.x and on our Stubhub site most visited page. https://m.stubhub.com/los-angeles-kings-tickets/los-angeles-kings-los-angeles-staples-center-1-3-2014-4323511/ On Sat,

range types in SOLR

2014-03-01 Thread Thomas Scheffler
Hi, I am in the need of range types in SOLR - similar to PostgreSQL: https://wiki.postgresql.org/images/7/73/Range-types-pgopen-2012.pdf My schema should allow approximate dates and queries on that. When having a single such date per document one can split this information into two separate fi

Re: Solr is NoSQL database or not?

2014-03-01 Thread Jack Krupansky
A database is a place you store information for relatively permanent reference, called a "system of record". Most commonly data is accessed by a primary key. Update of existing data by individual row is a common operation. Solr is a "search server" or "search platform". The focus of a search s