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
1 answer

SolrCloud 6 user access to /solr/collection/admin/ping

I am new Solr, i have deployed a SolrCloud cluster of 4 nodes with external zookeeper of 3 nodes. I deployed a security.json file to the zookeper which restricts access to the cluster. I have 2 users (admin,…
2
votes
2 answers

SolrJ - Can't commit updates when authentication plugin is enabled

With Solr 6.3.0, in cloud mode, and 3 external zookeepers as cluster, and use solrJ as client. A: Without authentication Before enabling authentication, I use following code to add/update document: CloudSolrClient client =…
Eric
  • 22,183
  • 20
  • 145
  • 196
2
votes
1 answer

SessionException occurs when crawling with solrCloud

I using solrCloud 6.1.0. I trying to crawl with manifoldcf2.4. But it does not work. The following is the execution environment. java:1.8(However, it is 1.7 when installing manifoldcf) zookeeper:3.4.9 If i start job with manifoldcf, I can crawl the…
bunji
  • 39
  • 1
  • 3
2
votes
1 answer

SolrCloud backup data not finding on my system path

When I ran the SolrCloud (6.3.0) Back API using this url backup url It returns response status 0 i.e no error 0
user5620899
2
votes
2 answers

solr cloud - java.lang.NoClassDefFoundError: org/apache/lucene/analysis/util/TokenizerFactory

When start solr cloud with external zookeeper cluster, got error: java.lang.NoClassDefFoundError: org/apache/lucene/analysis/util/TokenizerFactory I checked the configuration, but didn't found any error. The additional 3rd party jars are added at:…
Eric
  • 22,183
  • 20
  • 145
  • 196
2
votes
1 answer

Create Remote Solr core for solr cloud

I am very new to solr cloud and now integration solr cloud with external zookeeper. I want to run 4 solr cores on 4 different server and manage by zookeeper. So, I run solr cores on 4 different ip servers with different ports, 8983,8984,8985,8986…
sai aung myint soe
  • 139
  • 1
  • 1
  • 12
2
votes
1 answer

Solr sort by the value of function query does not work

I'm working on a feature which relies on sorting the value of function query. Function query is as below : http://localhost:8983/solr/collection/select?q=*:*&sort=if(exists(f1_t), f1_t, theme)+ASC&wt=json&indent=true The sort function is…
Bourne
  • 1,905
  • 13
  • 35
  • 53
2
votes
0 answers

Allow solr 4.10.3 to listen two interfaces only in solrcloud

I have to configure solrcloud with two hosts (nodes). For this I cannot run solr on localhost interface. It should be some local ip so that both nodes in solrcloud can connect with each other. I have a third interface that is live IP. I do not allow…
Hafiz Muhammad Shafiq
  • 8,168
  • 12
  • 63
  • 121
2
votes
0 answers

SolrCloud fails to connect more than 1 node

I'm trying to create a SolrCloud setup with Vagrant boxes using Solr 6.2.0 and Zookeeper 3.4.8 I managed to get this to work perfectly with Solr 6.1.0, but I'm not able to start more than one node in cloud mode with Solr 6.2.0. I have four VMs…
chrxr
  • 1,374
  • 1
  • 10
  • 21
2
votes
1 answer

Does it make sense to run several SolrCloud nodes on one single server?

I can use only one server to run my application and my Solr server. I was wondering if performance and availability-wise it makes sense to deploy several nodes of SolrCloud and zookeeper on this machine (e.g. using VMs or docker). Since I will be…
Thematrixme
  • 318
  • 1
  • 4
  • 14
2
votes
0 answers

When will document is validated against the schema.xml in SOLR

I am submitting the indexing request through SolrJ but not doing hard commit. The commit is handle as part of solrconfig.xml but my doubt is that, at what stage the document is validate against the schema.xml. Is it during the index submission or…
Adarsh H D Dev
  • 588
  • 7
  • 29
2
votes
2 answers

solr cloud: RROR: Error loading config name for collection

I'm trying to create a new collection with solr-cloud setup, fails with the following: ERROR: Error loading config name for collection test I tried deleting the collection: sudo /opt/solr/bin/solr delete -c test but with the same results My…
user6012237
  • 33
  • 1
  • 5
2
votes
1 answer

Unable to create a collection on Solr cloud

I am unable to create a collection named 'testCollection' in the Solr Cloud. URL: :8080/solr/admin/collections?action=CREATE&name=testCollection Response: :
minion
  • 540
  • 8
  • 21
2
votes
2 answers

docker-compose SSL error: hostname '192.168.99.100' doesn't match 'localhost'

I'm trying to run docker-compose behind a proxy masked by cntlm. In other words, my proxy settings are simply localhost:3128. 1) First of all, I created a new docker-machine setting the proxy and regenerating the certs: HOST=10.16.13.232 # IP…
Fernando Aspiazu
  • 953
  • 1
  • 10
  • 28
2
votes
1 answer

loading external jar files in solr-5.3.1

I've switched my solr version from 4.3.0 to 5.3.1. I want to know ,how to load an external jar file(for example my customized analyzer) and use it as anlyzer of a field? I used to add tag in solrconfig.xml in 4.3.0 and everything was working…
amir
  • 21
  • 3