Re: UnifiedHighlighter returns an error when setting hl.maxAnalyzedChars=-1

2019-01-06 Thread Yasufumi Mizoguchi
Hi, I opened a JIRA about this. https://issues.apache.org/jira/browse/SOLR-13121 Thanks, Yasufumi. 2018年12月28日(金) 13:39 Yasufumi Mizoguchi : > Hi, > > I faced UnifiedHighlighter error when setting hl.maxAnalyzedChars=-1 in > Solr 7.6. > Here is the procedure for reproducing. > > $ bin/solr -e

Re: Solr relevancy score different on replicated nodes

2019-01-06 Thread Ashish Bisht
Hi Erick, Thank you for the details,but doesn't look like a time difference in autocommit caused this issue.As I said if I do retrieve all query/keyword query on both server,they returned correct number of docs,its just relevancy score is taking diff values. I waited for brief period,still disc

Solr Replication

2019-01-06 Thread Mannar mannan
Hi All, I would like to configure master slave between two solr cloud clusters (for failover). Below is the scenario Solr version : 7.0 Cluster 1: 3 zookeeper instances : zk1, zk2, zk3 2 solr instances : solr1, solr2 Cluster 2: 1 zookeeper instance : bkpzk1, 1 solr instances : bkpsolr1, bkpso

How to have the same SOLR cores for both 8983 and 8984 ports

2019-01-06 Thread Muniraj M
Hi, I am using Apache SOLR 6.6.5 as my search engine running on port 8983. I just wanted to enable SSL for solr and followed this guide to make it work under 8984 port with SSL. Here my problem is that I am not able to see any cores on

Web Server HTTP Header Internal IP Disclosure SOLR port

2019-01-06 Thread Muniraj M
Hi, I am using Apache SOLR 6.6.5 as my search engine and when we do security scan on our server, we got the below response *When processing the following request : GET / HTTP/1.0 this web server leaks the following private IP address : X.X.X.X as found in the following collection of HTTP headers

Re: Debugging Solr Search results & Issues with Distributed IDF

2019-01-06 Thread Lavanya Thirumalaisami
Thank you for the inputs Doug  and Charlie.  On Wednesday, 2 January 2019, 11:39:13 pm AEDT, Doug Turnbull wrote: On (2) these are BM25 parameters. There are several articles that discuss BM25 in depth https://opensourceconnections.com/blog/2015/10/16/bm25-the-next-generation-of-lucene

Re: Is it possible to force solr show all facet values for the field with an enum type?

2019-01-06 Thread Erik Hatcher
How about &facet.query=-field:[* TO *] as a way to see a count of docs that don’t have field? Erik > On Jan 5, 2019, at 04:45, Arvydas Silanskas > wrote: > > Hello, > I have an enum solr fieldtype. When I do a facet search, I want that all > the enum values appear in the facet -- and set

Re: Is it possible to force solr show all facet values for the field with an enum type?

2019-01-06 Thread Arvydas Silanskas
I haven't checked if it works, but even if it did, that would kinda defeat the purpose -- namely not repeating enum values in multiple places, and have them all contained in the single spot (enumConfig.xml) 2019-01-06, sk, 11:43 David Santamauro rašė: > Seeing that the field is an enumeration, c

Re: Is it possible to force solr show all facet values for the field with an enum type?

2019-01-06 Thread Arvydas Silanskas
Feared as much, but now at least I know for sure. Thank you. 2019-01-05, št, 22:19 Mikhail Khludnev rašė: > Hello, > On Sat, Jan 5, 2019 at 12:53 PM Arvydas Silanskas < > nma.arvydas.silans...@gmail.com> wrote: > > > But can I make it to also > > return the values that literally none of the docu

Re: Is it possible to force solr show all facet values for the field with an enum type?

2019-01-06 Thread David Santamauro
Seeing that the field is an enumeration, couldn't you just use a set of facet.query(s)? ?q=*:* &fq=user_s:Bar &facet=true &facet.query=enumfield:A &facet.query=enumfield:B &facet.mincount=0 // On 1/5/19, 3:01 PM, "Arvydas Silanskas" wrote: Thanks for your reply. No,