slow performance on simple filter

2014-05-14 Thread mizayah
Hey, I got pretty big index with about 7 mln doccuments. I got pretty slow query when i ask about common word. Nothing changes when i ask by q or fq. params={fl=score,class_name&indent=true&q=*:*&wt=xml&fq=class_name:CdnFile} hits=5594978 status=0 QTime=408 It't not about my hardware tho. I w

Indexing PDF in Apache Solr 4.8.0 - Problem.

2014-05-14 Thread vignesh
Dear Team, I am Vignesh using the latest version 4.8.0 Apache Solr and am Indexing my PDF but getting an error and have posted that below for your reference. Kindly guide me to solve this error. D:\IPCB\solr>java -Durl=http://localhost:8082/solr/ipcb/update/extract -Dparams= liter

commit persistence guarantee

2014-05-14 Thread Alvaro Cabrerizo
Hi, Is there any guarantee that every document is persisted on disk during a "commit avalanche" that produces the: "ERROR org.apache.solr.core.SolrCore – org.apache.solr.common.SolrException: Error opening new searcher. *exceeded limit of maxWarmingSearchers*=1, try again later". I've made some

Re: solr cloud 4.8, synonymfilterfactory and big dictionaries

2014-05-14 Thread Giovanni Bricconi
Thank you Elaine, splitted files worked for me too. 2014-05-06 19:15 GMT+02:00 Cario, Elaine : > Hi Giovanni, > > I had the same issue just last week! I worked around it temporarily by > segmenting the file into < 1 MB files, and then using a comma-delimited > list of files in the filter spec

Re: KeywordTokenizerFactory splits the string for the exclamation mark

2014-05-14 Thread Ahmet Arslan
Hi, All same, for single term queries it makes no sense/difference to use quotes. Quotes are proximity operators, it requires at least two clauses/terms.  Actually I coudn't re-produce your problem with 4.8.0. With q=d!sdasdsdwasd...@dsadsadas.edu it is not treated as NOT operator. What versio

FilteredQuery with TermsFilter swallowing results after upgrade to solr 4.8

2014-05-14 Thread Johannes Schlumberger
Hi, I am in the process of upgrading an extension I made to QueryComponent from solr 3.4 to solr 4.8. I am wrapping the query into a filteredquery together with a termsfilter that encapsulates a lot of Terms for up to two fields (potentially 10s of thousands, only two in my simple test case). My ex

SolrMeter is dead?

2014-05-14 Thread Al Krinker
I am trying to test performance of my cluster (solr 4.8). SolrMeter looked promising... small and standalone. Plus, open source so that I could make tweaks if needed. However, I see that the last update date was in Oct 2012. Is it dead? Any better non commercial and preferably open sourced projec

best way to monitor the documents per second in dataimporthandler?

2014-05-14 Thread stockii
Hello my friend :) i want to monitor the taken time of dih with zabbix. which is the best indicator of the update-time when you using the dataimporthandler. is "time taken" correct or do you think one of request time in mbeans is better? i dont think that the value of 5minRateReqsPerSecond is a go

Re: URLDataSource : indexing from other Solr servers

2014-05-14 Thread helder.sepulveda
Here is the relevant portion of the schema: Yes the URL is accessible, did you see my previous comment: I tested calling the URL using curl right on the server, and I get a valid response and the correct content. -- View this message in context: http://lucene.4

multiValued filed vs separate fields

2014-05-14 Thread Pavel Belenkovich
Hi, I wonder about performance difference of 2 indexing options: 1- multivalued field 2- separate fields The case is as follows: Each document has 100 "properties": prop1..prop100. The values are strings and there is no relation between different properties. I would like to search by

Re: Easises way to insatll solr cloud with tomcat

2014-05-14 Thread Joel Bernstein
Aman, You may want to try the Heliosearch Distribution For Solr. This is a free, pre-built Tomcat/Solr distro. http://heliosearch.com/download.html When you open up the zip file there is an examples.txt file in server/bin that has a couple SolrCloud examples. Joel Joel Bernstein Search Engin

permissive mm value and efficient spellchecking

2014-05-14 Thread elisabeth benoit
Hello, I'm using solr 4.2.1. I use a very permissive value for mm, to be able to find results even if request contains non relevant words. At the same time, I'd like to be able to do some efficient spellcheking with solrdirectspellchecker. So for instance, if user searches for "rue de Chraonne

Re: Indexing DateField timezone problem

2014-05-14 Thread Jack Krupansky
The general rule everywhere is that the default time zone is the local time zone of the server processing the date. Could you verify whether your server is in fact set to be "+03:00". If your convention for your database is that the default time zone is GMT, then you will have to manually add

Re: KeywordTokenizerFactory splits the string for the exclamation mark

