Re: Location of Solr 9 Branch

2021-03-02 Thread Houston Putman
Solr 9 is an unreleased major version, so it lives in *master*. Once the release process starts for Solr 9, it will live at *branch_9x*, and *master* will host Solr 10. On Tue, Mar 2, 2021 at 3:49 PM Phill Campbell wrote: > I have just begun investigating Solr source code. Where is the branch fo

Re: Solr Slack Workspace

2021-01-26 Thread Houston Putman
There is https://solr-dev.slack.com It's not really used, but it's there and we can open it up for people to join and start using. On Tue, Jan 26, 2021 at 5:38 AM Ishan Chattopadhyaya < ichattopadhy...@gmail.com> wrote: > Thanks ufuk. I'll take a look. > > On Tue, 26 Jan, 2021, 4:05 pm ufuk yılm

Re: Solr cloud issuse: Async exception during distributed update

2020-12-09 Thread Houston Putman
Do you have a field named "314257s_seourls" in your schema? Is there a dynamic field you are trying to match with that name? - Houston On Thu, Dec 10, 2020 at 2:53 PM ritvik wrote: > Hi , > Please suggest, why it is happening. > > > > -- > Sent from: https://lucene.472066.n3.nabble.com/Solr-U

Re: solrcloud with EKS kubernetes

2020-12-09 Thread Houston Putman
Hello Abhishek, It's really hard to provide any advice without knowing any information about your setup/usage. Are you giving your Solr pods enough resources on EKS? Have you run Solr in the same configuration outside of kubernetes in the past without timeouts? What type of storage volumes are yo

Re: Unable to upload updated solr config set

2020-09-28 Thread Houston Putman
Until the next Solr minor version is released you will not be able to overwrite an existing configSet with a new configSet of the same name. The ticket for this feature is SOLR-10391 , and it will be included in the 8.7.0 release. Until then you w

Re: Updating configset

2020-09-11 Thread Houston Putman
I completely agree, there should be a way to overwrite an existing configSet. Looks like https://issues.apache.org/jira/browse/SOLR-10391 already exists, so the work could be tracked there. On Fri, Sep 11, 2020 at 12:36 PM Tomás Fernández Löbbe < tomasflo...@gmail.com> wrote: > I was in the same

Re: How to Prevent Recovery?

2020-08-25 Thread Houston Putman
Are you able to use TLOG replicas? That should reduce the time it takes to recover significantly. It doesn't seem like you have a hard need for near-real-time, since slow ingestions are fine. - Houston On Tue, Aug 25, 2020 at 12:03 PM Anshuman Singh wrote: > Hi, > > We have a 10 node (150G RAM,

[ANNOUNCE] Apache Solr 8.6.1 released

2020-08-14 Thread Houston Putman
The Lucene PMC is pleased to announce the release of Apache Solr 8.6.1. Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integrat

Re: [ANNOUNCE] Apache Solr 8.6.0 released

2020-07-15 Thread Houston Putman
To address your concern Bernd, The goal of this deprecation is not to remove the functionality entirely. The primary purpose is to remove the code from Solr Core. Before removing a feature we aim to either: - Move the code to another repository, and have it be loadable via a plugin - Rep

Re: +(-...) vs +(*:* -...) vs -(+...)

2020-05-21 Thread Houston Putman
Jochen, For the standard query parser, pure negative queries (no positive query in front of it, such as "*:*") are only allowed as a top level clause, so not nested within parenthesis. Check the second bullet point of the this section of the Ref Guide page for the Standard Query Parser.

Re: Problems when Upgrading from Solr 7.7.1 to 8.5.0

2020-05-15 Thread Houston Putman
Hello Ludger, I don't have answers to all of your questions, but for #2 (Incorrect Load Balancing) it is a bug that will be fixed in 8.6. You can find more info at SOLR-14471 . - Houston On Mon, May 11, 2020 at 8:16 AM Ludger Steens wrote: > Hi

Re: Slow Query in Solr 8.3.0

2020-05-13 Thread Houston Putman
ies to take around 30 seconds or more. You should be able to fix this by upgrading to 8.4, which has the fix included, if you are in fact using multivalued fields. - Houston Putman On Wed, May 13, 2020 at 7:02 AM vishal patel wrote: > I am upgrading Solr 6.1.0 to Solr 8.3.0. > > I have crea

Re: Checking my understanding of SOLR_HOME

2020-03-27 Thread Houston Putman
1. You are correct about the SOLR_HOST parameter. 2. Your SOLR_PORT variable should be 8983, as that's what solr will be listening on. However you want to make sure to use port 8985 in the solr.xml so that the node advertises itself as using that port in the liveNodes. ${hostPort:8985}

Re: Backups with only 1 machine having access to remote storage?

2020-02-20 Thread Houston Putman
>From my experience, you need all nodes to have access to the shared storage. Solr will pick which nodes should write each shard's data, and you do not have a lot of control over which nodes are selected. This is why in the documentation it says that the backup must be written to NFS or HDFS. Solr

Re: problem using Http2SolrClient with solr 8.3.0

2019-11-27 Thread Houston Putman
Are you overriding the Jetty version in your application using SolrJ? On Wed, Nov 27, 2019 at 4:00 PM Odysci wrote: > Hi, > I have a solr cloud setup using solr 8.3 and SolrJj, which works fine using > the HttpSolrClient as well as the CloudSolrClient. I use 2 solr nodes with > 3 Zookeeper nodes

Re: Changing the IP or a SOLR or Zookeeper host

2019-11-19 Thread Houston Putman
If you are changing the IP of a host running Zookeeper, it can be an issue. It depends on the version of zookeeper that you are using. There was an issue with ZK not re-resolving IP addresses on connection errors, but it was fixed in 3.4.13 ( https://issues.apache.org/jira/plugins/servlet/mobile#is

Re: Solr healthcheck fails all the time

2019-11-07 Thread Houston Putman
Hello, Could you provide some more information about your cloud, for example: - The number of requests that it handles per minute - How much data you are indexing - If there is any memory pressure The ping handler merely sends a query to the collection and makes sure that it responds he