Fwd: Standard highlighting doesn't work for Block Join

2016-03-01 Thread michael solomon
Hi, I have solr 5.4.1 and I'm trying to use Block Join Query Parser for search in children and return the parent. I want to apply highlight on children but it's return empty. My q parameter: "q={!parent which="is_parent:true"} normal_text:(account)" highlight parameters: "hl=true&hl.fl=normal_text&

understand scoring

2016-03-01 Thread michael solomon
Hi all, I'm struggling to understand Solr scoring but can understand why I get those results: [image: Inline image 1] (If don't see pic: https://mail.google.com/mail/u/0/?ui=2&ik=f570232aa3&view=fimg&th=153332681af9c93f&attid=0.1&disp=emb&realattid=ii_153332681af9c93f&attbid=ANGjdJ-af_Q3b_h02w_TyMU

Re: understand scoring

2016-03-02 Thread michael solomon
Thanks you, @Doug Turnbull I tried http://splainer.io but it's not for my query(not explain for the docs..). here the picture again... https://drive.google.com/file/d/0B-7dnH4rlntJc2ZWdmxMS3RDMGc/view?usp=sharing On Tue, Mar 1, 2016 at 10:06 PM, Doug Turnbull < dturnb...@opensourceconnections.com>

Standard highlighting doesn't work for Block Join

2016-03-02 Thread michael solomon
IT WAS MY FIRST POST IN MAILING LIST SO NOT SURE IF YOU GET IT SO I'M SEND IT AGAIN Hi, I have solr 5.4.1 and I'm trying to use Block Join Query Parser for search in children and return the parent. I want to apply highlight on children but it's return empty. My q parameter: "q={!parent which="is_p

Re: understand scoring

2016-03-02 Thread michael solomon
Michael, > Can you please run query with debug and share title field configuration. > > Thanks, > Emir > > -- > Monitoring * Alerting * Anomaly Detection * Centralized Log Management > Solr & Elasticsearch Support * http://sematext.com/ > > > > > On 02.03.

Query solrcloud questions

2016-03-02 Thread michael solomon
Hi, I Installed 3 instances of SolrCloud 5.4.1. I'm doing a little search engine of websites and I'm store their info as Nested Documents(one document for the website general information and it children is the pages inside the website). So when I'm querying this collection I'm using a BlockJoin par

Very slow updates

2016-03-10 Thread michael solomon
Hi, I have a collection with one shard in solrcloud (for development before scaling) and when I'm trying to update new documents it's take about 20 sec for 12mb of data. What wrong with my config? VM RAM - 28gb JVM-Memory - 10gb What else can I do? Thanks, Michael

Re: Very slow updates

2016-03-11 Thread michael solomon
wrote: > This really doesn't have much information to go on. > > Have you reviewed: http://wiki.apache.org/lucene-java/ImproveIndexingSpeed > ? > > What is "slow"? How are you updating? Are you batching updates? Are > you committing often? > > Details m

return and highlight the most relevant child with BlockJoinQuery

