Re: SOLR upgrade

2021-02-12 Thread Alessandro Benedetti
. Regards -- Alessandro Benedetti Apache Lucene/Solr Committer Director, R Software Engineer, Search Consultant www.sease.io On Tue, 9 Feb 2021 at 11:01, Charlie Hull wrote: > Hi Lulu, > > I'm afraid you're going to have to recognise that Solr 5.2.1 is very > out-o

Re: Extremely Small Segments

2021-02-12 Thread Alessandro Benedetti
had to shard your index? Any performance benchmark? Cheers -- Alessandro Benedetti Apache Lucene/Solr Committer Director, R Software Engineer, Search Consultant www.sease.io On Fri, 12 Feb 2021 at 13:44, yasoobhaider wrote: > Hi > > I am migrating from mas

Re: Re:Interpreting Solr indexing times

2021-01-13 Thread Alessandro Benedetti
/~mikemccand/lucenebench/indexing.html Not sure we have something similar for Apache Solr officially. https://cwiki.apache.org/confluence/display/SOLR/SolrPerformanceData -> this should be a bit outdated Cheers - --- Alessandro Benedetti Search Consultant, R Software Engin

Re: leader election stuck after hosts restarts

2021-01-13 Thread Alessandro Benedetti
I faced these problems a while ago, but at the time I created a blog post which I hope could help: https://sease.io/2018/05/solrcloud-leader-election-failing.html - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from

Re: QueryResponse ordering

2021-01-13 Thread Alessandro Benedetti
results having "abc" as the PARTY.PARTY.ID ? https://lucene.apache.org/solr/guide/6_6/the-dismax-query-parser.html#TheDisMaxQueryParser-Thebq_BoostQuery_Parameter - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io --

[Free Online Meetups] London Information Retrieval Meetup

2020-11-02 Thread Alessandro Benedetti
ww.meetup.com/London-Information-Retrieval-Meetup-Group/events/273905485/ Cheers have a nice evening! ------ Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io

Re: How to get boosted field and values?

2020-03-20 Thread Alessandro Benedetti
question, if not feel free to elaborate more. Cheers -- Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io On Thu, 19 Mar 2020 at 11:18, Taisuke Miyazaki wrote: > I'm using Solr 7.5.0. > I want to get boosted field and values per doc

Re: Re: Anyone have experience with Query Auto-Suggestor?

2020-01-23 Thread Alessandro Benedetti
. We should differentiate here between the suggester dictionary (where the suggestions come from, in your case it could be your extracted data) and the kind of suggestion (that in your case could be the free text suggester lookup) Cheers -- Alessandro Benedetti Search

Re: Query Regarding SOLR cross collection join

2020-01-23 Thread Alessandro Benedetti
architecture involved. Cheers ------ Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io On Wed, 22 Jan 2020 at 13:27, Doss wrote: > HI, > > SOLR version 8.3.1 (10 nodes), zookeeper ensemble (3 nodes) > > One of our use cases requ

Re: Is it possible to add stemming in a text_exact field

2020-01-23 Thread Alessandro Benedetti
Edward is correct, furthermore using a stemmer in an analysis chain that don't tokenise is going to work just for single term queries and single term field values... Not sure it was intended ... Cheers -- Alessandro Benedetti Search Consultant, R Software Engineer

Re: Spell check with data from database and not from english dictionary

2020-01-23 Thread Alessandro Benedetti
. It could be from the English dictionary or from a database. [1] https://lucene.apache.org/solr/guide/8_4/spell-checking.html -- Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io On Thu, 23 Jan 2020 at 06:06, seeteshh wrote: > Hello

Re: [Apache Solr ReRanking] Sort Clauses Bug

2019-09-26 Thread Alessandro Benedetti
the 'sort' in the local params of the reRank query parser affect the original query OR *the final results*? In bold my personal preference, but I don't have any hard position in regards. Cheers -- Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.i

Re: [Apache Solr ReRanking] Sort Clauses Bug

2019-09-26 Thread Alessandro Benedetti
nfused about this. > > Erick > > > On Sep 25, 2019, at 5:47 PM, Alessandro Benedetti > wrote: > > > > Hi all, > > I was playing a bit with the reranking capability and I discovered that: > > > > *Sort by score, then by secondary field -> OK* > > http

Re: Need more info on MLT (More Like This) feature

2019-09-26 Thread Alessandro Benedetti
query and gives you the chance to see it using the debug query. ----- --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

