Re: Problem with indexing a String field in SOLR.

2022-05-03 Thread Neha Gupta
Hello Thamizh, There is no problem with the underscore as other fields with underscore are getting properly indexed and stored. Regards Neha Gupta On 29/04/2022 09:32, Thamizh Azhagan wrote: Hi Neha, Please bear me with this basic question. You said that you were able to index with the n

Re: Regarding maximum number of documents that can be returned safely from SOLR to Java Application.

2022-05-03 Thread Neha Gupta
Hello All, Thanks a lot for the replies. So the conclusion i came is to use either /exporthandler or cursor for fetching large number of documents so i am going to use that and will try to run tests to see whether all works fine or not. Thanks again for all the help. Regards Neha Gupta O

Re: Problem with indexing a String field in SOLR.

2022-05-03 Thread Neha Gupta
Hello Shawn, Please find attached the schema file. Regards Neha Gupta On 29/04/2022 14:43, Shawn Heisey wrote: On 4/28/22 14:16, Neha Gupta wrote: I am not using dynamic fields and schema is as below. That isn't the schema.  It's a screenshot of the Schema Browser in the admin UI, showin

REMINDER - Travel Assistance available for ApacheCon NA New Orleans 2022

2022-05-03 Thread Gavin McDonald
Hi All Contributors and Committers, This is a first reminder email that travel assistance applications for ApacheCon NA 2022 are now open! We will be supporting ApacheCon North America in New Orleans, Louisiana, on October 3rd through 6th, 2022. TAC exists to help those that would like to attend

Re: Problem with indexing a String field in SOLR.

2022-05-03 Thread Paras Lehana
Hi Neha, Regarding your first screenshot, do you get the option to "Load Term Info"? If yes, do you see terms and count after clicking it? On Tue, 3 May 2022 at 15:47, Neha Gupta wrote: > Hello Shawn, > > Please find attached the schema file. > > > Regards > > Neha Gupta > > On 29/04/2022 14

Re: Stop a long running query

2022-05-03 Thread Mikhail Khludnev
Hello, Rahul. Well, if facets are counted over docvalues or method=enum and hit directory I/O and abandoned by ExitableDirectoryOrSomtehing. see CloudExitableDirectoryReaderTest. If this resolution is not enough one can extend FacetComponent and check timeAllowed inside the routine. The first stat

Backup failing and taking previous backup data with it

2022-05-03 Thread Michael B. Klein
Hi all, My apologies if this message is a duplicate. I sent it yesterday, but then realized I wasn’t fully subscribed to the list so I don’t think it went through. I haven’t seen it appear in the archives. I’m running a cluster consisting of Solr 8.11.1 (4 nodes) and Zookeeper 3.7.0 (3 nodes).

Backup failing and taking previous backup data with it

2022-05-03 Thread Michael B. Klein
Hi all, I’m running a cluster consisting of Solr 8.11.1 (4 nodes) and Zookeeper 3.7.0 (3 nodes). I have a cron job that calls $SOLR_BASE_URL/admin/collections?action=BACKUP&name=${collection}&collection=${collection}&maxNumBackupPoints=14&location=/data/backup for each collection every day at 6

SOLR API - modifying the schema for one collection modifies it for ALL collections ?

2022-05-03 Thread Serban Alexe
Hi all, I have a SOLR Server with several collections. To retrieve the properties of the fields, I ran these requests: - GET http://localhost:8983/solr//schema/fields - GET http://localhost:8983/solr//schema/fields Then I ran a POST http://localhost:8983/solr//schema request, with the co

Solr - frequent OOM

2022-05-03 Thread Vincenzo D'Amore
Hi all, I'm tuning a solrcloud 5.4.1 deployment (3 nodes, 12 cores each, 18GB ram) that is experiencing frequent OutOfMemoryError (20 a day in total) exceptions during the execution of a group query. Looking at query group.limit=1 but the rows range between 1000 and 1. I'm analyzing the solr

Re: SOLR API - modifying the schema for one collection modifies it for ALL collections ?

2022-05-03 Thread Jan Høydahl
Your Collection's schema is part of a ConfigSet (https://solr.apache.org/guide/8_11/config-sets.html ). Multiple collections may use the same ConfigSet. The gotcha is that when you modify schema for collection A, what you really do is modify t

Re: Solr - frequent OOM

2022-05-03 Thread matthew sporleder
In my experience solr handles that stuff pretty well but I do, occasionally, remember seeing lost file handles and weirdness after an OOM. On Tue, May 3, 2022 at 7:01 PM Vincenzo D'Amore wrote: > Hi all, > > I'm tuning a solrcloud 5.4.1 deployment (3 nodes, 12 cores each, 18GB ram) > that is exp

Re: Solr - frequent OOM

2022-05-03 Thread Brian Lininger
You need to restart your JVM anytime you hit an OOM exception, the state of the JVM is nondeterministic once you hit this. There is a JVM flag to automatically restart on OOM for this exact reason. On Tue, May 3, 2022, 4:49 PM matthew sporleder wrote: > In my experience solr handles that stuff

Re: Solr - frequent OOM

2022-05-03 Thread Rahul Goswami
Unfortunately in my experience, Solr doesn’t handle OOMs well and needs to be restarted. For example, if you have an indexing job going on or an expensive group by or collapse query, it will close the IndexWriter or IndexSearcher and the core is just defunct thereafter unless Solr is restarted. I w

Re: Solr - frequent OOM

2022-05-03 Thread Shawn Heisey
On 5/3/2022 5:01 PM, Vincenzo D'Amore wrote: I'm tuning a solrcloud 5.4.1 deployment (3 nodes, 12 cores each, 18GB ram) that is experiencing frequent OutOfMemoryError (20 a day in total) exceptions during the execution of a group query. Looking at query group.limit=1 but the rows range between 1

Re: Solr - frequent OOM

2022-05-03 Thread Ritvik Sharma
Try to update with Latest version of solrcloud. Note: There are massive changes. On Wed, 4 May 2022 at 07:08, Shawn Heisey wrote: > On 5/3/2022 5:01 PM, Vincenzo D'Amore wrote: > > I'm tuning a solrcloud 5.4.1 deployment (3 nodes, 12 cores each, 18GB > ram) > > that is experiencing frequent Out