Re: Custom token filter in SolrCloud mode using Blob store

2017-02-03 Thread Michal Hlavac
I get it: Schema components do not yet support the Blob Store. thanks On piatok, 3. februára 2017 10:28:27 CET Michal Hlavac wrote: > Hi, > > it is possible to use BlobStore & Config API with enabled.runtime.lib=true to > add custom token filters? > I tried, but it d

Custom token filter in SolrCloud mode using Blob store

2017-02-03 Thread Michal Hlavac
Hi, it is possible to use BlobStore & Config API with enabled.runtime.lib=true to add custom token filters? I tried, but it doesn't work. 1. Uploaded jar lucene-analyzers-morfologik-6.4.0.jar file to blob store .system with name lucene-analyzers-morfologik-6.4.0 2. Add runtime library

Re: search request audit logging

2017-10-06 Thread Michal Hlavac
Hi, I've noticed that in SOLR-7484 Solr part of http request was moved to SolrHttpCall. So there is no way to handle SolrQueryRequest and SolrQueryResponse in SolrDispatchFilter. Internal requet logging is SolrCore.execute(SolrRequestHandler, SolrQueryRequest, SolrQueryResponse) Is there

search request audit logging

2017-10-02 Thread Michal Hlavac
Hi, I would like to ask how to implement search audit logging. I've implemented some idea but I would like to ask if there is better approach to do this. Requirement is to log username, search time, all request parameters (q, fq, etc.), response data (count, etc) and important thing is to log

Re: Search Analytics Help

2018-04-27 Thread Michal Hlavac
Hi, you have plenty options. Without any special effort there is ELK. Parse solr logs with logstash, feed elasticsearch with data, then analyze in kibana. Another option is to send every relevant search request to kafka, then you can do more sophisticated data analytic using kafka-stream API.

Re: Reading data from Oracle

2018-02-15 Thread Michal Hlavac
Did you try to use ConcurrentUpdateSolrClient instead of HttpSolrClient? m. On štvrtok, 15. februára 2018 8:34:06 CET LOPEZ-CORTES Mariano-ext wrote: > Hello > > We have to delete our Solr collection and feed it periodically from an Oracle > database (up to 40M rows). > > We've done the

deduplicated suggester

2020-04-09 Thread Michal Hlavac
Hi, I wrote suggester based on AnalyzingInfixSuggester that deduplicates data on defined key pattern. Source code is on github: https://github.com/hlavki/solr-unique-suggester[1] m. [1] https://github.com/hlavki/solr-unique-suggester

Re: deduplication of suggester results are not enough

2020-03-26 Thread Michal Hlavac
Hi Roland, I wrote AnalyzingInfixSuggester that deduplicates data on several levels at index time. I will publish it in few days on github. I'll wrote to this thread when done. m. On štvrtok 26. marca 2020 16:01:57 CET Szűcs Roland wrote: > Hi All, > > I follow the discussion of the suggester

unified highlighter performance in solr 8.5.1

2020-05-25 Thread Michal Hlavac
Hi, I have field: and configuration: true unified true content_txt_sk_highlight 2 true Doing query with hl.bs.type=SENTENCE it takes around 1000 - 1300 ms which is really slow. Same query with hl.bs.type=WORD takes from 8 - 45 ms is this normal behaviour or should I create issue? thanks, m.

Re: unified highlighter performance in solr 8.5.1

2020-05-25 Thread Michal Hlavac
I did same test on solr 8.4.1 and response times are same for both hl.bs.type=SENTENCE and hl.bs.type=WORD m. On pondelok 25. mája 2020 15:28:24 CEST Michal Hlavac wrote: Hi, I have field: and configuration: true unified true content_txt_sk_highlight 2 true Doing query with hl.bs.type

Re: unified highlighter performance in solr 8.5.1

2020-05-25 Thread Michal Hlavac
reproduce this with the Lucene benchmark module. > > I figure you have some meaty text, like "page" size or longer? > > ~ David > > > On Mon, May 25, 2020 at 10:38 AM Michal Hlavac wrote: > > > I did same test on solr 8.4.1 and response times are same for both >

Re: unified highlighter performance in solr 8.5.1

2020-05-26 Thread Michal Hlavac
fine, I'l try to write simple test, thanks On utorok 26. mája 2020 17:44:52 CEST David Smiley wrote: > Please create an issue. I haven't reproduced it yet but it seems unlikely > to be user-error. > > ~ David > > > On Mon, May 25, 2020 at 9:28 AM Michal Hlavac wrote:

Re: unified highlighter performance in solr 8.5.1

2020-06-08 Thread Michal Hlavac
s ones (so it appears, any way). I had to do a bit of hacking to use the "LengthGoalBreakIterator, which wasn't previously used by this framework. ~ David On Tue, May 26, 2020 at 4:42 PM Michal Hlavac wrote: fine, I'l try to write simple test, thanks On utorok 26. mája 2020 17:44:52 CE