Re: Download a pre-release version? 8.6

2020-05-15 Thread Phill Campbell
Seems like that it would be a good idea to put this in 8.5.2. I was running 3 machines, and the first machine would be running so hot that the response time went from 350ms to 12,000ms. I would kill that machine and the times would come back to normal. I would start it back up and it wasn’t

Re: Solr 8.1.5 Postlogs - Basic Authentication Error

2020-05-15 Thread Joel Bernstein
Right now this is not, but this would be fairly easy to add. I'll see if I can get that in for the next release. Joel Bernstein http://joelsolr.blogspot.com/ On Mon, May 11, 2020 at 5:03 PM Waheed, Imran wrote: > Is there a way to use bin/postllogs with basic authentication on? I am >

Re: Dynamic Stopwords

2020-05-15 Thread Tim Casey
What I have done for this in the past is calculating the expected value of a symbol within a universe. Then calculating the difference between expected value and the actual value at the time you see a symbol. Take the difference and use the most surprising symbols, in rank order from most

Re: Download a pre-release version? 8.6

2020-05-15 Thread Mike Drob
We could theoretically include this in a 8.5.2 version which should be released soon. The change looks minimally risky to backport? On Fri, May 15, 2020 at 3:43 PM Jan Høydahl wrote: > Check Jenkins: >

Re: Dynamic Stopwords

2020-05-15 Thread A Adel
Yes, significant terms have been calculated but they have the anomaly or relative shift nature rather than the high frequency, as suggested also by the blog post. So, it looks that adding a preprocessing step upstream in an additional field makes more sense in this case. The text is intrinsically

Re: Dynamic Stopwords

2020-05-15 Thread Tim Casey
You do not need stop words to do what you need to do, For one thing, stop words requires a segmentation on a phrase-by-phrase basis in some cases. That is, especially in places like Europe, there is a lot of mixed language. (Your milage may vary :). In order to do what you want, you really need

Re: Download a pre-release version? 8.6

2020-05-15 Thread Jan Høydahl
Check Jenkins: https://builds.apache.org/view/L/view/Lucene/job/Solr-Artifacts-8.x/lastSuccessfulBuild/artifact/solr/package/ Jan Høydahl > 15. mai 2020 kl. 22:27 skrev Phill Campbell : > > Is there a way to download a tgz of the binary of a nightly build or similar? > > I have been testing

Download a pre-release version? 8.6

2020-05-15 Thread Phill Campbell
Is there a way to download a tgz of the binary of a nightly build or similar? I have been testing 8.5.1 and ran into the bug with load balancing. https://issues.apache.org/jira/browse/SOLR-14471 It is a deal breaker for me to move forward with

Re: Getting authenticated user inside DocTransformer plugin

2020-05-15 Thread Ishan Chattopadhyaya
This is a problem, indeed. I've opened https://issues.apache.org/jira/browse/SOLR-14491 to address this. On Mon, Feb 3, 2020 at 11:08 PM mosheB wrote: > We are using Solr's kerberos authentication plugin and we are trying to > implement field-level filtering based on the authenticated user and

Re: Dynamic Stopwords

2020-05-15 Thread Walter Underwood
Right. I might use NLP to pull out noun phrases and entities. Entities are essential noun phrases with proper nouns. Put those in a separate field and build the word cloud from that. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On May 15, 2020, at

Re: Dynamic Stopwords

2020-05-15 Thread Doug Turnbull
You may want something more like "significant terms" - terms statistically significant in a document. Possibly not just based on doc freq https://saumitra.me/blog/solr-significant-terms/ On Fri, May 15, 2020 at 2:16 PM A Adel wrote: > Hi Walter, > > Thank you for your explanation, I understand

Re: Dynamic Stopwords

2020-05-15 Thread A Adel
Hi Walter, Thank you for your explanation, I understand the point and agree with you. However, the use case at hand is building a word cloud based on faceting the multilingual text field (very simple) which in case of not using stop words returns many generic terms, articles, etc. If stop words

Re: Solr currency function and asymmetric rates

2020-05-15 Thread Murray Johnston
I didn't see any response to this so I'm going to conclude that this is unexpected behavior and file a Jira ticket. From: Murray Johnston Sent: Tuesday, May 12, 2020 3:39:14 PM To: solr-user@lucene.apache.org Subject: Solr currency function and asymmetric rates

Re: Dynamic Stopwords

2020-05-15 Thread Walter Underwood
Just don’t use stop words. That will give much better relevance and works for all languages. Stop words are an obsolete hack from the days of search engines running on 16 bit CPUs. They save space by throwing away important information. The classic example is “to be or not to be”, which is made

Re: Problems when Upgrading from Solr 7.7.1 to 8.5.0

2020-05-15 Thread Houston Putman
Hello Ludger, I don't have answers to all of your questions, but for #2 (Incorrect Load Balancing) it is a bug that will be fixed in 8.6. You can find more info at SOLR-14471 . - Houston On Mon, May 11, 2020 at 8:16 AM Ludger Steens wrote: >

Re: What is the logical order of applying sorts in SOLR?

2020-05-15 Thread Paras Lehana
As a workaround, can you try field boosting? On Tue, 12 May 2020 at 00:45, Stephen Lewis Bianamara < stephen.bianam...@gmail.com> wrote: > Hi SOLR Community, > > What is the order of operations which SOLR applies to sorting? I've > observed many times and across SOLR versions that a restrictive

Re: Why Solr query time is more in case the searched value frequency is more even if no sorting is applied, for the same number of rows?

2020-05-15 Thread Paras Lehana
Well, in a way, QTime can depend on the total number of terms existing in the core. It would have been better if you had posted sample query and analysis chain. On Mon, 11 May 2020 at 11:45, Anshuman Singh wrote: > Suppose I have two phone numbers P1 and P2 and the number of records with > P1

Re: Unbalanced shard requests

2020-05-15 Thread Michael Gibney
Hi Wei, SOLR-14471 has been merged, so this issue should be fixed in 8.6. Thanks for reporting the problem! Michael On Mon, May 11, 2020 at 7:51 PM Wei wrote: > > Thanks Michael! Yes in each shard I have 10 Tlog replicas, no other type > of replicas, and each Tlog replica is an individual solr

Re: 404 response from Schema API

2020-05-15 Thread Mark H. Wood
On Thu, May 14, 2020 at 02:47:57PM -0600, Shawn Heisey wrote: > On 5/14/2020 1:13 PM, Mark H. Wood wrote: > > On Fri, Apr 17, 2020 at 10:11:40AM -0600, Shawn Heisey wrote: > >> On 4/16/2020 10:07 AM, Mark H. Wood wrote: > >>> I need to ask Solr 4.10 for the name of the unique key field of a > >>>

Re: Performance issue in Query execution in Solr 8.3.0 and 8.5.1

2020-05-15 Thread vishal patel
I have result of query debug for both version so It will helpful. Solr 6.1 query debug URL https://drive.google.com/file/d/1ixqpgAXsVLDZA-aUobJLrMOOefZX2NL1/view Solr 8.3.1 query debug URL https://drive.google.com/file/d/1MOKVE-iPZFuzRnDZhY9V6OsAKFT38U5r/view I indexed same data in both version.

FW: velocity reponse writer javascript execution problem

2020-05-15 Thread Serkan KAZANCI
Hi, Found the solution myself. The cause of the problem is SOLR-13982 issue. The new Content-Security-Policy directives added to response headers thru jetty.xml file, restricts java script codes to be executed at html files generated by velocity response writer. Content-Security-Policy