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

Solr does not retain collection on restart of docker stack deployment

I have setup docker based solr cluster based on below file version: '3' services: zoo1: image: zookeeper:3.4 volumes: - './zoo1_data:/data' environment: ZOO_MY_ID: 1 ZOO_PORT: 2181 …
Kundan Atre
  • 3,853
  • 5
  • 26
  • 39
-1
votes
1 answer

How can i change my localhost domain in Apache solr? (linux OS)

i want to change domain..(linux) For now the url to access solr is in the localhost domain: http://localhost:8983/solr I'd like to change it to another domain, but I don't know how to do it. http://www.exmple.com:8983/solr
user19298124
-1
votes
1 answer

Why is Solr Cloud in Solr 7.4 still reporting our old IPs after we did a migration

We migrated our 3 Solr servers to 3 new VMs. We are still running the same setup as we were on the old VMs (Solr 7.4). I've also ran the Zookeeper upconfig command to replace our old config files so that they now use the new IPs. However, when I…
RyanWorks
  • 39
  • 6
-1
votes
2 answers

Solr 7.4 throws an error when I try to start it

I'm migrating Solr from 3 old machines to 3 new ones and I'm only able to get Solr to run on only 1 of the 3 new machines. Solr was running fine on the 3 old machines, but can't figure out why it won't run on 2 of the new machines. I'm running Solr…
RyanWorks
  • 39
  • 6
-1
votes
1 answer

Method for converting a Document from the index into a SolrDocument suitable for inclusion in a SolrQueryResponse

Struggling to find method for converting a Document from the index into a SolrDocument suitable for inclusion in a SolrQueryResponse for solr-core-5.5.2.jar solr-core-5.2.1.jar had an ResponseWriterUtil.toSolrDocument(Document doc, IndexSchema…
-1
votes
1 answer

solr admin UI access restrict to security.json

how to restrict to security.json to all other user expect super admin super admin has all admin access and service user have access to only collections when service user(permission to only collectios) login to admin UI, able see security.json(which…
RV Sai
  • 1
  • 1
-1
votes
2 answers

index records with similar value in solr

i have three docs to be indexed into solr . sample of the 3 docs has been given below. Doc 1:{ name:"alex" age:"25"} Doc 2:{ name:"alex" age:"29"} Doc 3:{ name:"benu" age:"29"} Suggest me a way to index this.
UMA MAHESWAR
  • 167
  • 3
  • 16
-1
votes
1 answer

How to synchronize Solr one instance to the second one on seperate system

I have two solr instances, one is for development and index preparation while second is the one that is serving user for their requests (deployment system). Development solr is in local mode and deployment is in cloud mode. After the finalization…
Hafiz Muhammad Shafiq
  • 8,168
  • 12
  • 63
  • 121
-1
votes
1 answer

Different language indexing in Solr

I have data for two languages, english and korean, i have already indexed data for the english language, i need to index data for the korean language. I did some research and found that there are inbuilt support for few languages, but i cant find…
-2
votes
1 answer

How to understand if I'm in SolrCloud mode or not?

How can I understand, from a custom component (e.g. SearchComponent, ResponseWriter) if I am running in SolrCloud mode or not?
Andrea
  • 2,714
  • 3
  • 27
  • 38
1 2 3
83
84