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

Solr cloud - creating collection using implicit routing

I am not being able to decide that out of the two ways of creating collection in solr cloud which one I should go for. I want that - I should be able to add/create shard to a existing collection on the fly so that I can scale up the cluster as and…
Vijay Tiwary
  • 151
  • 10
0
votes
1 answer

solr : how to add extra fields values not in the document

I know lucene, just started to learn how to use solr. In the simple example, the way to add document is to used the example ../update -jar post.jar to add document, the question is without writing my own add document in java, using the same way…
Tara
  • 549
  • 2
  • 7
  • 14
0
votes
1 answer

solr cloud replica writing norms file until it consumes partition

We have a solr cloud 4.7.1 with 3 collections on 8 servers. Each collection is broken into 4 shards with 4 servers holding a primary replica of each collection and 4 different servers holding the other replicas. Last week the servers holding the…
0
votes
1 answer

Intermittent while deleting Solr document by unique Id

We have used Solr cloud 4.3.1 with 2 shards and 2 replicas architect design. Replica runs on Cross data center environment. I have a issue with deletion of single Solr document within a collection based on unique id field, but the behavior regarding…
0
votes
1 answer

SolrCloud role assignment

I have a SolrCloud with 3 shards, 3 replicas and a Zookeeper ensemble with 5 members. Replica 2 is being retired, the root device is EBS backed and it has an attached EBS volume. I'm assuming on restart it will migrate to new hardware with new…
kurt steele
  • 147
  • 2
  • 10
0
votes
1 answer

Solr : Importing data with single SP call

I have one solr collection called document. In that there are fields like id,name,associated_folder,is_associate & other The field is_associate depends on associated_folder. I am importing data using Data Import provided in Solr Dashboard My…
mcacorner
  • 1,304
  • 3
  • 22
  • 45
0
votes
1 answer

Solr Cloud - Facets

I am trying to get facets returned in SoLR Cloud. I don't see the FACETS in the response. localhost:8983/solr/select?q=:&facet=true&facet.field=area&defType=lucene&debug=true I didn't see any discussions around this. As faceting is a key feature, I…
Sam
  • 91
  • 1
  • 9
0
votes
0 answers

solr overwrite on just some fields with duplicate uniquekeys

I am using nutch for crawling some pages into solr index. For the purpose of specifying The documents that are read I added a boolean value called "read_flag" into "schema.xml" with default value of false. When an application user read a document it…
Ali
  • 1,759
  • 2
  • 32
  • 69
0
votes
1 answer

How to add dynamically collections to SolrCloud

When I try to creat a new collection in my SolrCLoud I get the Error message Specified config does not exist in ZooKeeper:my_new_collection from the Apache Solr Reference Guide I learnd that the parameter **collection.configName** must already be…
MrLang
  • 629
  • 1
  • 6
  • 15
0
votes
1 answer

What does solr support ? A Relational Data base or a NoSql DB's

I would like to know weather SOLR supports a NoSql Database or a Relational Database? Thanks
Venkat
  • 73
  • 3
  • 12
0
votes
1 answer

solrcloud plugin deployment

I am going to migrate our app from Lucene 4.7 to Solr 4.7 (in cloud). As we have some custom analysers I am interested in how complicated is deployment process with Solr Cloud. Exactly how does it looks like with custom analysers. I couldn't find…
Piotr Idzikowski
  • 713
  • 5
  • 13
0
votes
0 answers

solr upgrade from 3.x to 4.7 schema.xml

I am working solr environment which is running on 3.x. Now I am migrating it to solr 4.7 I have done all the required changes but need a work around or a solution for one. In schema.xml I have copyField,
user414977
  • 265
  • 3
  • 8
  • 24
0
votes
0 answers

Automatic syncing of data on a node that was down for a while:

I have 3 SOLR instances on 3 different hosts and an external zookeeper configured for each SOLR instance. Suppose, instance1 and instance2 are up and running and instance3 is down. A few records are added to both the running instances. I am able…
0
votes
1 answer

Using SolrCloud with RDBMS or using Solr as main data storage

I was wondering which scenario (or the combination) would be better for my application. From the aspect of performance, scalability and high availability. Here is my application: Suppose I am going to have more than 10m documents and it grows every…
Ali
  • 1,759
  • 2
  • 32
  • 69
0
votes
1 answer

Change the solr suggest response based on a boost list of terms

I have a requirement to boost a term/s in solr 4.7.x auto suggest response based on the boost value for each term and this boosting is for some set of terms defined in a file (and business can manage this file). I have a design to extend the…
Rajesh
  • 83
  • 11