Re: Clustering error in Solr 8.2.0

2019-08-08 Thread Kevin Risden
According to the stack trace: java.lang.NoClassDefFoundError: org/apache/commons/lang/ObjectUtils at lingo3g.s.hashCode(Unknown Source) It looks like lingo3g - lingo3g isn't on Maven central and looks like it requires a license to download. You would have to contact them to see if it

Re: Clustering error in Solr 8.2.0

2019-08-08 Thread Zheng Lin Edwin Yeo
Hi Erick, Thanks for your reply. My clustering code is taken as it is from the Solr package, only the codes related to lingo3g is taken from previous version. Below are the 3 files that I have taken from previous version: - lingo3g-1.15.0 - morfologik-fsa-2.1.1 - morfologik-stemming-2.1.1 Does

Re: Indexed Data Size

2019-08-08 Thread Shawn Heisey
On 8/8/2019 3:17 PM, Moyer, Brett wrote: In our data/solr//data/index on the filesystem, we have files that go back 1 year. I don’t understand why and I doubt they are in use. Files with extensions like fdx,cfe,doc,pos,tip,dvm etc. Some of these are very large and running us out of server

Re: modify query response plugin

2019-08-08 Thread Maria Muslea
I am not able to use the highlighter because in my example the text contains "LAX", and the search is on "airport" on a different field than the text field. I was able to use SearchComponent to add my own highlighting section. Thank you, Maria On Thu, Aug 8, 2019 at 2:20 PM Moyer, Brett

Re: Indexed Data Size

2019-08-08 Thread Erick Erickson
On the surface, this makes no sense at all, so there’s something I don’t understand here ;). How often do you update your index? Having files from a long time ago is perfectly reasonable if you’re not updating regularly. But your statement that some of these are huge for just a 50K document

Re: modify query response plugin

2019-08-08 Thread Andrea Gazzarini
I'm not really sure I got what you want to achieve, but after reading " I am trying to manipulate the data that I already have in the response, ... I can see how I can access the response and construct a new one." an option to consider could be a query response writer [1]. Cheers, Andrea [1]

Re: modify query response plugin

2019-08-08 Thread Atita Arora
Isn't it resolved by simply adding the desired pre/post tags in highlighter request? On Thu, Aug 8, 2019 at 11:20 PM Moyer, Brett wrote: > Highlight? What about using the Highlighter? > https://lucene.apache.org/solr/guide/6_6/highlighting.html > > Brett Moyer > Manager, Sr. Technical Lead |

RE: modify query response plugin

2019-08-08 Thread Moyer, Brett
Highlight? What about using the Highlighter? https://lucene.apache.org/solr/guide/6_6/highlighting.html Brett Moyer Manager, Sr. Technical Lead | TFS Technology Public Production Support Digital Search & Discovery 8625 Andrew Carnegie Blvd | 4th floor Charlotte, NC 28263 Tel: 704.988.4508

Indexed Data Size

2019-08-08 Thread Moyer, Brett
In our data/solr//data/index on the filesystem, we have files that go back 1 year. I don’t understand why and I doubt they are in use. Files with extensions like fdx,cfe,doc,pos,tip,dvm etc. Some of these are very large and running us out of server space. Our search indexes themselves are not

Re: modify query response plugin

2019-08-08 Thread Maria Muslea
Thank you for your response. I believe that the Tagger is used for NER, which is different than what I am trying to do. It is also available only with Solr 7 and I would need this to work with version 6.5.0. I am trying to manipulate the data that I already have in the response, and I can't find

SQL equality predicate escaping single quotes

2019-08-08 Thread Kyle Lilly
Hi, When using the SQL handler is there any way to escape single quotes in boolean predicates? A query like: SELECT title FROM books WHERE author_lastname = 'O''Reilly' Will return no results for authors with the last name "O'Reilly" but will return hits for books with a last name of "OReilly".

Re: Using custom scoring formula

2019-08-08 Thread Chee Yee Lim
Hi Arnold, One way to approach this is to store the topic vector you calculated with each of the associated Solr document into a pseudo-vector field (i.e. formatted string field). Then parse the string field into actual vector for calculation when you need it. Something similar to this,

Re: Solr index

2019-08-08 Thread Dario Rigolin
Do you know that your solr is open to the internet? It's better to filter the port or at least not put here the full address... Il giorno gio 8 ago 2019 alle ore 15:58 HTMLServices.it < i...@htmlservices.it> ha scritto: > Hi everyone > I installed Solr on a test server (centos 7) to get the

Solr index

2019-08-08 Thread HTMLServices.it
Hi everyone I installed Solr on a test server (centos 7) to get the fastest searches on dovecot, Solr and new for me and I think I didn't understand how it works perfectly. I installed following the official guide on the dovecot wiki: https://wiki2.dovecot.org/Plugins/FTS/Solr but I can't get

Re: Lower case "or" is being treated as operator OR?

2019-08-08 Thread Steven White
Hi Chris, I was able to fix the issue by adding the line "false " to my request handler. Here is how my request handler looks like explicit edismax *:* 100 true CC_UNIQUE_FIELD,CC_FILE_PATH,score CC_ALL_FIELDS_DATA xml false

Re: NRT for new items in index

2019-08-08 Thread Updates Profimedia
Thank you for the interesting reply. You confirmed our assumptions about that. The usage of two or more collections, as Jörn Franke said, is more complicated for developing. And for a now we will only try split image to more shards and servers and try to reduce commit times too. I think that

Re: Clustering error in Solr 8.2.0

2019-08-08 Thread Erick Erickson
This dependency was removed as part of https://issues.apache.org/jira/browse/SOLR-9079, so my guess is you’re pointing to an old version of the clustering code. Best, Erick > On Aug 8, 2019, at 4:22 AM, Zheng Lin Edwin Yeo wrote: > > ObjectUtils

Clustering error in Solr 8.2.0

2019-08-08 Thread Zheng Lin Edwin Yeo
Hi, I am currently working on the upgrade from Solr 7.7.1 to Solr 8.2.0. For the clustering, I am using lingo3g. There was no error in the earlier version, but I am getting this error in Solr 8.2.0, even though the configurations are the same. This is my configuration for clustering in