Re: [VOTE] Release Solr 9.2.1 RC1

2023-04-29 Thread Ishan Chattopadhyaya
> it is by design to allow full access, even arbitrary plugin code upload, by users with config-edit permission and in unprotected Solr instances. Without polluting this thread, I'll just say that this assertion is wrong. If you can demonstrate how someone with full API access, but no write access

Re: [VOTE] Release Solr 9.2.1 RC1

2023-04-29 Thread Noble Paul
On Sun, Apr 30, 2023, 10:09 AM Jan Høydahl wrote: > I maintain my +1 vote, as it is by design to allow full access, even > arbitrary plugin code upload, by There is no such "design" as you say Jan. Show me a single feature that can upload and run code without file system or direct zk access us

Re: [VOTE] Release Solr 9.2.1 RC1

2023-04-29 Thread Jan Høydahl
I maintain my +1 vote, as it is by design to allow full access, even arbitrary plugin code upload, by users with config-edit permission and in unprotected Solr instances. I do support discussing new defaults to some of these setting, but that can happen in the open for a future release, no rush

Re: SolrCloud separating compute from storage

2023-04-29 Thread Wei
This is an awesome feature for solr cloud! Currently for our read heavy/write heavy use case, we exclude all query requests from the leader in each shard to avoid becoming the load bottleneck. Also each solr cloud has its own pipeline for NRT updates. With stateless replica and persistent storage

Re: [VOTE] Release Solr 9.2.1 RC1

2023-04-29 Thread Justin Sweeney
I'm going to proceed with this release as is, we can follow up with an additional release as needed. Voting will close 2023-04-30 at 15:00 UTC. On Sat, Apr 29, 2023 at 10:37 AM Ishan Chattopadhyaya < ichattopadhy...@gmail.com> wrote: > https://issues.apache.org/jira/browse/SOLR-16777 is fixed. I'

Re: [VOTE] Release Solr 9.2.1 RC1

2023-04-29 Thread Ishan Chattopadhyaya
https://issues.apache.org/jira/browse/SOLR-16777 is fixed. I've added it to the release branch. The other one will require me some more time, maybe another day. Justin, I believe a re-spin is warranted to accommodate this, but I leave it to your judgement. On Sat, 29 Apr 2023 at 12:07, Ishan Chatt

Re: SolrCloud separating compute from storage

2023-04-29 Thread Ilan Ginzburg
The changing/overlapping leaders was the main challenge in the implementation. Logic such as: If (iAmLeader()) { doThings(); } Can have multiple participants doThings() at the same time as iAmLeader() could change just after it was checked. The only way out in such an approach is to do barriers