Sv: issue with f..qf in solr 9.4

2023-10-25 Thread Noah Torp-Smith
Just for clarification: this works in 9.3 (like 9.1.1), and not 9.4. Thanks for reacting to this, I appreciate it. I'll keep an eye on SOLR-16916. Regards, /Noah -- Noah Torp-Smith (n...@dbc.dk) Fra: Chris Hostetter Sendt: 24. oktober 2023 19:32 Til: users@s

SolR 9.4.0 and zookeepr version

2023-10-25 Thread Isabella Trevisan
Hi , which version of zookeeper is certified / suggested for solr 9.4.0 ? Thank you and regards -- Isabella Trevisan

Retry strategy in Solrj 8

2023-10-25 Thread Solr User
When using CloudSolrClient builder, the default HttpClient appears to be created with 3 retries. However, it looks like BaseCloudSolrClient already retries 5 times so we end up with retries on top of retries. Is there a reason to keep both of these retries configured or is it safe to disable the

deleting documents based on matching value of the field

2023-10-25 Thread Vince McMahon
Hi, Could someone provide me a few examples on the syntax for delete a few documents based on matching (or actually partial matching) of a value of a a field. for example, delete all document is: *:* I have some of the documents that has a kv pairs liked: "my_field":"value1" "my_field":"value2"

Re: Solr Heap usage

2023-10-25 Thread Surya R
Thank you Rajani and Arrieta, I will read the link. Ishan also reached out to me earlier on with some insights , and am analyzing them as well. I did take a heap dump using VisualVM and analyzing the details, after loading through the visualVM tool. thanks Surya On Tue, Oct 24, 2023 at 9:18 PM Ar

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: SolR 9.4.0 and zookeepr version

2023-10-25 Thread Shawn Heisey
On 10/25/23 05:45, Isabella Trevisan wrote: which version of zookeeper is certified / suggested for solr 9.4.0 ? Solr 9.4.0 comes with the ZK 3.9.0 client. The ZK project guarantees that 3.9.x will work with 3.8.0 through 3.10.x. A wider version range might actually work, that is just th

Re: Question on "useColdSearcher"

2023-10-25 Thread Shawn Heisey
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 immediately after a core restart. But if i leave the default, which is "*false*" it takes a long time. It s

question on docker example from guide

2023-10-25 Thread Vince McMahon
I am trying to follow the example on running solr via docker. the example is from https://solr.apache.org/guide/solr/latest/deployment-guide/solr-in-docker.html what is the last two part of the command highlighted. docker run -d -v "$PWD/indata:/var/solr" -p 8983:8983 --name my_solr *solr solr-p

Re: question on docker example from guide

2023-10-25 Thread Vince McMahon
ok, so those are commands. I can't find them. I'm running into many problems to get any of the examples to start. Is there a clean version of the docker to learn solr? Is there any YouTube videos can help me jump start? My primary job is to dev an app and I'm in a tight deadline. Running solr

RE: question on docker example from guide

2023-10-25 Thread ufuk yılmaz
This single simple command should work and you should be able to see an empty Solr running if there isn’t any problem with your Docker: docker run -p 8983:8983 solr:9.1 What OS and docker version are you using? Sent from Mail for Windows From: Vince McMahon Sent: Thursday, October 26, 2023 5:4