Re: Consultancy for setting up for Apache Solr 8.11.2 on CentOS Linux release 7.9.2009 (Core)

2023-03-07 Thread Jan Høydahl
Yes, please check https://cwiki.apache.org/confluence/display/SOLR/Support which may not be 100% up to date, but you should be able to find someone. Jan > 6. mar. 2023 kl. 19:03 skrev Kaushal Shriyan : > > Hi, > > Are there any consultancy offered for setting up and optimising Apache Solr > 8.

Using facet.limit in combination with grouping

2023-03-07 Thread Sebastian Riemer
Hello, I have a question regarding the paramters "facet.limit" in combination with grouping. My query looks like this: http://localhost:8982/solr/#/wemi/query?q=*:* &q.op=OR &indent=true &start=0 &facet=true &facet.missing=true &facet.sort=count &facet.mincount=1 &fl=m_classificationList_lang_2

Delete silently failing.

2023-03-07 Thread Matthew Castrigno
Hello community, I am having trouble deleting a document by id. curl --location --request POST 'x:8983/solr/talix/update?commit=true' \ --header 'Content-Type: application/json' \ --data-raw '{'\''delete'\'': ["1E089335-892C-41F6-B767-632EB5361775"]}' responds with { "responseHeader": {

Re: Delete silently failing.

2023-03-07 Thread Thomas Corthals
Hi Matthew, There seems to be something strange going on with single quotes and backslashes around your delete command. Best to use double quotes inside a single quoted command argument when sending JSON like this. Maybe you queried too soon, before the change was committed to the index? You can

Re: Delete silently failing.

2023-03-07 Thread Thomas Corthals
Got blindsided by the quotes and didn't notice you already have commit=true as a URL parameter. That should already cover my suggestion. Op di 7 mrt 2023 om 22:06 schreef Thomas Corthals : > Hi Matthew, > > There seems to be something strange going on with single quotes and > backslashes around y

Re: Delete silently failing.

2023-03-07 Thread Walter Underwood
Is it supposed to be: {“delete”: {“id”: "1E089335-892C-41F6-B767-632EB5361775”}} wunder Walter Underwood wun...@wunderwood.org https://observer.wunderwood.org/ (my blog) > On Mar 7, 2023, at 1:20 PM, Thomas Corthals wrote: > > Got blindsided by the quotes and didn't notice you already have com

Re: Delete silently failing.

2023-03-07 Thread Thomas Corthals
These should all be equivalent, but it doesn't hurt to test them all. {“delete”: {“id”: "1E089335-892C-41F6-B767-632EB5361775”}} {“delete”: "1E089335-892C-41F6-B767-632EB5361775”} {“delete”: ["1E089335-892C-41F6-B767-632EB5361775”]} Op di 7 mrt 2023 om 22:25 schreef Walter Underwood : > Is it

Re: Delete silently failing.

2023-03-07 Thread Shawn Heisey
On 3/7/23 12:58, Matthew Castrigno wrote: I am having trouble deleting a document by id. curl --location --request POST 'x:8983/solr/talix/update?commit=true' \ --header 'Content-Type: application/json' \ --data-raw '{'\''delete'\'': ["1E089335-892C-41F6-B767-632EB5361775"]}' When I send a

Re: Delete silently failing.

2023-03-07 Thread Matthew Castrigno
Thank you all for your input. {“delete”: "1E089335-892C-41F6-B767-632EB5361775”} Works for me. [cid:37cdc023-08da-4433-b882-8577129d03c6] Matthew Castrigno IHT Developer II St. Luke’s Health System • 208-859-4276 • castr...@slhs.org