Using ExternalFileField on SolrCloud

2014-04-21 Thread Varun Gupta
Hi, I am trying to use ExternalFileField on Solr 4.6 running on SolrCloud for the purpose of changing the document score based on a frequently changed field. According to the documentation, the external file needs to be present in the "data" folder of the collection. I am confused over here on wh

Re: maximum number of shards per SolrCloud

2014-04-21 Thread Erick Erickson
You're going to run into resource issues long before you hit 2G docs/node I suspect. I've seen from 50M t0 300M docs on a single node. Fortunately you may well be near the upper end of that since you're dealing with log files. Bottom line here is that you're off into largely uncharted territory wh

maximum number of shards per SolrCloud

2014-04-21 Thread Zhifeng Wang
Hi, We are facing a high incoming rate of usually small documents (logs). The incoming rate is initially assumed at 2K/sec but could reach as high as 20K/sec. So a year's worth of data could reach 60G (assuming the rate at 2K/sec) searchable documents. Since a single shard can contain no more tha

Join solr multi core select field mixed other core

2014-04-21 Thread hungctk33
Hi . all. I has table Product (id, name, cat_id) Category (id, name); Select pro.id, pro.name, cat.name from Product as pro inner join Category as cat On cat.id = pro.cat_id Now. In solr join core similar above http://localhost:8081/solr/product /select?q={!join+from=cat_id+to= id+fromIndex=cat

Re: When not to use NRTCachingDirectory and what to use instead.

2014-04-21 Thread Tom Burton-West
Hi Ken, Given the comments which seemed to describe using NRT for the opposite of our use case, I just set our Solr 4 to use the solr.MMapDirectoryFactory. Didn't bother to test whether NRT would be better for our use case, mostly because it didn't sound like there was an advantage and I've bee

Spurious spellcheck results

2014-04-21 Thread Ed Smiley
Entered https://issues.apache.org/jira/browse/SOLR-5995. -- Ed Smiley, Senior Software Architect, eBooks ProQuest | 161 E Evelyn Ave| Mountain View, CA 94041 | USA | +1 650 475 8700 extension 3772 ed.smi...@proquest.com www.proquest.com | www.ebrary.com

Solr Full Indexing issue (solr-user@lucene.apache.org)

2014-04-21 Thread Candygram Mongo (Google Drive)
I've shared an item with you: Solr Full Indexing issue https://drive.google.com/folderview?id=0B7UpFqsS5lSjWEhxRE1NN2tMNTQ&usp=sharing&invite=CJXE8q4O It's not an attachment -- it's stored online. To open this item, just click the link above.

Re: While Indexing in Solr getting "SolrException: Invalid Date String:'12/20/13'

2014-04-21 Thread Jack Krupansky
It would be best to properly format the date before sending it to Solr, but you can use an update request processor to transfirm the date, such as: ParseDateFieldUpdateProcessorFactory. See: http://lucene.apache.org/solr/4_7_2/solr-core/org/apache/solr/update/processor/ParseDateFieldUpdateProce

While Indexing in Solr getting "SolrException: Invalid Date String:'12/20/13'

2014-04-21 Thread Niranjan
Hi All, I am trying to index a metatag "topic_date" of format "mm/dd/yy". But I am getting an exception of Invalid date string. I tried to google it but I could see that in solr the date time format is -MM-DDThh:mm:ssZ. I tried configuring the time format in schema as below: But getting

Re: SolrCloud: Preference search request

2014-04-21 Thread Shawn Heisey
On 4/21/2014 7:21 AM, ku3ia wrote: > Hi all. I'd reviewed > https://cwiki.apache.org/confluence/display/solr/Distributed+Requests > > but have a question. Does SolrCloud support preference search requests, like > Elasticsearch engine? > http://www.elasticsearch.org/guide/en/elasticsearch/reference

SolrCloud: Preference search request

2014-04-21 Thread ku3ia
Hi all. I'd reviewed https://cwiki.apache.org/confluence/display/solr/Distributed+Requests but have a question. Does SolrCloud support preference search requests, like Elasticsearch engine? http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-preference.html I'm in

Re: Having trouble with German compound words in Solr 4.7

2014-04-21 Thread Alistair
Hi Siegfried, the debug shows that the separated keywords get OR'd together so a match to either keyword appears in the results. So if I am searching for: *keywords:schwarzkleid* this will get transformed to *keywords:schwarz keywords:kleid *which is equivalent to *keywords:schwarz OR keywords:kl

Re: 'qt' parameter is not working in search call of SolrPhpClient

2014-04-21 Thread Shawn Heisey
On 4/20/2014 10:50 PM, harshrossi wrote: > Yes I know but I am using SolrPhpClient API where by default the search() > function access the '/select' request handler. So I used the 'qt' parameter > to access '/select_test' as given in this link: > > Non-Default Request Handler >