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

Creating a solr collection with curl

I am trying to create collection in solr cloud, https://abc.a/solr/admin/collections?action=CREATE&name=123&configSet=super&numShards=2&replicationFactor=2&maxShardsPerNode=2&wt=json The collection is created, but the configSet is created using…
siva sandeep
  • 557
  • 1
  • 5
  • 17
3
votes
3 answers

Pricing issue solve at scale

Pricing Issue Problem: We have a item collection that has minimum and maximum price with max discount across different stores. { "item_id":1, "price":{ "min":1500.00, "max":3000.00 }, "max_discount":50 } Now, we have…
Fahim
  • 12,198
  • 5
  • 39
  • 57
3
votes
1 answer

Run Solr custom filter in cloud mode

I've implemented a custom Solr filter. I want to use it with Solr in cloud mode. I followed the official instruction for adding plugins in cloud mode (that can be found here:…
3
votes
2 answers

solr SolrIndexWriter was not closed prior to finalize(),​ indicates a bug -- POSSIBLE RESOURCE LEAK

I have a Solr cloud (version 7.4) with 2 nodes (each one has 10Gb SSD hard and 256Gb memory and 50Gb heap) and 10 collections. Today I encountered this error about instagram_prime_archive collection : SolrIndexWriter was not closed prior to…
Alihossein shahabi
  • 4,034
  • 2
  • 33
  • 53
3
votes
1 answer

Solr Cloud - Solr Hanging / can't start OR Could not fully create collection:

My creation/deletion of Solr collections doesn't work anymore. When I launch a creation (via a curl), I have the following answer (after 30sec): Error 500 - Could not fully create collection: EDIT: I had another time, the same…
tdebroc
  • 1,436
  • 13
  • 28
3
votes
2 answers

Ignoring special characters during query time in SOLR

I want to ignore special characters during query time in SOLR . For example : Lets assume we have a doc in SOLR with content:My name is A-B-C . content:A-B-C retunrs documents but content:ABC doesnt return any document . My requirement is that…
UMA MAHESWAR
  • 167
  • 3
  • 16
3
votes
0 answers

Exporting data using solr streaming expressions is randomly not working

I am using solr 7.4 version. I am trying to export data using streaming expressions. Following is the simple curl query that i am using. I am indexing my data and testing the following query. curl --data-urlencode 'expr=search(collection1, …
Gaini Rajeshwar
  • 177
  • 1
  • 1
  • 12
3
votes
0 answers

how to replicate ExternalFileField file on SolrCloud

I have the External File Field configured and working on a non-cloud Solr setup. Now I need to apply the same to a SolrCloud setup. I have 3 shard and 3 replication factors. The EFF file needs to go into the data directory of the solr index. How do…
brijeshp
  • 31
  • 2
3
votes
1 answer

Solr : Index does not have an operational DataImportHandler defined

I was trying to use DataImportHandler to index my MySQL Database using Solr in Cloud Mode, the following are the configurations it uses the _default configsets. solr-7.3.0\server\solr\configsets\_default\conf\data-config.xml # define data…
imprezzeb
  • 706
  • 1
  • 7
  • 18
3
votes
2 answers

What mode is Solr 7.2.1 running in?

Is there a command, similar to /opt/solr/bin/solr version that will tell you whether Solr is running in SolrCloud or Standalone mode? I am running Solr 7.2.1 on Centos7
Flea
  • 1,490
  • 2
  • 19
  • 43
3
votes
0 answers

What is the right way to create a CloudSolrClient with Kerberos Delegation?

Firstly, I would like to check if my understanding is correct on how this should be implemented. After reading the Solr 6.6.0 Kerberos Documentation (I've included some code snippets below) I believe I would need to create an initial CloudSolrClient…
darkCode
  • 140
  • 8
3
votes
0 answers

Return multiple fields from a Solr Cloud graph traversal query

I'm using Solr to create user-based recommendations. I'm running a solr cloud stream query using the gatherNodes function. The query itself is working fine, but it only returns one field (the itemId). In the end, I'm looking to be able to return…
Benya16
  • 177
  • 1
  • 15
3
votes
3 answers

Connection to solr cloud collection using pysolr

I have configured a multicore solr cloud. Created a collection with 2 shrads and no replication. Through the solr UI 192.168.1.56:8983, I am able to get results to the query. I want to do the same with pysolr, so tried running following: import…
Pramod Patil
  • 757
  • 2
  • 10
  • 26
3
votes
1 answer

Solr query searching on non-indexed fields

Solr version 6.1.0 Created a schema with some fields as indexed=true on which I specifically want the solr main-query q to search. And also added more fields, which I just wanted to select, so marked them as stored=true and indexed=false. Issue now…
Niranjan Kumar
  • 1,438
  • 1
  • 12
  • 29
3
votes
1 answer

Understanding the different type of SOLR commits

I want to clarify my understanding about different type of Solr commits. Please correct me if I am wrong. commits: all type of commits including SOFT and HARD commits. autoCommit: does a HARD commit to the disk and make sure all the autoSoftCommit…
A l w a y s S u n n y
  • 36,497
  • 8
  • 60
  • 103