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 tagging search results

My search queries to solr are of the following nature, (A OR B OR C) OR (X AND Y AND Z) OR ((ABC AND DEF) - XYZ) What I am trying to achieve is when I fire the query the results returned should be able to tagged with which part or the OR resulted…
Cool Techie
  • 756
  • 2
  • 18
  • 39
0
votes
1 answer

Issue with distributed spelling check in Solr Cloud

I'm in the process of migration to Solr Cloud from a master-slave configuration. The Solr version I'm migrating to is 4.4. I've 2 shards with 1 replica each. I'm facing one issue with distributed spelling suggestion. I've turned on the spelling…
Shamik
  • 1,671
  • 11
  • 36
  • 64
0
votes
1 answer

SolrCloud Distribute search

When a distributed search is done, the initial query is forwarded to all shards that are part of the specific collection that we are querying. My question here is, Which is the machine that does the aggregation for results from shards? Is the…
Yago Riveiro
  • 727
  • 13
  • 28
0
votes
1 answer

Client can only connect to zookeeper once

I'm trying to use Solr cloud with zookeeper. Per the solr cloud page, I am trying to use a standalone zookeeper and have the solr instances connect to it. Here's my problem: I can connect to zookeeper one time. Everything looks good on the solr…
Wisco crew
  • 1,337
  • 1
  • 17
  • 25
0
votes
2 answers

Solr segment mearge policy configuration

I am using solrcloud 4.0 and i did not change any settings for segment merging (its default to 32 MB). Though my index size is only 18 MB it displays 5 segments on admin UI. I dont understand is it correct or some bug ?
user1556622
0
votes
1 answer

Starting Solr in Tomcat with specifying ZK host(s)

I've setup a ZK instance and also deployed Solr in Tomcat7 on a different instance in Amazon EC2. Afterwards I tried starting tomcat specifying the ZK host IP, like so: sudo service tomcat7 start -DzkHost=<< zk ip >>:2181 -DnumShards=3 Solr loads…
maephisto
  • 4,952
  • 11
  • 53
  • 73
0
votes
1 answer

solr query returns inproper results for same query

I am using solr 4.3.0 in production with zookeeper 3.4.5 on windows and solr 4.0.0 on Linux box in local environment. I have implemented solr search and solr index update architectures and they seems to be working fine on local and production…
user1556622
0
votes
1 answer

Solr: Document missing required uniqueKey error despite present field

I'm working with Solr 4.3 I have a set up with two Solr Cores: userCore and mainCore userCore has its own schema.xml and solrconfig.xml and is hosted on localhost:8983. mainCore has its own different schema and solrconfig, and has aSolrCloud set up…
ess
  • 313
  • 5
  • 12
0
votes
1 answer

How to create solr shards cluster with different core name?

I am able to create solr shards cluster with default collection name i.e (collection1) in both solr instance. How should I proceed for creating shards cluster with different core name in both solr instances. ie. solr instance1 with "collection1"…
Kamal Kishore
  • 325
  • 2
  • 4
  • 15
0
votes
2 answers

solr 4.4 multiple datasource connection

in my db-data-config.xml i have configured two datasource, each with his parameter name, for example:
carminePat
  • 159
  • 2
  • 5
  • 13
0
votes
1 answer

Exception connecting to Remote Solr Instance (407 error)

I have written the code mentioned below. HttpSolrServer solrServer = new HttpSolrServer("http://10.40.4.171/solr/prime-core"); List userList=null; SolrQuery q = new SolrQuery(); q.setQuery("*:*"); q.setStart(0); …
Shiv Kumar Ganesh
  • 3,799
  • 10
  • 46
  • 85
0
votes
1 answer

Solr Cloud 4.3 all instances return 404 result

I have a Solr Cloud with 1 external zookeeper where it has 2 collections and each collection is divided into 2 shards as follows: solr#1 --> collection 1 - shard 1, collection 2 - shard 1 solr#2 --> collection 1 - shard 2, collection 2 - shard 2…
rusho1234
  • 241
  • 2
  • 12
0
votes
1 answer

Solr. how configurate Distributing function across Shards.

I use Solr 4.0. I use Solr cloud. There is hash function for distributing(like round-robin algorithm ) in SolrCloud. Can I change this function by plugin? Is there this plugin in configurations ? If yes, How can I do it ? TNX
Sveta
  • 11
  • 2
0
votes
3 answers

Solr Distributed Search vs. Solr Cloud

For Solr 4.3 users, what would be the benefit of using Solr Distributed Search over Solr Cloud? Or should all Solr deployment after 4.x just use Solr Cloud, and forget about Solr Distributed Search?
Saqib Ali
  • 3,953
  • 10
  • 55
  • 100
0
votes
1 answer

Solr 4.3 Cloud and Pivoting

We are trying Solr Cloud with Solr version 4.3, but pivoting doesn't seem to be working in this case. http://localhost:8995/solr/cmn/select?q=*%3A*&facet=true&facet.mincount=1&facet.pivot=source_domain,author&rows=1&wt=json&facet.limit=5 Am I…
Cool Techie
  • 756
  • 2
  • 18
  • 39