[Apache Solr ReRanking] Sort Clauses Bug

2019-09-25 Thread Alessandro Benedetti
ested on 8.1.1 but it should be in master as well. Regards ------ Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io

Re: MLT - unexpected design choice

2019-01-29 Thread Alessandro Benedetti
cated per term in the for loop, using the field stats, something like:* *numDocs = ir.getDocCount(fieldName)* Feel free to open the Jira issue and attach a patch with at least a testCase that shows the bugfix. I will be available for doing the review. Cheers ------ Alessandro

Re: Question about elevations

2018-11-19 Thread Alessandro Benedetti
- --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: AW: Solr suggestions, best practices

2018-11-19 Thread Alessandro Benedetti
s-bugs-and-improvements.html <https://sease.io/2018/06/apache-lucene-blendedinfixsuggester-how-it-works-bugs-and-improvements.html> Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.c

Re: Restrict search on term/phrase count in document.

2018-11-19 Thread Alessandro Benedetti
in the document, but is offset by the frequency of the word in the document, which helps to control for the fact that some words are generally more common than others. See also idf. tf(text,'solr') Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd

Re: Phrase query as feature in LTR not working

2018-11-19 Thread Alessandro Benedetti
https://lucene.apache.org/solr/guide/6_6/other-parsers.html#OtherParsers-FieldQueryParser and then play with the following if more advance phrase querying was needed: https://lucene.apache.org/solr/guide/6_6/other-parsers.html#OtherParsers-ComplexPhraseQueryParser Cheers - --- Aless

Re: Scores with Solr Suggester

2018-07-04 Thread Alessandro Benedetti
-and-improvements.html - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr 7 MoreLikeThis boost calculation

2018-06-29 Thread Alessandro Benedetti
re will be 10 and the normalised score will be : Term1:10 , Term2:5, Term3:2, Term4:1 These values will be used to build the boost term queries. I see no particular problem with that. What is your concern ? - ------- Alessandro Benedetti Search Consultant, R Software Engineer, Direc

Re: Solr sort by score not working properly

2018-06-22 Thread Alessandro Benedetti
reason ? It's been a while I have not checked but I doubt you get any benefit from the default ( which rank by score). So I recommend you to send here the debug response and then possibly your select request handler config. Cheers - --- Alessandro Benedetti Search Consultant, R

Re: How to split index more than 2GB in size

2018-06-20 Thread Alessandro Benedetti
. - SolrCloud problems often involve more than one node. Be sure to check the logs of all the nodes possibly involved. - Report the full stack trace to the community - Report your full request which provoked the exception Help is much easier this way :) Regards - --- Alessandro

Re: Solr 6.5 autosuggest suggests misspelt words and unwanted words

2018-06-20 Thread Alessandro Benedetti
single mispelled word has a low document frequency. You could use the High Frequency Document Dictionary[1] and see how it goes. [1] https://lucene.apache.org/solr/guide/7_3/suggester.html#highfrequencydictionaryfactory - --- Alessandro Benedetti Search Consultant, R Software

Re: How to exclude certain values in multi-value field filter query

2018-06-19 Thread Alessandro Benedetti
-core/org/apache/solr/update/processor/ConcatFieldUpdateProcessorFactory.html Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solrj does not support ltr ?

2018-06-19 Thread Alessandro Benedetti
Pretty sure you can't. As far as I know there is no client side implementation to help with managed resourced in general. Any contribution is welcome! - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http

Re: Achieving AutoComplete feature using Solrj client

2018-06-18 Thread Alessandro Benedetti
Indeed, you first configure it in the solrconfig.xml ( manually). Then you can query and parse the response as you like with the SolrJ client library. Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from

Re: Achieving AutoComplete feature using Solrj client

2018-06-18 Thread Alessandro Benedetti
-me.html [3] https://lucidworks.com/2015/03/04/solr-suggester/ [4] https://sease.io/2018/06/apache-lucene-blendedinfixsuggester-how-it-works-bugs-and-improvements.html - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from

Re: Solr Suggest Component and OOM

2018-06-14 Thread Alessandro Benedetti
I didn't get any answer to my questions ( unless you meant you have 25 millions of different values for those fields ...) Please read again my answer and elaborate further. Do you problem happen for the 2 different suggesters ? Cheers - --- Alessandro Benedetti Search

Re: Logging Every document to particular core

