Too much data in highlighting results

2025-05-15 Thread Thorsten Heit
Hi, we use a Solr standalone server instance (9.8.1 actually) for indexing documents. The core we use was created by using the sample techproducts config, and when uploading a (preprocessed) document the following fields are used for storing data: - id (string) - content (text_general) (co

Re: Fresh Installation with Status and Access Issues

2024-10-28 Thread Thorsten Heit
Hi, Attempts to connect to the server using a browser with URL http://192.168.1. 250:8983/ time out. The connection attempt is being refused according to iptables: 2024-10-26T18:53:51.741381-04:00 localhost kernel: iptables denied: IN=eno1 OUT= MAC=54:bf:64:94:de:a8:d8:bb:c1:94:72:25:08:00 SRC=

Re: Error with queries: maxClauseCount is set to 1024

2024-09-17 Thread Thorsten Heit
Hi Mathew, You can configure/increase this limit in solrconfig.xml ... or pass it to the jvm via the SOLR_OPTS property (e.g. -Dsolr.max.booleanClauses=2000) Hope this helps. Thanks for pointing to this link. By playing around with this property I needed to increase it to 10240 to make the qu

Error with queries: maxClauseCount is set to 1024

2024-09-17 Thread Thorsten Heit
Hi all, I'm using solrj to search in Solr for documents that contain text that either starts with, ends with or contains user-defined input. The query actually has the following format: {!complexphrase inOrder=true}""~0 with a "*" at the beginning and/or end of , depending on what / how should

Re: Searching for special characters in documents

2024-08-28 Thread Thorsten Heit
Hi Thomas, How exactly are you executing the queries? If you're using shell commands, keep in mind that the shell will apply its own escaping rules to your command parameters first so if you're not careful a backslash might already be "eaten" before the actual request is fired of. Same goes for

Searching for special characters in documents

2024-08-14 Thread Thorsten Heit
Hi, this is the first time I'm writing to this list, so hi to all :-) I'm having problems querying text having special characters inside (see https://solr.apache.org/guide/solr/latest/query-guide/standard-query-parser.html#escaping-special-charaters). My setup: Solr 9.6.1 running as a standalon