solr Help

2021-12-12 Thread Surya R
hi Solr Devs, I need guidance on a problem I am having. We recently upgraded to solr-8.11. We still use DIH to pull data from postgres DB. We use solr in a standalone mode, with multiple cores, each core serving a certain business unit. When i try kicking off the dataimport handler i get the bel

Solr 8.11 ( Queries taking longer to respond on startup)

2022-08-05 Thread Surya R
hi, We recently migrated from solr 6.x to 8.11. We reindexed the data on solr 8.11 binaries. We have a master slave configuration. The indexing happens on the master ( LEADER)and replicates to the slaves ( follower) We have around 8 cores on each server, they are like 8 collections, serving di

Solr Heap usage

2023-10-23 Thread Surya R
Hi. We have a solr index with around 2.5M documents , running solr 8.11 . We have bunch of fields that we faceet/sort/highlight on. Heap is 8GB, out of 12 GB RAM These fields were not defined with docValues=true due to some legacy design issues , but if we were to rewrite the app, we would definit

Re: Solr Heap usage

2023-10-25 Thread Surya R
the heap and generates a report of objects on the heap. > > > > On Mon, Oct 23, 2023 at 1:48 PM Surya R wrote: > > > > > Hi. We have a solr index with around 2.5M documents , running solr > 8.11 . > > > We have bunch of fields that we faceet/sort/highlight

Question on "useColdSearcher"

2023-10-25 Thread Surya R
Hello Solr Experts, I have a question on SOLR core behavior I noticed , post 8.x upgrade. We use the simple leader/follower design which holds around 2 million documents per core. Say the name of the core is "customers" which holds all the 2 million customer details, when I restart the solr c

Re: deleting documents based on matching value of the field

2023-10-25 Thread Surya R
Hello Vince, we use something in this format to delete by "id", basically try changing the query to a pattern and test in your sandbox. We use leader/follower architecture. curl "http://solr-host:8983/solr/core/deletes?commit=true"; -H "Content-Type:text/xml" --data-binary 'id:12233' In case th

Re: Question on "useColdSearcher"

2023-10-26 Thread Surya R
, 2023 at 6:10 PM Shawn Heisey wrote: > On 10/25/23 09:05, Surya R wrote: > > I started playing with this setting " > > *false* " in the solr config.xml, > when > > i made it "*true*", which implies to use the cold searcher, I get > response > > imm

Re: Question on "useColdSearcher"

2023-10-27 Thread Surya R
true" , the core shows up right away for queries, even with the 2.2M documents. This is a sandbox, with 2CPU, 8GB ram , 4GB heap space, running Fedora. Please let me know your thoughts. thank you S On Thu, Oct 26, 2023 at 11:00 AM Shawn Heisey wrote: > On 10/26/23 08:36, Surya R