2018-06-14 Thread Alessandro Benedetti
Isn't the Transaction Log what you are looking for ? Read this good blog post as a reference : https://lucidworks.com/2013/08/23/understanding-transaction-logs-softcommit-and-commit-in-sorlcloud/ Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer

Re: Changing Field Assignments

2018-06-12 Thread Alessandro Benedetti
On top of that I would not recommend to use the schema-less mode in production. That mode is useful for experimenting and prototyping, but with a managed schema you would have much more control over a production instance. Regards - --- Alessandro Benedetti Search Consultant, R

Re: Solr Suggest Component and OOM

2018-06-12 Thread Alessandro Benedetti
M Solr process than the OS ( which in your situation doesn't fit the entire index ideal scenario). I would recommend to put some monitoring in place ( there are plenty of open source tools to do that) Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Di

Re: How to find out which search terms have matches in a search

2018-06-12 Thread Alessandro Benedetti
I would recommend to look into the Highlight feature[1] . There are few implementations and they should be all right for your user requirement. Regards [1] https://lucene.apache.org/solr/guide/7_3/highlighting.html - --- Alessandro Benedetti Search Consultant, R Software

Re: Difference in fieldLengh and avgFieldLength in Solr 6.6 vs Solr 7.1

2018-06-08 Thread Alessandro Benedetti
time boost. Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: BlendedInfixSuggester wiki errata corrige

2018-06-06 Thread Alessandro Benedetti
Hi Cassandra, thanks for your reply. I did the fix in the official documentation as part of the bugfix I am working on: LUCENE-8343 <https://issues.apache.org/jira/browse/LUCENE-8343> Any feedback is welcome ! Cheers - --- Alessandro Benedetti Search Consult

Re: BlendedInfixSuggester wiki errata corrige

2018-06-05 Thread Alessandro Benedetti
Errata corrige to my Errata corrige post : e.g. Position Of First match = *0 | 1 | 2 | 3 |* Linear |1 | 0.9|0.8|0.7 Reciprocal |1 | 1/2|1/3|1/4 Exponential Reciprocal |1 | 1/4|*1/9*|1/16 - --- Alessandro Benedetti

BlendedInfixSuggester wiki errata corrige

2018-06-05 Thread Alessandro Benedetti
r.html#blendedinfixlookupfactory - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr 7.3 suggest dictionary building fails in cloud mode with large number of rows

2018-06-05 Thread Alessandro Benedetti
ry mapping ( which is heavily used by Solr). With such a big heap, you GC may indeed end up in long pauses. It is recommended to allocate to the Solr process as little as possible ( according yo your requirements) Regards - --- Alessandro Benedetti Search Consultant, R Softwar

Re: Solr 7.3 suggest dictionary building fails in cloud mode with large number of rows

2018-06-04 Thread Alessandro Benedetti
some Stop World situation caused by GC. - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Update Solr Document

2018-06-01 Thread Alessandro Benedetti
tml#UpdatingPartsofDocuments-In-PlaceUpdates> [2] understanding-transaction-logs-softcommit-and-commit-in-sorlcloud <https://lucidworks.com/2013/08/23/understanding-transaction-logs-softcommit-and-commit-in-sorlcloud/> - --- Alessandro Benedetti Search Consultant, R Softw

Re: Weird behavioural differences between pf in dismax and edismax

2018-05-30 Thread Alessandro Benedetti
Question in general for the community : what is the dismax capable of doing that the edismax is not ? Is it really necessary to keep both of them or the dismax could be deprecated ? Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd

Re: solr-extracting features values

2018-05-30 Thread Alessandro Benedetti
feature enabled and then parse the results to build your training set. Do you have query level or query dependant features ? In case you are lucky enough to just have document level features, you may end up in a slightly simplified scenario. Cheers - --- Alessandro Benedetti Search

Re: Weird behavioural differences between pf in dismax and edismax

2018-05-29 Thread Alessandro Benedetti
be the correct interpretation ( e.g. wi-fi with a query time analiser which split by - ) . Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Weird behavioural differences between pf in dismax and edismax

2018-05-29 Thread Alessandro Benedetti
believe that even if the query is a single term ( before or after the analysis for a PF field) it should anyway boost the phrase. A phrase of 1 word is still a phrase, isn't it ? - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io

Re: Could not load collection from ZK:

2018-05-24 Thread Alessandro Benedetti
hi Aman, I had similar issues in the past and the reason was attributed to : SOLR-8868 <https://issues.apache.org/jira/browse/SOLR-8868> Which unfortunately is not solved yet. Did you manage to find a different cause in your case? hope that helps. Regards - --- Ales

Re: Debugging/scoring question

2018-05-23 Thread Alessandro Benedetti
ers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Multiple languages, boosting and, stemming and KeywordRepeat

2018-05-18 Thread Alessandro Benedetti
Hi Markus, can you show all the query parameters used when submitting the request to the request handler ? Can you also include the parsed query ( in the debug) I am curious to investigate this case. Cheers -- Alessandro Benedetti Search Consultant, R Software Engineer

Re: Regarding LTR feature

2018-05-17 Thread Alessandro Benedetti
er queries. The payload score part may be different. Anyway, you mentioned that you assign the weights, in that case the learning to rank plugin may be not necessary at all. Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io --

Re: How to implement Solr auto suggester and spell checker simultaneously on a single search box

2018-05-17 Thread Alessandro Benedetti
functionality or just run the spellcheck response collation from the main query) Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Date Query Confusion

