Multivalued doc value field

2022-03-10 Thread Sergio García Maroto
Hi, I am getting an error while doing a copy from a field to another but the second field is a docValues which I am using PersonIDSDV to run StreamingExpressions. As I can see in this page I should be able use multivalued fields with docValues. https://solr.apache.org/guide/8_1/docvalues.html An

Re: Multivalued doc value field

2022-03-10 Thread Shawn Heisey
On 3/10/22 08:03, Sergio García Maroto wrote: *Error:* Multiple values encountered for non multiValued copy field PersonIDSDV *Schema* Best guess:  You changed the schema file so it's multiValued, but did not reload the core. Or maybe it's SolrCloud, and you changed the schema file on

Question regarding the MoreLikeThis features

2022-03-10 Thread Marco D'Ambra
Hi all, This is my first time writing to this mailing list and I would like to thank you in advance for your attention. I am writing because I am having problems using the "MoreLikeThis" features. I am working in a Solr cluster (version 8.11.1) consisting of multiple nodes, each of which contains

Re: Prometheus solr 7.2.1

2022-03-10 Thread Houston Putman
Hello Dan, I would recommend using a later version of the Prometheus Exporter, as early versions had some pretty nasty bugs. I would try using 8.x, and it should be pretty apparent if it's working or not from the start. At the very least, use 7.7.3. As for deployment, you definitely want to have

Re: Question regarding the MoreLikeThis features

2022-03-10 Thread Tim Casey
Marco, Finding 'similar' documents will end up being weighted by document length. I would recommend, at the point of indexing, also indexing an ordered token set of the first 256, 1024 up to around 5k tokens (depending on document lengths). What this does is allow a vector to vector normalized co

copyField dest is not an explicit field and doesn't match a dynamic field

2022-03-10 Thread dmitri maziuk
Hi all, trying to POST to .../update/json/docs, payload includes "DISPLAY_MAPPING" : "foo", and the result is a 500 with ``` null:org.apache.solr.common.SolrException: copyField dest :'doc.DISPLAY_MAPPING_str' is not an explicit field and doesn't match a dynamicField. ``` Which is fine as f

copyField dest is not an explicit field and doesn't match a dynamic field

2022-03-10 Thread dmitri maziuk
PS Solr 8.7.0 w/ manually updated JARs for the recent vuln. Dima

Re: copyField dest is not an explicit field and doesn't match a dynamic field

2022-03-10 Thread Shawn Heisey
On 3/10/2022 4:24 PM, dmitri maziuk wrote: Which is fine as far as that goes: the only place this can come from is AddSchemaFields w/ the default mapping as: ``` java.lang.String text_general   256 ``` I am not very familiar with the update processor that adds fields.  But if I understand t

Re: copyField dest is not an explicit field and doesn't match a dynamic field

2022-03-10 Thread dmitri maziuk
On 2022-03-10 6:07 PM, Shawn Heisey wrote: I am not very familiar with the update processor that adds fields.  But if I understand that correctly, it means that for any field matching that specification, it's going to do a copyField ... Thanks, I get that. The comment (inherited from 6.x da

Solr Collections Join

2022-03-10 Thread Venkateswarlu Bommineni
Hello All, I have a requirement to join 2 collections and get fields from both the collections. I have got the join query as below, when i run below join query I am getting the fields of Collection1 only. is There any way I can get the fields from collection2 as well ? Running below query on Co

Re: Solr Collections Join

2022-03-10 Thread Srijan
Is this a SolrCloud setup? On Thu, Mar 10, 2022, 22:25 Venkateswarlu Bommineni wrote: > Hello All, > > I have a requirement to join 2 collections and get fields from both the > collections. > > I have got the join query as below, when i run below join query I am > getting the fields of Collectio