Usage of CloudSolrStream while new data is indexed

2015-07-19 Thread mihaela olteanu
Hello, I am iterating through a whole collection in SolrCloud using CloudSolrStream. While I am doing this operation new data gets indexed into the collection. Does CloudSolrStream pick up the newly added values? Is it negatively impacted by this operation or what is the impact of the collection

Re: Auto replication mechanism in SolrCloud 5.1 not working

2015-04-27 Thread mihaela olteanu
unning out of space. Now I am sure about the config file ZooKeeper is using, maybe I was missing something on this side and because of this I had that weird issue ... On Friday, April 24, 2015 7:30 AM, Shawn Heisey wrote: On 4/23/2015 5:59 AM, mihaela olteanu wrote: > I have setu

Auto replication mechanism in SolrCloud 5.1 not working

2015-04-23 Thread mihaela olteanu
Hello, I have setup a SolrCloud 5.1 cluster consisting of 3 nodes (let's cal them host1, host2 and host3). I have started each node by specifying property -DnumShards=1. Afterwards I have created a collection with the following parameters and imported some data using DIH: http://host1:port/solr/

SolrCloud 4.10.3 Security

2015-02-23 Thread mihaela olteanu
Hello, Does anyone know why the Basic authentication was not yet released for SolrCloud as described on the wiki page:  https://wiki.apache.org/solr/SolrSecurity? Is there any plan in the near future for closing this issue: https://issues.apache.org/jira/browse/SOLR-4470 ? Isn't already a very ba

Re: Performance of cross join vs block join

2013-07-12 Thread mihaela olteanu
hus I can easily add all documents from all tables in one Solr core, but for each document to add a discriminator field.  Could you point me to some more documentation? Thanks in advance, Mihaela From: Mikhail Khludnev To: solr-user ; mihaela olteanu

Re: How to set a condition over stats result

2013-07-11 Thread mihaela olteanu
What if you perform sub(sum(myfieldvalue),100) > 0 using frange? From: Jack Krupansky To: solr-user@lucene.apache.org Sent: Friday, July 12, 2013 7:44 AM Subject: Re: How to set a condition over stats result None that I know of, short of writing a custom sea

Re: Performance of cross join vs block join

2013-07-11 Thread mihaela olteanu
hing this topic) , it displays an empty page. Thanks, Mihaela From: Mikhail Khludnev To: solr-user ; mihaela olteanu Sent: Thursday, July 11, 2013 2:25 PM Subject: Re: Performance of cross join vs block join Mihaela, For me it's reasonable that single

Performance of cross join vs block join

2013-07-11 Thread mihaela olteanu
Hello, Does anyone know about some measurements in terms of performance for cross joins compared to joins inside a single index? Is it faster the join inside a single index that stores all documents of various types (from parent table or from children tables)with a discriminator field compared

Re: Solr 4.x union of cross-joins

2013-07-08 Thread mihaela olteanu
93ventilation testChild2 103ventilation testChild2 Thanks Mihaela From: mihaela olteanu To: Yonik Seeley Cc: "solr-user@lucene.apache.org" Sent: Monday, July 8, 2013 3:52 PM Subject: Re: Solr 4.x union of cross-joins Here is exactly the data that I

Re: Solr 4.x union of cross-joins

2013-07-08 Thread mihaela olteanu
for each individual piece from the query (one _query_ when querying the parent and one _query_ for each different join query). Unfortunately when using _query_ I cannot write "exact match" queries because I cannot add the query string in " (quotes) (I already add quotes for t

Solr 4.x union of cross-joins

2013-07-06 Thread mihaela olteanu
Hello, I have 3 indices that form a hierarchy. Basically these were constructed from 3 tables: parent, child1 and child2 and between parent and children there is a one to many relationship. parent (id,name) child1(id,join_key,field1)  child2(id,join_key,field2)  "join_key" is the foreign key