Solr nested documents : Query for child documents filtered by a parent field

2018-12-02 Thread Ashika Umanga Umagiliya
I have following parent-child models parent: public class DataSet { @Field private String id; @Field private String type="type_dataset"; @Field private String name; @Field private String dataSourceId; @Field private String serviceId;

Re: Solr Setup using NRT and PULL replicas

2018-12-02 Thread Daniel Carrasco
Thanks for all the info, We're trying some things to find the way to make it more stable, becuase we're getting into troubles with the cluster. This weekend we've got three downtimes in a few hours because some nodes of the cluster loose their connection a bit during an import (we don't know

Re: Issue with SolrQuery( Adding +) -- Need help urgent

2018-12-02 Thread Shawn Heisey
On 12/1/2018 8:24 PM, Surender Reddy wrote: Query we are sending to Solr: +displayNameWords:[2 TO 5] +((+preferredLocationCountry:"United States" +preferredLocationState:Alabama)) +((+(allContents:java^10.0 allContents:eclipse allContents:java- When you say you are "sending" this to

Re: Issue with SolrQuery( Adding +) -- Need help urgent

2018-12-02 Thread Jan Høydahl
Hi, What you are seeing in the log is simply URLencoded string of the query, so this is expected. In URLEncoding, space is represented as +, and a plus is represented by %2B, a double-quote is represented by %22 and so on (where numbers are the hex value of the ascii value), see

Re: Solr Setup using NRT and PULL replicas

2018-12-02 Thread Edward Ribeiro
To mix NRT and TLOG/PULL replicas is not recommended. It is all NRT nodes or TLOG nodes mixed (or not) with PULL replicas. As you know, all PULL replicas is not possible. According to the talk below, one of the reasons is that if you have NRT mixed with TLOG and PULL replicas then a leadership

Pagination Graph/SQL

2018-12-02 Thread Nicolas Paris
Hi SolR pagination is incredible: you can provide the end user a small set of results together with the total number of documents found (numFound). I am wondering if both "parallel SQL" and "Graph Traversal" feature also provide a pagination mechanism. As an example, the above SQL : SELECT id