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
0 answers

SolrCloud error loading solr.VelocityResponseWriter

I am getting this error in the logs. I did not configure any solr.VelocityResponseWriter in solrConfig. ERROR:[{ "update-queryresponsewriter":{ "startup":"lazy", "name":"velocity", "class":"solr.VelocityResponseWriter", …
siva sandeep
  • 557
  • 1
  • 5
  • 17
2
votes
0 answers

Why does @SolrDocument doesn't create collection/core if it doesn't exist and throw 404 error

Is there a way to create automatically in solr server startup or programmatically in spring-data-jpa using any annotations?
2
votes
0 answers

Center of polygon using Solr

Is there a way in Solr to find center of polygon. we have a GIS dataset indexed which has polygon and multipolygon. is there a direct way to find the center of polygon or multi polygon
Uttkarsh Jain
  • 228
  • 1
  • 12
2
votes
1 answer

Incorrect field reading during ranking

Solr version 5.1.0 Documents contain DocValues field "ts" with timestamp using during ranking. If I directly request document at Solr Admin UI I see…
Egor
  • 1,334
  • 8
  • 22
2
votes
2 answers

Errors connecting to solrcloud using CloudSolrClient

I'm trying to connect to solrCloud using solrj CloudSolrClient, but am getting errors. Used to directly call a single solr node, now switching to solrcloud. I have tried various different url formats as specified from documentation…
2
votes
1 answer

How to configure Zookeeper SSL on Windows Server

Because of limitations, we're forced to use Windows to host and manage our Zookeeper/SolrCloud cluster. We're using 3 Windows Server 2016 servers, in Microsoft Azure, with an Azure Load Balancer in front of it. I was able to install and configure…
Alex Pilon
  • 93
  • 4
  • 12
2
votes
2 answers

Prevent Solr from creating default copy fields

When I add any field in Solr and then index some data, Solr creates a copy field for this field. For example I added a field named app_id and after indexing there are data both in app_id and another field named app_id_str. Is there any way to…
2
votes
1 answer

Solr 8 - MiniSolrCloudCluster with multiple servers gives "java.io.IOException: 6/invalid_frame_length" when adding docs

I am creating a MiniSolrCloudCluster instance as shown below. After which i create a collection and then add a document and commit. final int numServers = 3; // random unassigned HTTP port final int jettyPort = 0; final…
dev009
  • 755
  • 8
  • 13
2
votes
2 answers

Disable config edit in solr

I am trying to disable the configApi in solr and i read it in a blog stating that "Disable the ConfigAPI if not in use, by running Solr with the system property disable.configEdit=true" .Can someone please explain a little bit on how actually we do…
UMA MAHESWAR
  • 167
  • 3
  • 16
2
votes
1 answer

Solr CDCR (cross data center replication) target and its commits

How does a Solr CDCR target cluster handle commits? The commit settings are the same as on the CDCR source, where the Solr admin UI shows freshly indexed documents with hardly any delay. Both settings are
Harald
  • 4,575
  • 5
  • 33
  • 72
2
votes
0 answers

How to configure spellcheck functionality in Solr?

I want to implement spellcheck functionality in Apache Solr-6.6.4, but am not able to do so. My program is not suggesting me the correct word that should be used (in Solr query). My collection name is employee. I want to implement spellcheck on…
2
votes
2 answers

How to make BasicAuthentication in SolrJ - CloudSolrClient?

I am using Solr 7.5 Server and I had used External Zookeeper.When I browse using the Solr Admin UI It ask authentication to me. For Java Client I had used the below Code BasicAuthSolrClientCache bs = new BasicAuthSolrClientCache("solr",…
Karthick
  • 41
  • 4
2
votes
1 answer

Solr performance: 6.6.0 vs 7.2.1

I'm running loadtests on two SolrCloud clusters. Clusters are identical except that one has Solr 6.6.0 with fixed schema, and the other has Solr 7.2.1 with managed schema. Java and garbage collector setting are same on both. Hardware is same…
Vasily802
  • 1,703
  • 2
  • 18
  • 35
2
votes
0 answers

Solr Cloud Index Sizes

what is the Solr Cloud equivalent to ElasticSearch's _cat queries to determine the index sizes? In ElasticSearch I can simply call http://localhost:9200/_cat/indices/?v&s=index or http://localhost:9200/_cat/shards/?v to see how much space (in…
Hanebambel
  • 109
  • 11
2
votes
1 answer

Solr poor performance on date range query

I'm currently struggling to get decent performance on a ~18M documents core with NRT indexing from a date range query, in Solr 4.10 (CDH 5.14). I tried multiple strategies but everything seems to fail. Each document has multiple versions (10 to 100)…
Arthur Burkhardt
  • 658
  • 4
  • 13