2016-03-14 Thread michael solomon
Hi, how can I *highlight* and *return* the most relevant child with BlockJoinQuery. for this: > {!parent which="is_parent:*" score=max}(title:(terms) I expect to get: . . . docs:[ { doc parent _childDocuments_:{the most relevant child} } { doc parent2 _childDocuments_:{the most rel

Re: return and highlight the most relevant child with BlockJoinQuery

2016-03-15 Thread michael solomon
x27;t comment, I only saw that there is some > highlighting case for {!parent} queries. Sorry. > > On Mon, Mar 14, 2016 at 6:13 PM, michael solomon > wrote: > > > Hi, > > how can I *highlight* and *return* the most relevant child with > > BlockJoinQuery. > > for

Re: No live SolrServers available to handle this request

2016-03-19 Thread michael solomon
What query do you try? On Thu, Mar 17, 2016 at 12:22 PM, Anil wrote: > HI, > > We are using solrcloud with zookeeper and each collection has 5 shareds and > 2 replicas. > we are seeing "org.apache.solr.client.solrj.SolrServerException: No live > SolrServers available to handle this request". i d

score mixing

2016-03-27 Thread michael solomon
Hi, I have nested documents and use in BlockJoinQueryParser. In parent documents I have "rank" field that give an arbitrary score for each parent. It's possible to mix the original scoring with mine? i.e: SolrScore+rank=finel score or(proportional scoring..)SolrScore/MaxScore + rank/MaxRank = finel

most popular collate spellcheck

2016-03-31 Thread michael solomon
Hi, It's possible to return the most popular collate? i.e: spellcheck.q = prditive analytiycs spellcheck.maxCollations = 5 spellcheck.count=0 response: false positive analytic positive analytics predictive analytics primitive analytics punitive analytic I want that

index time boost nested documents JSON format

2016-03-31 Thread michael solomon
Hi, how can I index time boost nested documents JSON format?

Re: most popular collate spellcheck

2016-04-02 Thread michael solomon
Thanks, and what we can do about that? On Apr 2, 2016 5:28 PM, "Reth RM" wrote: > Afaik, such feature doesn't exist currently, but looks like nice to have. > > > > > On Thu, Mar 31, 2016 at 8:33 PM, michael solomon > wrote: > > > Hi, > > It

spellcheck return wrong collation

2016-04-03 Thread michael solomon
Hi, image: http://s24.postimg.org/u457bhzr9/Untitled.png why the suggestion return "analytics" (great!) but the collation take "analtics"? Thanks, Michael

Re: most popular collate spellcheck

2016-04-03 Thread michael solomon
done :) https://issues.apache.org/jira/browse/SOLR-8934 On Sun, Apr 3, 2016 at 2:08 PM, Reth RM wrote: > May be open a jira under improvement. > https://issues.apache.org/jira/login.jsp? > > > On Sat, Apr 2, 2016 at 11:30 PM, michael solomon > wrote: > > > Thanks, an

Expand or ChildDocTransformerFactory

2016-04-07 Thread michael solomon
Hi, I'm using in JoinBlock query - {!parent which="is_parent:true"} I need to return the most relevant child for each parent. I saw in Google there two options for this: 1. Expand 2. ChildDocTransformerFactory what the difference between them? which one I need to use? Thanks a lot, Michael

boost parent fields BlockJoinQuery

2016-04-11 Thread michael solomon
Hi, I'm using in BlockJoin Parser Query for return the parent of the relevant child i.e: {!parent which="is_parent:true" score=max}(child_field:bla) It's possible to boost the parent? something like: {!parent which="is_parent:true" score=max}(child_field:bla) parent_field:"bla bla"^10 Thanks, Mic

Re: boost parent fields BlockJoinQuery

2016-04-12 Thread michael solomon
hich="is_parent:true" > score=max}(child_field:bla) > or > parent_field:"bla bla"^10 +{!parent which="is_parent:true" > score=max}(child_field:bla) > > there should be no spaces in child clause, otherwise extract it to param > and refrer via v=$param

Re: boost parent fields BlockJoinQuery

2016-04-13 Thread michael solomon
ery and and omit the > closing bracket. > > On Tue, Apr 12, 2016 at 3:30 PM, michael solomon > wrote: > > > Thanks, > > when I'm trying: > > city:"walla walla"^10 {!parent which="is_parent:true" > > score=max}(normal_text:walla) > >

highlight don't work if df not specified

2016-05-22 Thread michael solomon
Hi, I'm I query multiple fields in solr: q=normal_text:"bla bla"&title:"bla bla" I turn on the highlighting, but it doesn't work even when I fill hl.fl. it work when I fill df(default field) parameter, but then it's highlights only one field. What the problem? Thanks, michael

Re: highlight don't work if df not specified

2016-05-22 Thread michael solomon
Thanks Ahmet, It was mistake in the question, sorry, in the quey I wrote it properly. On Sun, May 22, 2016 at 5:06 PM, Ahmet Arslan wrote: > Hi, > > q=normal_text:"bla bla"&title:"bla bla" > > should be > q=+normal_text:"bla bla" +title:"

Re: highlight don't work if df not specified

2016-05-22 Thread michael solomon
On Sun, May 22, 2016 at 5:18 PM, Ahmet Arslan wrote: > Hi, > > Weird, are your fields stored? > > > > On Sunday, May 22, 2016 5:14 PM, michael solomon > wrote: > Thanks Ahmet, > It was mistake in the question, sorry, in the quey I wrote it properly. > &g

Re: highlight don't work if df not specified

2016-05-23 Thread michael solomon
che.solr.common.SolrException"], "msg":"undefined field text", "code":400}} On Sun, May 22, 2016 at 5:34 PM, Ahmet Arslan wrote: > Hi, > > What happens when you increase hl.maxAnalyzedChars? > > OR > > hl.q=blah blah&