Questions tagged [solrcloud]

Apache Solr includes the ability to set up a cluster of Solr servers that combines fault tolerance and high availability. Called SolrCloud, these capabilities provide distributed indexing and search capabilities.

Apache Solr includes the ability to set up a cluster of Solr servers that combines fault tolerance and high availability. Called SolrCloud, these capabilities provide distributed indexing and search capabilities, supporting the following features:

  • Central configuration for the entire cluster

  • Automatic load balancing and fail-over for queries

  • ZooKeeper integration for cluster coordination and configuration.

1255 questions
2
votes
2 answers

Change default query fields in SolrCloud using the API

I'm using SolrCLoud is to search documents with multiple attributes. In my application, I would like to search over all the fields if the query does not specify any specific field such term1 AND term2 query should search for that combination in all…
ypriverol
  • 585
  • 2
  • 8
  • 28
2
votes
0 answers

Schema vs Index vs Properties in solr schema screen

what does it mean if something has tick mark for "Indexed" in "Schema" but not for "Indexed" in "Index"?
raj247
  • 381
  • 1
  • 4
  • 21
2
votes
1 answer

Solr CDCR doesn't work if the authentication is enabled

I set up CDCR in my test environment and it worked perfectly until I uploaded security.json files to Zookeeper clusters of a Target and a Source SolrClouds. security.json files are identical for both Clouds as well as collections name. The…
Dimaf
  • 653
  • 1
  • 11
  • 25
2
votes
1 answer

Authentication of Solr Cloud using zookeeper host string

I want to set authentication for my SolrCloud. I use SolrJ6.5.0 in java. My CloudSolrClient is defined by directly using Zookeeper host: CloudSolrClient serverCloud = new CloudSolrClient.Builder(). …
Zahra Aminolroaya
  • 520
  • 1
  • 5
  • 28
2
votes
2 answers

Indexing Architecture for frequently updated index solr?

I have roughly 50M documents, 90 (stored(20) + non- stored(70)) fields in schema.xml indexed in single core. The queries are quiet complex along with faceting and highlighting. Out of this 90 fields, there are 3-4 fields (all stored) which are very…
ak1234
  • 201
  • 2
  • 10
2
votes
2 answers

SolrCloud ZooKeeper compatibility

We have Solr running in our production environment in a master-slave setup which works great. But we are looking to shore up our Solr infrastructure more as we get Solr involved more involved in our solution. For this, we are looking to implement…
Gabbar
  • 4,006
  • 7
  • 41
  • 78
2
votes
1 answer

How to use acronyms in Apache Solr?

I use text_general field of Solr's provided configuration for storing content of web-pages as follows:
S Jayesh
  • 191
  • 1
  • 4
  • 19
2
votes
0 answers

Replace zookeeper server from zookeeper ensemble (with SolrCloud)

I have a SolrCloud cluster (6.6) setup with external Zookeeper Ensemble (3.4.8) of 5 nodes. Recently, one machine (ip1:port1) that run 1 Zookeeper with id=1 went down. This is what I've done to replace zookeeper: Start zookeeper in another machine…
2
votes
1 answer

Solr returns "No live SolrServers available" only for one specific request

I got a perfectly fine working SolrCloud cluster. When I try to search for "Onesie", it gives me org.apache.solr.client.solrj.SolrServerException: No live SolrServers available to handle this request All other requests return correct sets of…
Vasily802
  • 1,703
  • 2
  • 18
  • 35
2
votes
2 answers

How to filter a huge list of ids from Solr at runtime

I have an index for products is Solr. I need to serve a customized list of products for each customer such that I have to exclude some specific products for each customer. Currently I am storing this relationship of customer & excluded products in…
sagar agarwal
  • 142
  • 1
  • 7
2
votes
0 answers

Solr basic authentication without setting credentials for each request

Currently I am using SOLR basic authentication feature on my SOLR cloud using Solrj library. According to documentation and only way I found, the code looks like this - SolrRequest req = new QueryRequest(solrQuery);…
Kaidul
  • 15,409
  • 15
  • 81
  • 150
2
votes
1 answer

How to turn off multivalue in Solr?

How can i turn off the multivalued in solr? I tried to edit the manage-schema file inside /data_driven_schema_configs/conf/ folder and set all multivalued="true" to false. Then restart solr and then create new collection, but nothing changed. I need…
Eiger
  • 43
  • 7
2
votes
1 answer

replacement of ApostropheFilterFactory in solr 5.3.1

I need to remove apostrophe from the words before indexing. For eg I want Bachelor's to become Bachelor . I used solr.ApostropheFilterFactory for that , but I think , this filter got deprecated after solr4 and i am using solr5. This is how I used…
gashu
  • 863
  • 2
  • 10
  • 21
2
votes
3 answers

Ensuring evenly distributed documents per shard in solr

I've found myself needing to support result grouping with an accurate ngroups count. This required colocation of documents by a secondaryId field. I'm currently indexing documents using the compositeId router in solr. The uniqueKey is documentId and…
Andrei
  • 513
  • 2
  • 8
  • 15
2
votes
2 answers

How to know when dataimporthandler for solr finished indexing?

Is it possibile to know where solr finished to index my data? I work with solrcloud 4.9.0 and zookeeper for conf file manager. I have the data.import file, but in it there is only where the indexing is STARTED not when it ended.
stecava
  • 71
  • 10