Re: Solr returns confusing error message regarding copy-field

2025-04-02 Thread ufuk yılmaz
Copy field is just a directive that tells data should be copied from source field A to target field B, so “copy field” itself is not a field (think “copy” as a verb) The target field and source field are regular fields and can take all kinds of attributes like indexed=true or docValues=true So

Re: Solr returns confusing error message regarding copy-field

2025-04-02 Thread Alessandro Benedetti
What do you mean with " IMHO, the error message asks me to add indexed=true uninvertible=true or docValues=true to title_s_lower, which is impossible, since it is a copy-field.". Copy-fields are like any other field, just the source for their values comes from source fields. You have full control

Re: How to connect to Node of a Solr-Cloud-Cluster

2025-04-02 Thread ufuk yılmaz
Just pointing out the obvious, any node can answer to any query by relaying it to the node that actually hosts a replica of a shard of the collection(s) being queried. It’s just an extra hop if the asked node doesn’t hold a replica -Ufuk — > On Apr 2, 2025, at 20:59, Jan Høydahl wrote: > >

AW: Solr returns confusing error message regarding copy-field

2025-04-02 Thread Ehrenleitner Robert Harald
I mean this: $ curl -o - -H 'Content-Type: application/json' --user "$solrCredentials" --data '{"add-copy-field":{"source":"title","dest":"title_str","indexed":true}}' "http://127.0.0.1:8983/solr/myschema/schema"; { "responseHeader":{ "status":400, "QTime":0 }, "error":{ "met

Re: Automatic upgrade of Solr indexes over multiple versions

2025-04-02 Thread Luke Kot-Zaniewski (BLOOMBERG/ 919 3RD A)
> We maintain a cluster of standalone Solr nodes and don't use SolrCloud. Ok, I think this explains a lot but also raises more questions.. I just realized when I wrote this: > I'm also curious if this solution relies on a solr cloud on version n-1 > sending a distributed update request to a solr

Solr returns confusing error message regarding copy-field

2025-04-02 Thread Ehrenleitner Robert Harald
Hi all, when querying my index and trying to sort it by title_s_lower, it responds with an HTTP error 400: { "error":{ "metadata":["error-class","org.apache.solr.common.SolrException","root-error-class","org.apache.solr.common.SolrException"], "msg":"can not sort on a field w/o docVal

How to connect to Node of a Solr-Cloud-Cluster

2025-04-02 Thread Andreas Mock
Hi all, probably for all out there a stupid question, but I didn't find any hint in the documentation. When I install a SolrCloud-Cluster with several nodes, how do you connect to any of them to do the job? Do you install some kind of proxy in front of the nodes? Or do you ask zookeeper for an

Re:Performance issue: distributed grouping + dense vector search

2025-04-02 Thread Kevin Liang (BLOOMBERG/ 919 3RD A)
I don't have enough knowledge to give the greenlight on this, but on a high level it seems reasonable. This question is probably more appropriate to surface on the dev mailing list rather than the users mailing list. Hopefully you get more thoughts on your patch suggestion there -Kevin From: u

Re: How to connect to Node of a Solr-Cloud-Cluster

2025-04-02 Thread David Santamauro
haproxy is a common tool used to load balance. We use it load-balance (round-robin) a 32-node cluster. https://www.haproxy.org/ From: Andreas Mock Date: Wednesday, April 2, 2025 at 05:41 To: users@solr.apache.org Subject: How to connect to Node of a Solr-Cloud-Cluster Hi all, probably for a