2018-05-17 Thread Alessandro Benedetti
rkingwithDates-DateRangeFormatting [2] https://lucene.apache.org/solr/guide/6_6/common-query-parameters.html#CommonQueryParameters-ThesortParameter - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Regarding LTR feature

2018-05-09 Thread Alessandro Benedetti
y convinced is going to be performance friendly anyway. i would need to investigate that properly. Regards ----- --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Autocomplete returning shingles

2018-05-04 Thread Alessandro Benedetti
. [1] https://solr.pl/en/2013/03/25/autocomplete-on-multivalued-fields-using-faceting/ - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Regarding LTR feature

2018-05-04 Thread Alessandro Benedetti
the model learnt from the training set. Let me know ! - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Regarding LTR feature

2018-05-03 Thread Alessandro Benedetti
;in_aggregated_terms", "norm": { "class" : "org.apache.solr.ltr.norm.MinMaxNormalizer", "params" : { "min":"x", "max":"y" } } }, } Give it a try, let me know - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Autocomplete returning shingles

2018-05-03 Thread Alessandro Benedetti
( analysers doesn't affect stored content) Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Regarding LTR feature

2018-04-30 Thread Alessandro Benedetti
am familiar with LTR code and I would be surprised to see this different behavior [1] https://lucidworks.com/2017/11/27/caching-and-filters-and-post-filters/ - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http

Re: How to create a solr collection providing as much searching flexibility as possible?

2018-04-30 Thread Alessandro Benedetti
ued fields, docValues="true" must be used to enable sorting. [2] Regards [1] https://lucene.apache.org/solr/guide/7_3/field-types-included-with-solr.html [2] https://lucene.apache.org/solr/guide/7_3/the-standard-query-parser.html#range-searches ----- --- Alessandro Benedetti

Re: How to create a solr collection providing as much searching flexibility as possible?

2018-04-28 Thread Alessandro Benedetti
solution accordingly. Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Search Analytics Help

2018-04-27 Thread Alessandro Benedetti
Michal, Doug was referring to an open source solution ready out of the box and just pluggable ( a sort of plug and play). Of course you can implement your own solution and using ELK or kafka is absolutely a valid option. Cheers -- Alessandro Benedetti Search Consultant

Re: Learning to Rank (LTR) with grouping

2018-04-24 Thread Alessandro Benedetti
r you reach rows * page > reRankDocs. In situations when reRankDocs is quite high , the problem will occur only in deep paging. - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Run solr server using Java program

2018-04-20 Thread Alessandro Benedetti
To do what? If you mean to start a Solr Server instance, you have the solr.sh ( or the windows starter). You can set up your automation stack to be able to startup Solr one click. SolrJ is a client which means you need Solr up and running. Cheers On Fri, 20 Apr 2018, 16:51 rameshkjes,

Re: Run solr server using Java program

2018-04-20 Thread Alessandro Benedetti
There are various client API to use Apache Solr[1], in your case what you need is SolrJ[2] . Cheers [1] https://lucene.apache.org/solr/guide/7_3/client-apis.html [2] https://lucene.apache.org/solr/guide/7_3/using-solrj.html#using-solrj - --- Alessandro Benedetti Search

Re: SolrCloud design question

2018-04-20 Thread Alessandro Benedetti
. It will just be Shard1 (ReplicaHost1, ReplicaHost2, ReplicaHost3). So you can't really shuffle anything at this level. - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User

Re: How to protect middile initials during search

2018-04-20 Thread Alessandro Benedetti
. Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Learning to Rank (LTR) with grouping

2018-04-17 Thread Alessandro Benedetti
an idea ( and I am not completely sure it could help) but I believe as a community we should manage a little bit better contributions, of course I am open to any idea and perspective. Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd.

Re: Learning to Rank (LTR) with grouping

2018-04-17 Thread Alessandro Benedetti
on already assigned affect the address of that Jira issue ? Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Sorting using "packed" fields?

2018-04-17 Thread Alessandro Benedetti
ow-to-sort-parent-documents-by-child-attributes-in-solr/ -- Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io On Mon, Apr 16, 2018 at 9:48 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE-

Re: Match a phrase like "Apple iPhone 6 32GB white" with "iphone 6"

2018-04-09 Thread Alessandro Benedetti
should work (if the product names are always complete and well curated). Cheers -- Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io On Mon, Apr 9, 2018 at 10:40 AM, Adhyan Arizki <a.ari...@gmail.com> wrote: > You can just use

Re: LTR - OriginalScore query issue

2018-03-19 Thread Alessandro Benedetti
ption'* Can you try again using the proper expected syntax ( with single quotes). If it doesn't work we may need to raise it as a bug. Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: LTR - OriginalScore query issue

2018-03-16 Thread Alessandro Benedetti
}, store: "myFeatureStoreDemo", } Cheers ----- --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

