Re: writing solr logs as jsons in solr 8.6.3

2022-06-13 Thread Cassandra Targett
Can you go to 8.10? Because it’s included in 8.10+ too. If not, the patch that added this capability is in this issue and maybe you can make something of it: https://issues.apache.org/jira/browse/SOLR-15610 On Jun 12, 2022, 8:03 AM -0500, 123456780sss <123456780...@protonmail.com.invalid>, wrote

Re: [VOTE] SIP-15 Node roles

2021-11-18 Thread Cassandra Targett
I don’t want to start a fight here but the SIP process [1] doesn’t say anything about a vote passing by lazy consensus. It offers 2 options, lazy consensus via no further discussed objections OR a vote that must have 3 binding +1s: --- 5. When feedback iteration trails off on the DISCUSS thread,

Re: Potential Bug: Incremental backup attempts fail after a shard split operation has completed

2021-09-21 Thread Cassandra Targett
I didn’t develop this feature but know some of how it was designed and developed, and believe that it wasn’t intentional to omit support for backups post-shard split. I think it might have just been overlooked as a use case. I’m going to guess that the cause of this is that the shard names chang

Re: Index dependent groups of data

2021-09-16 Thread Cassandra Targett
As Shawn explained, when a TLOG replica is not the leader, it does not index the documents directly but pulls index segments from the leader. However, this operation is generally rather fast - within a second or two - since it copies the changed segments, not the full index (and 70 million docs

Re: Vulnerabilities in SOLR 8.8.2

2021-09-06 Thread Cassandra Targett
We have replied to this person’s “monthly reminders” multiple times but they are apparently not subscribed to the list, so they do not see them. It’s almost becoming a troll at this point, to repeatedly attempt to shame a community for not answering but not bothering to join the community to kno

Re: Solr 8.6 & autoGeneratePhraseQueries

2021-08-05 Thread Cassandra Targett
The `body` field that you’re using here has the WordDelimiterGraphFilterFactory enabled, which is what’s splitting the term “covid19” into “covid 19”. This filter splits terms on various compound word delimiters, and one delimiter it uses is a transition from alpha to numeric characters (this is

Re: Zookeeper Server Error - Zookeeper server not running

2021-07-29 Thread Cassandra Targett
The first problem you had means that more than 60 connections (configured with the maxClientCnxns property in your zoo.cfg) were being attempted from the *same* IP - that’s a lot! The second error seems rather truncated the way you’ve provided it - from Googling it seems there should be a bit m

Re: Incorrect status in CLUSTERSTATUS

2021-07-15 Thread Cassandra Targett
It is probably more of a design flaw than an outright bug, and I think it was addressed with https://issues.apache.org/jira/browse/SOLR-15300 (released in 8.9). As explained in that issue, that `state` flag was only meant to reflect the state during SPLITSHARD operations, but that’s actually a

Re: Regarding internode TLS enablement...

2021-04-14 Thread Cassandra Targett
gt; > From: Jigar Pandya > Date: Tuesday, April 13, 2021 at 11:17 AM > To: users@solr.apache.org , Cassandra Targett > > Subject: Re: Regarding internode TLS enablement... > Thanks Cassandra. This is great that there is an API which can be utilized to > mark existing collec

Re: Regarding internode TLS enablement...

2021-04-12 Thread Cassandra Targett
At some point after 8.3, we added instructions for what to do with existing collections:  https://solr.apache.org/guide/8_8/enabling-ssl.html#update-cluster-properties-for-existing-collections. I don’t see any reason why that wouldn't be valid for 8.3 also. On Apr 12, 2021, 2:58 PM -0500, Jigar P

Re: mlt.interestingTerms in MoreLikeThisComponent: standalone vs cloud

2021-04-08 Thread Cassandra Targett
It’s an undocumented limitation that interesting terms are not returned in a distributed query (like SolrCloud would make) when using MLT with the search component. The interesting terms support for the search component was added in 8.2 in  https://issues.apache.org/jira/browse/SOLR-12304. That