Re: MLT weird behaviour in Solrcloud

2014-07-01 Thread Pramod Negi
why there is no comma(,) in between textlanguage in
title,textlanguage,caaskey


On Wed, Jul 2, 2014 at 12:42 AM, Shamik Bandopadhyay 
wrote:

> Hi,
>
>   I'm trying to use "mlt" request handler in a Solrcloud cluster.
> Apparently, its showing some weird behavior. I'm getting response randomly,
> it's able to return results randomly for the same query. I'm using Solrj
> client which in turn communicates the cluster using zookeeper ensemble.
> Here's my mlt request handler.
>
> 
> 
> 
> true
> explicit
> velocity
> browse
> text/html;charset=UTF-8
> layout
> mlt
> Project Sunshine - Mlt
> title,text,language,caaskey
> 2
> 1
> 3
> 1000
> 50
> 5000
> 4
> true
> title,textlanguage,caaskey
> 
> 
> true
> 
> Source2:("TestSource" OR "help"
> 
> /mlt
> 
> 
>
> Here's a sample query :
>
> http://stage-int***.com/solr/mlt?fq=language:"english"&fq={!collapse
>
> field=dedup}&q=caaskey:caas/documentation/files/GUID-EDC69C3&shards.qt=/mlt&shard.keys=enu/8!&wt=xml
>
> I've tried removing collapsing and composite key from the query, but it
> didn't make any difference. I've 2 shards with a replica each. Weird part
> is, same shard/replica which returns result for a given request, behaves
> differently next time, i.e. doesn't return data at all. If I use any other
> request handler, I'm getting response back for the given query. So,
> something is not right with the "mlt" request handler.
>
> Is this a known issue with solrcloud ? Any pointer will be appreciated.
>
> Thanks,
> Shamik
>


stored=true vs stored=false, in terms of storage

2014-03-26 Thread Pramod Negi
Hi,

I am using Solr and I have one doubt.

If any field has stored=false, does it mean that this fields is stored in
disk and not in main memory. and this will be loaded whenever asked.


The scenario I would like to handle this, In my case there are lots of
information which I need to show when debugQuery=true, so i can take the
latency hit on debugQuery=true.

Can i save all the information in a field with "indexed=false" and
"stored=true".

And how do normally DebugInformation is saved


Regards,
Pramod Negi