2014-05-14 Thread Jack Krupansky
Exclamation point is the shortcut for the "NOT" operator. See the minus in front of the second generated term? You need to escape it, either with backslash or enclosing the full term in quotes. Or use the term query parser. Here's a list of the special characters for the query parser: http://luc

Re: KeywordTokenizerFactory splits the string for the exclamation mark

2014-05-14 Thread nativecoder
Yes that happens due to the ! mark. Also can someone please tell me the difference between searching a text in the following ways 1. q=Exact_Word:"samplestring" 2. q=samplestring&qf=Exact_Word 3. q="samplestring"&qf=Exact_Word I think the first and the third one are the same. is it correct ?

Re: distrib=false is not honoring

2014-05-14 Thread Aman Tandon
I also tried it to query specific shard to make sure that the unique record is present in different shards but still no success. http://localhost:8983/solr/mcats/select?q.alt=id:174060&shards=localhost:8983/solr/mcats http://localhost:8983/solr/mcats/select?q.alt=id:174060&shards=localhost:1983/so

distrib=false is not honoring

2014-05-14 Thread Aman Tandon
I am trying to use the solr cloud for solr 4.2.0 and solr 4.7.1. Here mcats is our collection name. *With solr 4.2* shard1: localhost:8019 shard1: localhost:6019 *With solr 4.7.1* shard1: localhost:8983 shard1: localhost:1983 With both the server i make the copy of example directory as mentioned

RE: permissive mm value and efficient spellchecking

2014-05-14 Thread Markus Jelsma
Elisabeth, i think you are looking for SOLR-3211 that introduced spellcheck.collateParam.* to override e.g. dismax settings. Markus   -Original message- From:elisabeth benoit Sent:Wed 14-05-2014 14:01 Subject:permissive mm value and efficient spellchecking To:solr-user@lucene.apache.org;

Re: distrib=false is not honoring

2014-05-14 Thread Jack Krupansky
The q.alt param specifies only the parameter to use if the q parameter is missing. Could you verify whether that is really the case? Typically solrconfig gives a default of "*:*" for the q parameter. Specifying a query via the q.alt parameter seems like a strange approach - what is your rationa

Re: Autocomplete with Case-insensitive feature

2014-05-14 Thread Sunayana
What worked for me was tweaking a code from velocity file, head.vm, I changed 'terms.prefix': function() { return $("#q").val().toLowerCase();}, which solved my issue as I am using terms component for suggestions. Dmitry Kan-2 wrote > what kind of suggester are you using? Does its index get rebuil

Re: SolrMeter is dead?

2014-05-14 Thread Ahmet Arslan
Hi Al, http://jmeter.apache.org Ahmet On Wednesday, May 14, 2014 1:11 PM, Al Krinker wrote: I am trying to test performance of my cluster (solr 4.8). SolrMeter looked promising... small and standalone. Plus, open source so that I could make tweaks if needed. However, I see that the last u

Re: Join in solr to get data from two cores

2014-05-14 Thread Alvaro Cabrerizo
There are two previous threads in the list that i think can help you, http://mail-archives.apache.org/mod_mbox/lucene-solr-user/201405.mbox/%3c1398929537117-4134045.p...@n3.nabble.com%3E http://mail-archives.apache.org/mod_mbox/lucene-solr-user/201404.mbox/%3c20140403114242.horde.epx2xawezs3mvmt

Re: URLDataSource : indexing from other Solr servers

2014-05-14 Thread Gora Mohanty
On 12 May 2014 21:41, helder.sepulveda wrote: > > I been trying to index data from other solr servers but the import always > shows: > Indexing completed. Added/Updated: 0 documents. Deleted 0 documents. > Requests: 1, Fetched: 0, Skipped: 0, Processed > > My data config looks like this: Nothing

RE: Solr Multiword Search

2014-05-14 Thread Vanitha
Hi Sandeep, I have same requirement as well. Finally do you get solution for the same? If yes, please post the schema.xml and solrconfig.xml configs here -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Multiword-Search-tp4053038p4135073.html Sent from the Solr - User m

RE: Inconsistent response from Cloud Query

2014-05-14 Thread Cool Techi
We have noticed Solr returns in-consistent results during replica recovery and not all replicas are in the same state, so when your query goes to a replica which might be recovering or still copying the index then the counts may differ. regards,Ayush > Date: Tue, 6 May 2014 16:14:36 +0530 > Subj

Re: KeywordTokenizerFactory splits the string for the exclamation mark

2014-05-14 Thread nativecoder
Also could you please tell me the difference between searching a text in the following ways q=Exact_Word:"samplestring" q=samplestring&qf=Exact_Word I am trying to understand how enclosing the full term in "" is resolving this problem ? What does it tell to solr ? Other than the exclamation ma