Re: Understanding SOLR Joins

2018-05-31 Thread Mikhail Khludnev
On Tue, May 29, 2018 at 10:50 AM, Nancy Goyal <87.na...@gmail.com> wrote: > Hi, > > > I have implemented basic SOLR Joins between two collections. Currently in > my project implementation, we are getting data from multiple tables and > storing as single document in view an

Understanding SOLR Joins

2018-05-29 Thread Nancy Goyal
Hi, I have implemented basic SOLR Joins between two collections. Currently in my project implementation, we are getting data from multiple tables and storing as single document in view and indexing that view. We got a suggestion to implement the same with Joins but not sure if the same

Re: How do I get faceting to work with Solr JOINs

2014-07-23 Thread Vinay B,
Thank You, Umesh ! That's a neat approach. Reading through your post, we decided to tweak our indexing strategy a bit, basically an inversion. We moved all our facetable (and frequently updated) fields to the main doc and the text and other static content fields to the sub doc (co-related via a pa

Re: How do I get faceting to work with Solr JOINs

2014-07-17 Thread Umesh Prasad
Hi Vinay, You can customize the FacetsComponent. Basically FacetComponent uses SimpleFacets to compute the facet count. It passes matched docset present in responsebuilder to SimpleFacets's constructor. 1. Build a mapping between parent space and auxiliary document space in (say an int array) a

How do I get faceting to work with Solr JOINs

2014-07-17 Thread Vinay B,
Some Background info : In our application, we have a requirement to update large number of records often. I investigated solr child documents but it requires updating both the child and the parent document . Therefore, I'm investigating adding frequently updated information in an "auxillary docume

Re: SOLR JOINS not working and not returning any data for simple query

2014-03-10 Thread Erick Erickson
Really, how can anyone help with this little information? Please read: http://wiki.apache.org/solr/UsingMailingLists Best, Erick On Mon, Mar 10, 2014 at 10:03 PM, William Bell wrote: > Send the queries. > > > On Fri, Mar 7, 2014 at 2:32 PM, EXTERNAL Taminidi Ravi (ETI, > Automotive-Service-Solut

Re: SOLR JOINS not working and not returning any data for simple query

2014-03-10 Thread William Bell
Send the queries. On Fri, Mar 7, 2014 at 2:32 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) wrote: > Hi All, > > I am facing a strange behavior with the Solr Server. All my joins are not > working suddenly after a restart. Individual collections are returning the > response but

SOLR JOINS not working and not returning any data for simple query

2014-03-07 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi All, I am facing a strange behavior with the Solr Server. All my joins are not working suddenly after a restart. Individual collections are returning the response but when I join the collection , I am getting zero documents. Let me know if anyone have same type of issues.

Re: solr joins

2014-02-07 Thread Mikhail Khludnev
> Also, if you can please elaborate on the segmented vs toplevel > http://vimeo.com/44113003 "Is Your Index Reader Really Atomic or Maybe Slow?" by Uwe Schindler > Thanks, > > Anand > > > > On 2/7/2014 4:53 PM, Mikhail Khludnev wrote: > >> Basicall

Re: solr joins

2014-02-07 Thread anand chandak
Thanks Mikhail, curious why was scoring left out of solr ? And if there's any plan to port it ? Also, if you can please elaborate on the segmented vs toplevel Thanks, Anand On 2/7/2014 4:53 PM, Mikhail Khludnev wrote: Basically, i am trying to understand where and how solr joins d

Re: solr joins

2014-02-07 Thread Mikhail Khludnev
>> Basically, i am trying to understand where and how solr joins differ from >> lucene joins. Any pointers, much appreciated ? >> >> Hello Anand, I'm keen for index-time joins (aka block joins), thus I've never looked into query-time ones. I even didn't

Re: solr joins

2014-02-02 Thread anand chandak
e limitation of solr join,does it means that unlike the traditional RDMS joins that can have columns from both the TO and FROM field, solr joins will only have fields from the TO documents ? Is my understanding correct ? Also, there's some difference with respect to scoring and towards that t

Re: solr joins

2014-02-01 Thread Ahmet Arslan
uments (ie: you can not return fields in the "from" documents as if they were a multivalued field on the "to" documents)". I am finding it hard to understand the above limitation of solr join,does it means that unlike the traditional RDMS joins that can have columns fr

solr joins

2014-01-31 Thread anand chandak
ou can not return fields in the "from" documents as if they were a multivalued field on the "to" documents)". I am finding it hard to understand the above limitation of solr join,does it means that unlike the traditional RDMS joins that can have columns from both the TO an