RE: SpellCheck Reload

2018-03-15 Thread Alessandro Benedetti
ialise again the source for the dictionary to the latest index commit 2) re-build the dictionary Cheers - ------- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Some performance questions....

2018-03-15 Thread Alessandro Benedetti
xecute windows applications ? - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: LTR - OriginalScore query issue

2018-03-15 Thread Alessandro Benedetti
ms}${user_query}" } } e.g. { "store" : "myFeatureStore", "name" : "titleTfIdf", "class" : "org.apache.solr.ltr.feature.SolrFeature", "params" : { "q" : "{!field f=title}${user_query}" } }

Re: LTR not able to upload org.apache.solr.ltr.model.MultipleAdditiveTreesModel

2018-03-14 Thread Alessandro Benedetti
Model type does not exist " + className, e); }" I admit it is generic and contains even a catch "Exception" clause, but wasn't it logging the stacktrace ? Just out of curiosity, how was the entire stacktrace ? This may help to improve it. Regards ----- -----

Re: Solr Warming Up Doubts

2018-03-14 Thread Alessandro Benedetti
( normally to 2 searchers) So, in short, you are definitely doing something wrong and your auto warming is not going to work as you like :) Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066

Re: LTR not able to upload org.apache.solr.ltr.model.MultipleAdditiveTreesModel

2018-03-14 Thread Alessandro Benedetti
Hi Roopa, that model changed name few times, which Apache Solr version are you using ? It is very likely you are using a class name not in sync with your Apache Solr version. Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd

Re: Need help with match contains query in SOLR

2018-02-20 Thread Alessandro Benedetti
#FilterDescriptions-ShingleFilter - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

RE: Index size increases disproportionately to size of added field when indexed=false

2018-02-19 Thread Alessandro Benedetti
note of the size by index file extension And attach that to the Jira issue. Whenever someone picks it up, that would definitely help. Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066

Re: solr ltr jar is not able to recognize MultipleAdditiveTreesModel

2018-02-16 Thread Alessandro Benedetti
/feature-requests/144/ [2] https://github.com/ryac/lambdamart-xml-to-json -- Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io On Thu, Feb 15, 2018 at 3:55 PM, Brian Yee <b...@wayfair.com> wrote: > I'm not sure if this will solve you

Re: Index size increases disproportionately to size of added field when indexed=false

2018-02-16 Thread Alessandro Benedetti
field in Solr ? Regards -- Alessandro Benedetti Search Consultant, R Software Engineer, Director www.sease.io On Fri, Feb 16, 2018 at 10:18 AM, Howe, David <david.h...@auspost.com.au> wrote: > > Hi Emir, > > We have no copy field definitions. To keep thin

Re: Multiple context fields in suggester component

2018-02-15 Thread Alessandro Benedetti
You can start from here : org/apache/solr/spelling/suggest/SolrSuggester.java:265 Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

RE: Index size increases disproportionately to size of added field when indexed=false

2018-02-15 Thread Alessandro Benedetti
he issue, you may have found some very edge case, because also enabling all of them you shouldn't incur in such a penalty for just an additional tiny field - ------- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://luc

