Audit logging

2021-06-18 Thread Dwane Hall
Hey Solr community, I'm just enquiring if anyone has tried using the audit logging capabilities in Solr 8? https://solr.apache.org/guide/8_8/audit-logging.html#audit-logging. Historically on the 7.x beaches of Solr I've had to capture request details by reducing the log level of the request han

Re: More Like This Request Handler doesn't return score

2021-06-18 Thread Alessandro Benedetti
Hi Robert, what do you need the score for? Effectively the score is meaningful just within a query and a result set in a specific index snapshot i.e. just useful for debugging purposes I have been working extensively with this feature, I would recommend using the MLT query parser, both for debuggi

Re: CVE-2021-27905 Apache Solr ReplicationHandler/SSRF vulnerability

2021-06-18 Thread matthew sporleder
I believe these are all related to exposed api/admin endpoints so your network is probably protecting you but poor input sanitation could expose you, of course- like /myappsearch?search=../../replication?evilpayload (classic sql-style injection style) If you have, literally, removed the handlers f

CVE-2021-27905 Apache Solr ReplicationHandler/SSRF vulnerability

2021-06-18 Thread Anchal Sharma2
Hi All, We are currently using Solr Cloud(solr version 8.6.3) in our application .Since it doesn't use master-slave solr approach we do not have replication handler set up (to replicate master to slave)set up on any of our solr nodes. Could some one please confirm ,if following vulnerability is

RE: Nested documents mixup with block join query parent mask

2021-06-18 Thread Manoj Mokashi
A similar problem is seen with the parents parser, children belonging to other nodes sometimes appear as children In this case, using the union of parent types does not seem to work either -Original Message- From: Manoj Mokashi Sent: Friday, June 18, 2021 1:09 PM To: users@solr.apache.or

adding new dynamic field via api changes fieldType and result in degraded performance

2021-06-18 Thread Bernd Wahlen
some days ago i added a new dynamic field via api: curl -X POST -H 'Content-type:application/json' --data-binary '{ "add-dynamic-field": { "name": "*_lrs", "type": "location_rpt", "indexed": true, "stored": true, "omitNorms":true, "multiValued": true } }' http://localhost:8983/api/cores/profile

London Information Retrieval Meetup (ONLINE) - June 2021

2021-06-18 Thread Lisa Biella
Hi folks, At Sease, we are pleased to announce the ninth *London Information Retrieval Meetup (ONLINE)*, a free evening meetup aimed to Information Retrieval passionates and professionals who are curious to explore and discuss the latest trends in the field. *29th JUNE 2021* - 06:15 PM (GMT+1) T

More Like This Request Handler doesn't return score

2021-06-18 Thread Robert Wenig
I am using Solr to search for "more like this" content. The field which mlt should operate on has normally the length of a sentence. So I am actually searching for mlt sentences. I have configured a mlt request handler in the solrconfig.xml content 0 0 The corresponding sch

nested edismax query with boost by json request api

2021-06-18 Thread Szűcs Roland
Hi Solr community, I use solr 8.8.2 and the request library of python. To make simple query in json request api format, I get what I expect. This is the code: json={ "query": { "edismax": { "qf": "name^5 all_text^3 description", "query": "food" } } } requests.post(COLLECTI

Nested documents mixup with block join query parent mask

2021-06-18 Thread Manoj Mokashi
Hi, I am using solr 8.6.2 I have the following doc types marked by a type attribute : TR -> has child doc -> IN PB -> has child doc -> AU So the type IN docs exist only under TR and type AU only under PB But when I run a query like type:IN AND {!child of='type:PB'}type:PB, I get a subset of IN