Re: Reindexing in SOlr

2016-02-23 Thread Neeraj Bhatt
Hi Can you give your data import tag details tag in db-data-config.xml Also is your previuos and new solr have different versions ? Thanks On Wed, Feb 24, 2016 at 12:08 PM, kshitij tyagi wrote: > Hi, > > I am following the following article >

Mapping Solr Exceptions to Error Code while using SolrJ

2016-02-23 Thread Debraj Manna
Hi, I am using Solrj 5.1 to talk add & delete docs from solr. Whenever there is some exception while doing addition or deletion. Solr is throwing SolrServerException with the error message in the exception. I am trying to map each error to an error code. For example if I am getting an exception

Reindexing in SOlr

2016-02-23 Thread kshitij tyagi
Hi, I am following the following article https://wiki.apache.org/solr/HowToReindex to reindex the data using Solr itself as a datasource. Means one solr instance has all fields with stored true and indexed=false. When I am using this instance as a datasource and indexing it on other instance

importing 4.10.2 solr cloud repository to 5.4.1

2016-02-23 Thread Neeraj Bhatt
Hello We have a solr cloud stored and indexed data of around 25 lakh documents We recently moved to solr 5.4.1 but are unable to move our indexed data. What approach we should follow 1. data import handler works in solr cloud ? what should we give in url like

Re: solrcloud shard working mechanism

2016-02-23 Thread Binoy Dalal
Check out this Sharding wiki page: https://cwiki.apache.org/confluence/display/solr/Shards+and+Indexing+Data+in+SolrCloud It has a pretty comprehensive overview of how Sharding works. On Wed, 24 Feb 2016, 00:46 Mugeesh Husain wrote: > Hello, > > could some explain about

What search metrics are useful?

2016-02-23 Thread William Bell
How do others look at search metrics? 1. Search conversion? Do you look at searches and if the user does not click on a result, and reruns the search that would be a failure? 2. How to measure auto complete success metrics? 3. Facets/filters could be considered negative, since we did not find

Re: numFound in facet results

2016-02-23 Thread Anil
Yes Yonik. i could not find numBuckets true/false in Solr reference documentation and Solrj facet params as well. Could you please point me to documentation ? Thank you. On 23 February 2016 at 20:53, Yonik Seeley wrote: > On Mon, Feb 22, 2016 at 2:34 AM, Anil

Query time de-boost

2016-02-23 Thread Shamik Bandopadhyay
Hi, I'm looking into the possibility of de-boosting a set of documents during query time. In my application, when I search for e.g. "preferences", I want to de-boost content tagged with ContentGroup:"Developer" or in other words, push those content back in the order. Here's the catch. I've the

solrcloud shard working mechanism

2016-02-23 Thread Mugeesh Husain
Hello, could some explain about shard system, if we created 10 shard in a collection then search localhost:8983/solr/collection?q=id:12... in which shard this id will be search first. I mean i need to know internal working standard of shard/searching in solrlcoud. -- View this message in

Re: very slow frequent updates

2016-02-23 Thread Jeff Wartes
My suggestion would be to split your problem domain. Use Solr exclusively for search - index the id and only those fields you need to search on. Then use some other data store for retrieval. Get the id’s from the solr results, and look them up in the data store to get the rest of your fields.

[ANNOUNCE] Apache Solr 5.5.0 and Reference Guide for 5.5 available

2016-02-23 Thread Chris Hostetter
Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document (e.g., Word, PDF) handling, and geospatial

Re: Exception SolrServerException: No live SolrServers available to handle this request:

2016-02-23 Thread Mugeesh Husain
Yes, all of the shards in a live state. I guess may be there will be docvalues type NUMERIC for field 'year' (expected=SORTED) exception. Still i am suffering what is the issue -- View this message in context:

Re: numFound in facet results

2016-02-23 Thread Yonik Seeley
On Mon, Feb 22, 2016 at 2:34 AM, Anil wrote: > can we get numFound of the number of face results for a query like in main > results ? Do you mean the number of facet buckets? You can add "numBuckets":true to a JSON facet request to get this info.

Re: UpdateHandler in solrconfig when using soldcloud

2016-02-23 Thread Shawn Heisey
On 2/23/2016 3:13 AM, Ilan Schwarts wrote: > Hi, I am migrating old schema/solrconfig to a new solrcloud 5.2 from 4.3.1 > single core. > In this guide: > https://cwiki.apache.org/confluence/display/solr/SolrCloud+with+Legacy+Configuration+Files > They tell you: > > > ${solr.data.dir:} >

Re: SOLR cloud startup poniting to zookeeper ensemble

2016-02-23 Thread Susheel Kumar
Use this syntax and see if it works. bin/solr start -e cloud -noprompt -z localhost:2181,localhost:2182,localhost:2183 On Mon, Feb 22, 2016 at 11:16 PM, bbarani wrote: > I downloaded the latest version of SOLR (5.5.0) and also installed > zookeeper > on port 2181,2182,2183

Re: CLOSE_WAIT and high search latency

2016-02-23 Thread Jacques du Rand
I'm not a JVM nor kernel expert so take this with a pinch of salt... my guess woule be: Having more CLOSE_WAIT connections can *probably* affect you in two ways: 1. Longer GC Cycles pauses (not sure how much of the connection the JVM handles) 2. Some of the connections might be put on the

Fwd: numFound in facet results

2016-02-23 Thread Anil
Hi, Can some one shed some light here ? Regards, Anil -- Forwarded message -- From: Anil Date: 22 February 2016 at 13:04 Subject: numFound in facet results To: solr-user@lucene.apache.org HI , can we get numFound of the number of face results for a query

Re: CLOSE_WAIT and high search latency

2016-02-23 Thread Niraj Aswani
Hi Jacques, Thank you for your reply. I'll give these parameters a try and report back. Do you think having higher number of CLOSE_WAIT connections affects the over all search delivery speed? Regards, Niraj On Tue, Feb 23, 2016 at 2:57 PM, Jacques du Rand wrote: >

Re: words with spaces within

2016-02-23 Thread Francisco Andrés Fernández
Binoy and Walter, many thanks for your answer. I think I'll go by Walter sugestion. Best regards, Francisco El lun., 22 de feb. de 2016 a la(s) 23:43, Walter Underwood < wun...@wunderwood.org> escribió: > This happens for fonts where Tika does not have font metrics. Open the > document in Adobe

UpdateHandler in solrconfig when using soldcloud

2016-02-23 Thread Ilan Schwarts
Hi, I am migrating old schema/solrconfig to a new solrcloud 5.2 from 4.3.1 single core. In this guide: https://cwiki.apache.org/confluence/display/solr/SolrCloud+with+Legacy+Configuration+Files They tell you: ${solr.data.dir:} And in the other guide:

Re: CLOSE_WAIT and high search latency

2016-02-23 Thread Jacques du Rand
Try to fiddle with your tcp settings: /etc/sysctl.conf net.ipv4.tcp_fin_timeout = 30 net.ipv4.tcp_keepalive_intvl = 2 net.ipv4.tcp_keepalive_probes = 2 net.ipv4.tcp_keepalive_time = 180 That should help. On 23 February 2016 at 07:13, Niraj Aswani wrote: > Hi, > > I am

Re: SOLR cloud startup - zookeeper ensemble

2016-02-23 Thread Zara Parst
>From where you got this hint of using quotes ??? use option like this bin/solr start -e cloud localhost:2181,localhost:2182,localhost:2183 Mind it no gap between comma Thanks Zara On Tue, Feb 23, 2016 at 10:32 AM, bbarani wrote: > Ok when I run the below command it