CloudSolrServer instead of httpSolrServer

2016-07-30 Thread Naveen Pajjuri
Hi, While sending updates to solr cloud i randomly send updates to one of the node (in my cloud) directly using httpSolrServer. if i use cloudSolrServer (by passing zk ip's), instead of httpSolrServer can i expect any improvment in performance. my baisc question is how does updates propagate when

Re: How to index text field with html entities ?

2016-07-30 Thread Bruno Mannina
Thanks Shawn for these precisions Le 30/07/2016 à 00:43, Shawn Heisey a écrit : On 7/29/2016 4:05 PM, Bruno Mannina wrote: after checking my log it seems that it concerns only some html entities. No problem with & but I have problem with: ü “ etc... Those are valid *HTML* entities, but they a

Query Elevation Automation

2016-07-30 Thread Kais Hassan
Hello, I have recently created a Solr plugin that you might find interesting. Elevate Creator is a Solr Plugin that automates the generation of elevate.xml (elevated query file) from any JDBC supported database, such as MySQL and PostgreSQL. The plugin is intended to be used with the QueryElevatio

Re: CloudSolrServer instead of httpSolrServer

2016-07-30 Thread Erick Erickson
In a word "yes". CloudSolrClient figures out what shard each document belongs on and sends the doc directly to the shard leader. If you use the client.add(docList) format it sends sub-lists consisting of the documents for each shard to the correct shard leader in parallel by default. Plus, CloudSo