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

MapReduceIndexerTool doesn't reindex documents correctly

I am currently trying to batch index data that at the moment I have in a text file using Cloudera Search batch indexing developing on the Cloudera quickstart vm. I believe I have a problem with my schema, and morphline because it completes the job…
3
votes
1 answer

SolrCloud: Unable to Create Collection, Locking Issues

I have been trying to implement a SolrCloud, and everything works fine until I try to create a collection with 6 shards. My setup is as follows: 5 virtual servers, all running Ubuntu 14.04, hosted by a single company across different data centers 3…
LandonC
  • 889
  • 1
  • 16
  • 28
3
votes
2 answers

How to add a node to SolrCloud dynamically without SPLITSHARD?

I have setup SolrCloud with 4 shards. I added 8 nodes to the SolrCloud(4 Leaders and 4 Replicas). Each node is running in different machine. But later I identified that my data is growing more and more(daily 4 million files) so that my 4 shards are…
user2605977
  • 269
  • 4
  • 12
3
votes
2 answers

Solrcloud multicore configuration

I have a standalone Solr instance with 4 different cores working fine using the embedded Jetty server. I configured the cores for v4.10.3 but since I moved to v5.1 and all seems to work fine without any changes. Before going into production, I need…
s1m3n
  • 623
  • 6
  • 21
3
votes
1 answer

SolrCloud Indexing/Querying without a Smart-Client

I'm having a bit of trouble understanding exactly how indexing and querying would work if I don't have a smart-client available. I'm using SolrNet with C#, which currently doesn't integrate with ZooKeeper. As a basic example, let's say I have a…
LandonC
  • 889
  • 1
  • 16
  • 28
3
votes
1 answer

Cannot Find Proper solrconfig.xml file for configuration in solr 5.1.0

I have setup Solr 4.7 before and I had configured solrconfig.xml file in my core for dataimport requestHandler and it was working fine. But when I setup Solr 5.1.0, what is the location of solrconfig.xml file for particular core? Where is it…
3
votes
3 answers

Existing SOLR collection not picking up Zookeeper schema change

I have a local solr cloud cluster running on three separate nodes: 33.33.3[3-5]:8080 This cluster is managed by a local 3 node zookeeper ensemble that lives at: 33.33.3[0-2]:2181 I am trying to experiment with schema modifications - however, I'm…
tknickman
  • 4,285
  • 3
  • 34
  • 47
3
votes
1 answer

Solr cloud crash after indexing while serving regular search requests

I have a 4.6 solr cloud installed over tomcat7, with a setup of 4 shards (two replicas each) and ZooKeeper ensemble of 3 servers. Every solr server has 8 cores, and 30Gb of ram, i allocate 15Gb for the solr/tomcat, and the rest to be handles by the…
Katz Adir
  • 31
  • 2
3
votes
1 answer

Create Collection fails in SolrCloud

I am trying to create a collection in solrcloud that is on top of hadoop cluster. We have three node zk ensemble, chosen hdfs for data/index storage. I went through the documentation available, and started solr on 4 data nodes on my cluster (solr…
akn
  • 587
  • 1
  • 7
  • 15
3
votes
1 answer

Removing collections/shards/etc in SolrCloud/Zookeeper

Is there a way to remove a single or even all collections and their various associated settings/shards/etc in Zookeeper/SolrCloud? I would like to start back with a fresh, clean SolrCloud, but I am not seeing any way to clean things up. I tried…
CodeChimp
  • 8,016
  • 5
  • 41
  • 79
3
votes
0 answers

termVectors vs omitTermFreqAndPosition in Apache Solr

I have confusion in understanding termVectors and omitTermFreqAndPosition field properties. What I understood is: If omitTermFreqAndPosition is set to false then solr will store the frequency and position of every term and this information will be…
qnimate
  • 511
  • 3
  • 9
3
votes
1 answer

Which is better Solr Replication or solr Sharding?

We have huge application built , as number of users going on high which is the best option and which is useful to our application such unintrrupted support to the application need to be provided. Is Solr replication good ?? Is Solr Sharding is good…
3
votes
2 answers

SolrCloud shard recovery

I'm a SolrCloud newbie, my setup is 3 shards, 3 replicas, external Zookeeper Today I found shard3 down, replica3 had taken over as leader, so indexing was occurring to replica3 not shard3. I stopped Tomcat/SOLR in reverse order (R3,R2,R1,S3,S2,S1)…
dan coleman
  • 99
  • 1
  • 6
3
votes
2 answers

Missing required parameter: name when using solr CREATEALIAS

I submitted a reqest to my solr cloud server with curl: curl http://solrserver1:8983/solr/admin/collections?action=CREATEALIAS&name=bf&collections=collection1,collection2 It return a 400 error and said: Missing required parameter: name. But you see…
syan
  • 165
  • 1
  • 10