Re: Mismatch between replication API & index.properties

2019-07-31 Thread jai dutt
It's correct behaviour , Solr put replica index file in this format only and you can find latest index pointing in index.properties file. Usually afer successful full replication Solr remove old timestamp dir. On Wed, 31 Jul, 2019, 8:02 PM Aman Tandon, wrote: > Hi, > > We are having a situation

Re: Large Filter Query

2019-06-26 Thread jai dutt
lts, also for URI error, we can go with the POST approach, > and what if the data is not sharded. > > Regards, > Lucky Sharma > > On Thu, Jun 27, 2019 at 12:28 AM jai dutt > wrote: > > > > 1. No Solr is not for id search. rdms a better option. > > 2. Yes c

Re: Large Filter Query

2019-06-26 Thread jai dutt
1. No Solr is not for id search. rdms a better option. 2. Yes correct it going to impact query performance. And you may got large uri error. 3 ya you can pass ids internally by writing any custom parser.or divide data into different shard. On Thu, 27 Jun, 2019, 12:01 AM Lucky Sharma,

Re: Streaming expression function which can give parent document along with its child documents ?

2019-06-10 Thread Jai Jamba
Can anyone help me in this ? -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Streaming expression function which can give parent document along with its child documents ?

2019-06-06 Thread Jai Jamba
Hi, I was wondering if there is any way in streaming expression which can return parent document along with its child documents just like we have child document transformer, i.e. ** [child limit=-1]* which returns child document as well of the parent document - Jai -- Sent from: http://lucene

Re: Group by and filtering on child documents.

2019-06-05 Thread Jai Jamba
Can you help me with the subquery way, i tried that long back but it was giving me some exception (can't remember that). -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Group by and filtering on child documents.

2019-06-04 Thread Jai Jamba
Hello Mikhail, I am sorry, I forgot to include below in my main query json (*"fields": "* [child limit=-1]"*) . I am extracting all the fields along with its nested docs. So I want as a part of results and not part of facet. I would expect out of the docs that i listed, it should return only

Group by and filtering on child documents.

2019-06-04 Thread Jai Jamba
": "sku", "color": "black", "size": "L", "price" : 45 }, { "id": "33", "scope": "sku", "color": "blue", "size": "L", "price" : 35 } ] } ] *multi select facet query:* { "query": "{!parent tag=top filters=$child.fq which=scope:product v=$childquery}", "params": { "childquery": "scope:sku", "child.fq": ["{!tag=color}color:black", "{!tag=size}size:L"] }, "filter": "{!tag=top}category:clothes", "facet": { "colors": { "domain": { "excludeTags": "top", "filter": ["{!filters param=$child.fq excludeTags=color v=$childquery}", "{!child of=scope:product filters=$fq}scope:product"] }, "type": "terms", "field": "color", "limit": -1, "facet": { "productsCount": "uniqueBlock(_root_)" } }, "sizes": { "domain": { "excludeTags": "top", "filter": ["{!filters param=$child.fq excludeTags=size v=$childquery}", "{!child of=scope:product filters=$fq}scope:product"] }, "type": "terms", "field": "size", "limit": -1, "facet": { "productsCount": "uniqueBlock(_root_)" } } } } - Jai.

Json facet 6.1 Filter based on command query's output

2016-11-15 Thread Jai
Hi is it possible to filter results based on out put of command query in json facet solr6.1. For example in below query i am converting duration_seconds to average time in minutes. i want to return results where time in minute is greator than 30 minutes? json.facet:{files:{type:terms,

slow reindexing

2013-10-03 Thread Jai
me where i can improve indexing speed. setup: solr 4.2 intel xenon machine (quard core) 8GB RAM and SSD harddisk. thanks and regards jai

Solr 4.2 update/extract adding unknown field, can we change field type from string to text

2013-09-03 Thread Jai
like indexed/stored/multivalued? PS am using solr4.2. Thanks alot. Jai

Solr 4.2 Regular expression, returning only matched substring

2013-08-27 Thread Jai
, is there any way to return only the matched email from the indexed sentence, so that i can do facet on it. will really appreciate any help. thanks and regards jai