Re: Index size increases disproportionately to size of added field when indexed=false

2018-02-14 Thread Alessandro Benedetti
rds - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Using Synonyms as a feature with LTR

2018-02-14 Thread Alessandro Benedetti
I see, According to what I know it is not possible to run for the same field different query time analysis. Not sure if anyone was working on that. Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http

Re: Not getting appropriate spell suggestions

2018-02-14 Thread Alessandro Benedetti
Given your schema the stemmer seems a very likely responsible. You need to disable it and re-index. Just commenting it is not going to work if you don't re-index. Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io

Re: Using Synonyms as a feature with LTR

2018-02-14 Thread Alessandro Benedetti
custom parser for which I could supply the file and the field and that would expand the synonyms and return a score. "" I don't get this , can you elaborate ? Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io --

Re: Judging the MoreLikeThis results for relevancy

2018-02-14 Thread Alessandro Benedetti
percentage out of a MLT query. I will work toward that direction for sure, step by step, first I need to have the MLT refactor approved and patched :) [1] https://opensourceconnections.com/blog/2015/10/16/bm25-the-next-generation-of-lucene-relevation/ - --- Alessandro Benede

RE: Index size increases disproportionately to size of added field when indexed=false

2018-02-13 Thread Alessandro Benedetti
t how much space is dedicated to a specific extension) Stored content is in the .fdt files. [1] https://lucene.apache.org/core/6_4_0/core/org/apache/lucene/codecs/lucene62/package-summary.html#file-names - --- Alessandro Benedetti Search Consultant, R Software Engineer, Dire

Re: Multiple context fields in suggester component

2018-02-13 Thread Alessandro Benedetti
] query = new StandardQueryParser(contextFilterQueryAnalyzer).parse(contextFilter, CONTEXTS_FIELD_NAME); - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: facet.method=uif not working in solr cloud?

2018-02-13 Thread Alessandro Benedetti
*Update* : This has been actually already solved by Hoss. https://issues.apache.org/jira/browse/SOLR-11711 and this is the Pull Request : https://github.com/apache/lucene-solr/pull/279/files This should go live with 7.3 Cheers - --- Alessandro Benedetti Search Consultant, R

Re: facet.method=uif not working in solr cloud?

2018-02-13 Thread Alessandro Benedetti
requests the same value for the parameter that you originally set. Can you open a bug Wei ? We can investigate the part where the requests are distributed. Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http

Re: solr spell check index dictionary build failed issue

2018-02-13 Thread Alessandro Benedetti
Shooting in the dark it seems that 2 processes are trying to write the same disk directory. Is this directory shared by different Solr cores or Solr instances ? If you contribute the configuration from the solrconfig we may be able to help. - --- Alessandro Benedetti Search

Re: Index size increases disproportionately to size of added field when indexed=false

2018-02-13 Thread Alessandro Benedetti
... - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Using Synonyms as a feature with LTR

2018-02-12 Thread Alessandro Benedetti
t ( under scoring) . You can play with that and design the feature that best fit your idea. Regards - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Using Context field unable to get autosuggestion for zip code having '-'.

2018-02-08 Thread Alessandro Benedetti
With that configuration you want to auto suggest Office names filtering them by zip code. Not sure why you perform an ngram analysis though. How do you want to filter by zip code ? Exact Search ? Edge ngram ? Regards - --- Alessandro Benedetti Search Consultant, R Software

RE: Relevancy Tuning For Solr With Apache Nutch 2.3

2018-02-08 Thread Alessandro Benedetti
How is this boost stored Solr side ? Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

RE: Relevancy Tuning For Solr With Apache Nutch 2.3

2018-02-08 Thread Alessandro Benedetti
With : boost from nutch's side. If you refer to Index Time boost, this has been deprecated time ago[1] At least from 6.6.0. [1] http://lucene.apache.org/solr/6_6_0/solr-solrj/deprecated-list.html - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director

Re: Spellcheck collations results

2018-02-08 Thread Alessandro Benedetti
in the first 3 collation combinations) We can go more in deep if required, the Spellcheck is quite a complex module :) Cheers - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User

Re: Judging the MoreLikeThis results for relevancy

2018-02-08 Thread Alessandro Benedetti
it is 50% similar, but for your use case it may be a feasible approximation. - --- Alessandro Benedetti Search Consultant, R Software Engineer, Director Sease Ltd. - www.sease.io -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

  1   2   3   4   5   6   7   >