Re: Query Relevancy tuning...

2013-11-10 Thread Upayavira
Some pointers for your research: Look at the ExternalFileField, which will get you your boosting if fields match specific values [1]. You can get 2 or 3 values per domain by doing field collapsing. By default, the scoring that Solr uses includes a 'co-ordination factor' which adjusts the score

Re: HierarchicalFaceting for Ecommerce Categories

2013-11-10 Thread Upayavira
On Sat, Nov 9, 2013, at 06:18 PM, Nea wrote: Thanks for ur reply. I got it. My old implementation on solr 3.1 was multivalued string field with 1_catL1, 2_catL2, and doing it with prefix and tagging. I thought at 4.5.1, can be a nice way doing it :( The PathHierarchyTokenizerFactory can

Re: count links pointing to id

2013-11-10 Thread Koji Sekiguchi
(13/11/10 3:43), Andreas Owen wrote: I have a multivalue field with links pointing to ids of solrdocuments. I would like calculate how many links are pointing to each document und put that number into the field links2me. How can I do this, I would prefer to do it with a query and the updater so

Re: Error instantiating a Custom Filter in Solr

2013-11-10 Thread Dileepa Jayakody
Thanks guys, I got the problem resolved. It was a constructor API mismatch between the code I wrote and the library I used. I used the latest lucene-common 4.5.0 with my sample code and the startup issue was resolved. related stackoverflow discussion :

Re: SolrCloud never fully recovers after slow disks

2013-11-10 Thread Mark Miller
Which version of solr are you using? Regardless of your env, this is a fail safe that you should not hit. - Mark On Nov 5, 2013, at 8:33 AM, Henrik Ossipoff Hansen h...@entertainment-trading.com wrote: I previously made a post on this, but have since narrowed down the issue and am now

Re: SolrCloud keeps repeating exception 'SolrCoreState already closed'

2013-11-10 Thread Mark Miller
Can you isolate any exceptions that happened just before that exception. started repeating? - Mark On Nov 7, 2013, at 9:09 AM, Eric Bus eric@websight.nl wrote: Hi, I'm having a problem with one of my shards. Since yesterday, SOLR keeps repeating the same exception over and over for

RE: SolrCloud never fully recovers after slow disks

2013-11-10 Thread Henrik Ossipoff Hansen
Solr version is 4.5.0. I have done some tweaking. Doubling my Zookeeper timeout values in zoo.cfg and the Zookeeper timeout in solr.xml seemed to somewhat minimize the problem, but it still did occur. I next stopped all larger batch indexing in the period where the issues happened, which also

Setting up Multiple Cores on Solr 4.5.0

2013-11-10 Thread Reyes, Mark
Any good/recent documentation that I can reference on setting up multiple cores in Solr 4.5.0? Thanks all, Mark IMPORTANT NOTICE: This e-mail message is intended to be received only by persons entitled to receive the confidential information it may contain. E-mail messages sent from

Re: Setting up Multiple Cores on Solr 4.5.0

2013-11-10 Thread Alexandre Rafalovitch
Any specific aspect of it? Load balancing, fail over, something else? The basic multi-core/multi-collection setup is primitive, just list them all in solr.xml. Or don't do that and use latest auto-discovery mechanism. So, some details here will help to get a better answer. Regards, Alex.

Re: fq efficiency

2013-11-10 Thread Joel Bernstein
Hi Scott, When intersecting the two sets, Lucene has the advantage that both sets are sorted. So Lucene can perform a merge join on the two sets in a single pass. This turns out to be a very fast operation. Where you'll run into performance issues is if there are a huge number of documents that

Re: Help to figure out why query does not match

2013-11-10 Thread Furkan KAMACI
Hi; I've made a patch for adding preserveOriginal capability to EdgeNGramFilterFactory. You can test it from here: https://issues.apache.org/jira/browse/SOLR-5152 Also I've added a comment about your problem here:

Unit of dimension for solr field

2013-11-10 Thread eakarsu
I would like to have a SOLR field that has multiple unit of dimension. Suppose we store the memory value of a computer in solr field. That can have value 256 MB, 512 MB, or 1 GB where we use MB and GB units. Same case is for hard drive sizes : 256 MB,50GB or 3TB where we use MB,GB and TB units.

Solr 3.5 and 4.4 - ParsedQuery is different for q=*

2013-11-10 Thread subacini Arunkumar
Hi Team, We are upgrading from Solr 3.5 to Solr 4.4. The response from 3.5 and 4.4 are different. I have attached request and response [highlighted the major difference in RED] Can you please let me know how to change parsedQuery from *MatchAllDocsQuery to text.* *Also, in solr 4.4 if fq or

Re: character encoding issue...

2013-11-10 Thread Michael Sokolov
Don't feel bad: character encoding problems are often said to be among the hardest in software engineering. There's no simple answer to problems like this since as Erick said, any tool in your chain could be the culprit. I doubt anyone on this list will be able to guess the answer since the

Re: Unit of dimension for solr field

2013-11-10 Thread Upayavira
It really depends upon how clever you want to be. If I were to do it, I would push two versions into Solr, one with MB or GB in, for display, and another, resolved to a number, for faceting and querying. I.e do the work outside Solr. If you did want to be clever, you could use a KeywordTokenizer