RE: Programmatic Basic Auth on CloudSolrClient

2021-03-05 Thread Subhajit Das
; Sent: 05 March 2021 04:23 AM To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> Subject: Re: Programmatic Basic Auth on CloudSolrClient Ah, right, now I remember that something like this was possible with the "http1" version of the clients, which is why I created t

Re: Investigating Seeming Deadlock

2021-03-05 Thread Mike Drob
elapsed=11.11s tid=0x0100 nid=0x in > Object.wait() > [0x1000] > java.lang.Thread.State: WAITING (on object monitor) > at java.lang.Object.wait(java.base@11.0.7/Native Method) > - waiting on > at j

Re: What controls field cache size and eviction rates?

2021-03-05 Thread Stephen Lewis Bianamara
Should say -- Can anyone confirm if it's right *still*, since the article is 10 years old :) On Fri, Mar 5, 2021 at 10:36 AM Stephen Lewis Bianamara < stephen.bianam...@gmail.com> wrote: > Hi SOLR Community, > > Just following up here with an update. I found this article which goes > into depth o

Re: What controls field cache size and eviction rates?

2021-03-05 Thread Stephen Lewis Bianamara
Hi SOLR Community, Just following up here with an update. I found this article which goes into depth on the field cache though stops short of discussing how it handles eviction. Can anyone confirm if this info is right? https://lucidworks.com/post/scaling-lucene-and-solr/ Also, can anyone speak

Re: Caffeine Cache Metrics Broken?

2021-03-05 Thread Stephen Lewis Bianamara
Thanks Shawn. Something seems different between the two because Caffeine Cache is having much higher volume per hour than our previous implementation was. So I guess it is then more likely that it is something actually expected due to a change in what is getting kept/warmed, so I'll look into this

Re: org.apache.solr.common.SolrException: this IndexWriter is closed

2021-03-05 Thread Dominique Bejean
Hi, You are using RAMDirectoryFactory without enough RAM ? regards Dominique Le ven. 5 mars 2021 à 16:18, 李世明 a écrit : > Hello: > > Have you encountered the following exception that will cause the index to > not be written? But you can query > Version:8.7.0 > > org.apache.solr.common.SolrExcept

Re: new tlog files are not created per commit but adding into latest existing tlog file after replica reload

2021-03-04 Thread Michael Hu
Hi experts: After I sent out previous email, I issued commit on that replica core and observed the same "ClosedChannelException", please refer to below under "issuing core commit" section Then I issued a core reload, and I see the timestamp of the latest tlog file changed, please refer to "fil

Re: Programmatic Basic Auth on CloudSolrClient

2021-03-04 Thread Tomás Fernández Löbbe
Ah, right, now I remember that something like this was possible with the "http1" version of the clients, which is why I created the Jira issues for the http2 ones. Maybe you can even skip the "LBHttpSolrClient" step, I believe you can just pass the HttpClient to the CloudSolrClient? you will have t

Re: Programmatic Basic Auth on CloudSolrClient

2021-03-04 Thread Mark H. Wood
On Wed, Mar 03, 2021 at 10:34:50AM -0800, Tomás Fernández Löbbe wrote: > As far as I know the current OOTB options are system properties or > per-request (which would allow you to use different per collection, but > probably not ideal if you do different types of requests from different > parts of

Re: Get first value in a multivalued field

2021-03-04 Thread Walter Underwood
You can copy the field to another field, then use the FirstFieldValueUpdateProcessorFactory to limit that field to the first value. At least, that seems to be what that URP does. I have not used it. https://solr.apache.org/guide/8_8/update-request-processors.html wunder Walter Underwood wun...@

Re: wordpress anyone?

2021-03-04 Thread dmitri maziuk
On 2021-03-03 10:24 PM, Gora Mohanty wrote: ... there does seem to be another plugin that is open-source,and hosted on Github: https://wordpress.org/plugins/solr-power/ I saw it, they lost me at "you'll need access to a functioning Solr 3.6 instance for the plugin to work as expected. This p

Re: Potential Slow searching for unified highlighting on Solr 8.8.0/8.8.1

2021-03-04 Thread Ere Maijala
attachments from all devices. -Original Message- From: Ere Maijala Sent: 01 March 2021 12:53 To: solr-user@lucene.apache.org Subject: Re: Potential Slow searching for unified highlighting on Solr 8.8.0/8.8.1 EXTERNAL EMAIL - Be cautious of all links and attachments. Hi, Whoa, thanks f

Re: wordpress anyone?

2021-03-03 Thread Gora Mohanty
On Thu, 4 Mar 2021 at 01:50, dmitri maziuk wrote: > Hi all, > > does anyone use Solr with WP? It seems there is one for-pay-only > offering and a few defunct projects from a decade ago... a great web > search engine is particularly useful if it can actually be used in a > client. > > So has anyon

RE: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Subhajit Das
Thanks. This would be very helpful. From: Tomás Fernández Löbbe<mailto:tomasflo...@gmail.com> Sent: 04 March 2021 12:32 AM To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> Subject: Re: Programmatic Basic Auth on CloudSolrClient Maybe something like this (I omit

Re: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Tomás Fernández Löbbe
configure the client > with your workaround? > > From: Tomás Fernández Löbbe<mailto:tomasflo...@gmail.com> > Sent: 04 March 2021 12:05 AM > To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> > Subject: Re: Programmatic Basic Auth on CloudSolrClient &g

RE: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Subhajit Das
Hi Thomas, Thanks. Can you please also share a sample of code to configure the client with your workaround? From: Tomás Fernández Löbbe<mailto:tomasflo...@gmail.com> Sent: 04 March 2021 12:05 AM To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> Subject: Re: Progra

Re: NPE in QueryComponent.mergeIds when using timeAllowed and sorting SOLR 8.7

2021-03-03 Thread Tomás Fernández Löbbe
Patch looks good to me. Since it's a bugfix it can be committed to 8_8 branch and released on the next bugfix release, though I don't think it should trigger one. In the meantime, if you can patch your environment and confirm that it fixes your problem, that's a good comment to leave in SOLR-14758.

Re: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Tomás Fernández Löbbe
As far as I know the current OOTB options are system properties or per-request (which would allow you to use different per collection, but probably not ideal if you do different types of requests from different parts of your code). A workaround (which I've used in the past) is to have a custom clie

RE: Filter by sibling ?

2021-03-02 Thread Manoj Mokashi
ied the exact expression above -Original Message- From: Manoj Mokashi Sent: Wednesday, March 3, 2021 9:56 AM To: solr-user@lucene.apache.org Subject: RE: Filter by sibling ? Ok. Will check. thanks ! -Original Message- From: Joel Bernstein Sent: Tuesday, March 2, 2021 8:48 PM To: so

RE: Filter by sibling ?

2021-03-02 Thread Manoj Mokashi
Ok. Will check. thanks ! -Original Message- From: Joel Bernstein Sent: Tuesday, March 2, 2021 8:48 PM To: solr-user@lucene.apache.org Subject: Re: Filter by sibling ? Solr's graph expressions can do this type of thing. It allows you to walk the relationships in a graph with fi

Re: Caffeine Cache Metrics Broken?

2021-03-02 Thread Shawn Heisey
On 3/2/2021 3:47 PM, Stephen Lewis Bianamara wrote: I'm investigating a weird behavior I've observed in the admin page for caffeine cache metrics. It looks to me like on the older caches, warm-up queries were not counted toward hit/miss ratios, which of course makes sense, but on Caffeine cache i

RE: Idle timeout expired and Early Client Disconnect errors

2021-03-02 Thread ufuk yılmaz
:19 To: solr-user@lucene.apache.org Subject: Re: Idle timeout expired and Early Client Disconnect errors Also the parallel function builds hash partitioning filters that could lead to timeouts if they take too long to build. Try the query without the parallel function if you're still ge

RE: Default conjunction behaving differently after field type change

2021-03-02 Thread ufuk yılmaz
I changed the tokenizer class from KeywordTokenizerFactory to WhitespaceTokenizerFactory for the query analyzer using the Schema API, it seems to have solved the problem. Sent from Mail for Windows 10 From: ufuk yılmaz Sent: 02 March 2021 20:47 To: solr-user@lucene.apache.org Subject: Default c

RE: Schema API specifying different analysers for query and index

2021-03-02 Thread ufuk yılmaz
It worked! Thanks Mr. Rafalovitch. I just removed “type”: “query”.. keys from the json, and used indexAnalyzer and queryAnalyzer in place of analyzer json node. Sent from Mail for Windows 10 From: Alexandre Rafalovitch Sent: 03 March 2021 01:19 To: solr-user Subject: Re: Schema API specifying

Re: Schema API specifying different analysers for query and index

2021-03-02 Thread Alexandre Rafalovitch
RefGuide gives this for Adding, I would hope the Replace would be similar: curl -X POST -H 'Content-type:application/json' --data-binary '{ "add-field-type":{ "name":"myNewTextField", "class":"solr.TextField", "indexAnalyzer":{ "tokenizer":{ "class":"solr.PathHi

Re: Location of Solr 9 Branch

2021-03-02 Thread Houston Putman
Solr 9 is an unreleased major version, so it lives in *master*. Once the release process starts for Solr 9, it will live at *branch_9x*, and *master* will host Solr 10. On Tue, Mar 2, 2021 at 3:49 PM Phill Campbell wrote: > I have just begun investigating Solr source code. Where is the branch fo

Re: Filter by sibling ?

2021-03-02 Thread Joel Bernstein
Solr's graph expressions can do this type of thing. It allows you to walk the relationships in a graph with filters: https://lucene.apache.org/solr/guide/8_6/graph-traversal.html Joel Bernstein http://joelsolr.blogspot.com/ On Tue, Mar 2, 2021 at 9:00 AM Manoj Mokashi wrote: > Hi, > > If I

Re: Partial update bug on solr 8.8.0

2021-03-02 Thread Mike Drob
This looks like a bug that is already fixed but not yet released in 8.9 https://issues.apache.org/jira/plugins/servlet/mobile#issue/SOLR-13034 On Tue, Mar 2, 2021 at 6:27 AM Mohsen Saboorian wrote: > Any idea about this post? > https://stackoverflow.com/q/66335803/141438 > > Regards. >

Re: Multiword synonyms and term wildcards/substring matching

2021-03-02 Thread Martin Graney
e been trying to implement multi word synonyms using `sow=false` > into > > a pre-existing system that applied pre-processing to the phrase to apply > > wildcards around the terms, i.e. `bread stick` => `*bread* *stick*`. > > > > I got the synonyms expansion working pe

Re: Multiword synonyms and term wildcards/substring matching

2021-03-02 Thread Alexandre Rafalovitch
ssing to the phrase to apply > wildcards around the terms, i.e. `bread stick` => `*bread* *stick*`. > > I got the synonyms expansion working perfectly, after discovering the > `preserveOriginal` filter param, but then I needed to re-implement the > existing wildcard behaviour. > I

Re: Solr wiki page update

2021-03-02 Thread Jan Høydahl
Vincent, I added you as editor, please try editing that page again. Jan > 11. feb. 2021 kl. 17:43 skrev Vincent Brehin : > > Hi community members, > I work for Adelean https://www.adelean.com/ , we are offering services > around everything Search related, and especially Solr consulting and > s

Re: Zookeeper 3.4.5 with Solr 8.8.0

2021-03-01 Thread Shawn Heisey
On 3/1/2021 9:45 PM, Subhajit Das wrote: That is not possible at this time. Will it be ok, if remote the zookeeper dependencies (jars) from solr and replace it with 3.5.5 jars? Thanks in advance. Maybe. But I cannot say for sure. I know that when we upgraded to ZK 3.5, some fairly significa

RE: Zookeeper 3.4.5 with Solr 8.8.0

2021-03-01 Thread Subhajit Das
...@zookeeper.apache.org Subject: Re: Zookeeper 3.4.5 with Solr 8.8.0 On 3/1/2021 6:51 AM, Subhajit Das wrote: > I noticed, that Solr 8.8.0 uses Zookeeper 3.6.2 client, while Solr 6.3.0 uses > Zookeeper 3.4.6 client. Is this a client bug or mismatch issue? > If so, how to fix this

Re: NPE in QueryComponent.mergeIds when using timeAllowed and sorting SOLR 8.7

2021-03-01 Thread Phill Campbell
Anyone? > On Feb 24, 2021, at 7:47 AM, Phill Campbell > wrote: > > Last week I switched to Solr 8.7 from a “special” build of Solr 6.6 > > The system has a timeout set for querying. I am now seeing this bug. > > https://issues.apache.org/jira/browse/SOLR-14758 >

Re: Idle timeout expired and Early Client Disconnect errors

2021-03-01 Thread Joel Bernstein
ich took more than 1 hour without any timeouts and >> finished successfully. >> >> Sent from Mail for Windows 10 >> >> From: Joel Bernstein >> Sent: 01 March 2021 23:03 >> To: solr-user@lucene.apache.org >> Subject: Re: Idle timeout expired and Early

Re: Idle timeout expired and Early Client Disconnect errors

2021-03-01 Thread Joel Bernstein
able solution? > > Btw how long is the default hard-coded timeout value? Because yesterday I > ran another query which took more than 1 hour without any timeouts and > finished successfully. > > Sent from Mail for Windows 10 > > From: Joel Bernstein > Sent: 01 March 2021 23

RE: Idle timeout expired and Early Client Disconnect errors

2021-03-01 Thread ufuk yılmaz
from Mail for Windows 10 From: Joel Bernstein Sent: 01 March 2021 23:03 To: solr-user@lucene.apache.org Subject: Re: Idle timeout expired and Early Client Disconnect errors Oh wait, I misread your email. The idle timeout issue is configurable in: https://issues.apache.org/jira/browse/SOLR-14672

Re: Idle timeout expired and Early Client Disconnect errors

2021-03-01 Thread Joel Bernstein
Oh wait, I misread your email. The idle timeout issue is configurable in: https://issues.apache.org/jira/browse/SOLR-14672 This unfortunately missed the 8.8 release and will be 8.9. This i Joel Bernstein http://joelsolr.blogspot.com/ On Mon, Mar 1, 2021 at 2:56 PM Joel Bernstein wrote:

Re: Idle timeout expired and Early Client Disconnect errors

2021-03-01 Thread Joel Bernstein
What version are you using? Solr 8.7 has changes that caused these errors to hit the logs. These used to be suppressed. This has been fixed in Solr 9.0 but it has not been back ported to Solr 8.x. The errors are actually normal operational occurrences when doing joins so should be suppressed in t

Re: Zookeeper 3.4.5 with Solr 8.8.0

2021-03-01 Thread Shawn Heisey
On 3/1/2021 6:51 AM, Subhajit Das wrote: I noticed, that Solr 8.8.0 uses Zookeeper 3.6.2 client, while Solr 6.3.0 uses Zookeeper 3.4.6 client. Is this a client bug or mismatch issue? If so, how to fix this? The ZK project guarantees that each minor version (X.Y.Z, where Y is the same) will wo

RE: How to read tlog

2021-03-01 Thread Subhajit Das
Thanks for reply. Will try. From: Gael Jourdan-Weil<mailto:gael.jourdan-w...@kelkoogroup.com> Sent: 01 March 2021 05:48 PM To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> Subject: RE: How to read tlog Hello, You can just use "cat" or "tail"

RE: Potential Slow searching for unified highlighting on Solr 8.8.0/8.8.1

2021-03-01 Thread Flowerday, Matthew J
the e-mail and its attachments from all devices. -Original Message- From: Ere Maijala Sent: 01 March 2021 12:53 To: solr-user@lucene.apache.org Subject: Re: Potential Slow searching for unified highlighting on Solr 8.8.0/8.8.1 EXTERNAL EMAIL - Be cautious of all links and attach

Re: Potential Slow searching for unified highlighting on Solr 8.8.0/8.8.1

2021-03-01 Thread Ere Maijala
Hi, Whoa, thanks for the heads-up! You may just have saved me from a whole lot of trouble. Did you file a JIRA ticket already? Thanks, Ere Flowerday, Matthew J kirjoitti 1.3.2021 klo 14.00: Hi There I just came across a situation where a unified highlighting search under solr 8.8.0/8.8.1 c

RE: How to read tlog

2021-03-01 Thread Gael Jourdan-Weil
Hello, You can just use "cat" or "tail", even though the tlog is not a text file, its content can mostly be read using these commands. You will have one document per line and should be able to see the fields content. I don't know is there is a Solr command which would give better display though

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-27 Thread Joel Bernstein
> Da: Yonik Seeley > Inviato: domenica 21 febbraio 2021 05:51 > A: solr-user@lucene.apache.org > Cc: Lucene Dev > Oggetto: Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl! > > [CAUTION: EXTERNAL SENDER] > [Please check correspondence between Sender Displ

Re: [ANNOUNCE] Apache Solr 8.8.1 released

2021-02-27 Thread Timothy Potter
Awesome! Thank you David and Tobias ;-) On Sat, Feb 27, 2021 at 12:21 PM David Smiley wrote: > > The corresponding docker image has been released as well: > https://hub.docker.com/_/solr > (credit to Tobias Kässmann for helping) > > ~ David Smiley > Apache Lucene/Solr Search Developer > http://ww

Re: [ANNOUNCE] Apache Solr 8.8.1 released

2021-02-27 Thread David Smiley
The corresponding docker image has been released as well: https://hub.docker.com/_/solr (credit to Tobias Kässmann for helping) ~ David Smiley Apache Lucene/Solr Search Developer http://www.linkedin.com/in/davidwsmiley On Tue, Feb 23, 2021 at 10:39 AM Timothy Potter wrote: > The Lucene PMC is

RE: Select streaming expression, add a field to every tuple, replaceor raw not working

2021-02-26 Thread ufuk yılmaz
I tried to debug this to the best of my ability, and it seems the correct name for the “raw” evaluator is “val”. Copied from StreamContext: val=class org.apache.solr.client.solrj.io.eval.RawValueEvaluator I think there’s a small error in stream evaluator documentation of 8.4 https://lucene.apa

Re: Add plugins to Solr docker container

2021-02-25 Thread Prabhatika Vij
Hey Anil, If you want to execute anything before Solr starts, you can do the following: - mkdir initdb; echo "echo hi" > initdb/hi.sh docker run -v $PWD/initdb:/docker-entrypoint-initdb.d solr Using the above, you can have any script executed before Solr starts. Source: https://github.com/docker

RE: Handling Locales in Solr

2021-02-25 Thread Krönert Florian
Hi Markus, thank you a lot for your response, that helps us very much. We will try out the approach of separating the cores by topic only. Kind Regards, Florian -Original Message- From: Markus Jelsma Sent: Mittwoch, 24. Februar 2021 12:27 To: solr-user@lucene.apache.org Subject: Re

Re: Solr Cloud Autoscaling Basics

2021-02-24 Thread yasoobhaider
Any pointers here would be appreciated :) -- Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Dynamic starting or stoping of zookeepers in a cluster

2021-02-24 Thread Shawn Heisey
On 2/24/2021 9:04 AM, DAVID MARTIN NIETO wrote: If I'm not mistaken the number of zookeepers must be odd. Having 3 zoos on 3 different machines, if we temporarily lost one of the three machines, we would have only two running and it would be an even number.Would it be advisable in this case to

RE: Dynamic starting or stoping of zookeepers in a cluster

2021-02-24 Thread DAVID MARTIN NIETO
Para: solr-user@lucene.apache.org Asunto: Re: Dynamic starting or stoping of zookeepers in a cluster This is solid information. *How about the application, which uses SOLR/Zookeeper?* Do we have to follow this guidance, to make the application ZK config aware: https://zookeeper.apache

Re: Overriding Sort and boosting some docs to the top

2021-02-24 Thread Mark Robinson
Thanks Marcus for your response. Best, Mark On Wed, Feb 24, 2021 at 4:50 PM Markus Jelsma wrote: > I would stick to the query elevation component, it is pretty fast and > easier to handle/configure elevation IDs, instead of using function queries > for it. We have customers that set a dozen of

Re: Handling Locales in Solr

2021-02-24 Thread Markus Jelsma
Hello, We put all our customers in the same core/collection because of this, it is not practical to manage hundreds of cores, including their small overhead. Although it can be advantageous when it comes to relevance tuning, no skewed statistics because of other customers. In your case, an unused

Re: Overriding Sort and boosting some docs to the top

2021-02-24 Thread Markus Jelsma
I would stick to the query elevation component, it is pretty fast and easier to handle/configure elevation IDs, instead of using function queries for it. We have customers that set a dozen of documents for a given query and it works just fine. I also do not expect the function query variant to be

Re: Overriding Sort and boosting some docs to the top

2021-02-24 Thread Mark Robinson
Thanks for the reply Markus! I did try it. My question specifically was (repasting here):- Which is more recommended/ performant? Note:- Assume that I have hundreds of ids to boost like this. Is there a difference to the answer if docs to be boosted after the sort is less? Thanks! Mark On Wed,

Re: Overriding Sort and boosting some docs to the top

2021-02-24 Thread Markus Jelsma
Hello, You are probably looking for the elevator component, check it out: https://lucene.apache.org/solr/guide/8_8/the-query-elevation-component.html Regards, Markus Op wo 24 feb. 2021 om 11:59 schreef Mark Robinson : > Hi, > > I wanted to sort and then boost some docs to the top and these docs

Re: Caffeine Cache and Filter Cache in 8.3

2021-02-23 Thread Stephen Lewis Bianamara
Thanks Shawn! This is great clarity, really appreciate it. I'll proceed to performance testing of the Caffeine Cache 🎉 Is there a Jira issue needed for tracking these two documentation updates ( here and here

Re: R: defragmentation can improve performance on SATA class 10 disk ~10000 rpm ?

2021-02-23 Thread dmitri maziuk
On 2021-02-23 1:53 AM, Danilo Tomasoni wrote: Thank you all for the suggestions, The OS is not windows, it's centos, a colleague thinks that even on linux defragmenting can improve performance about 2X because it keeps the data contiguous on disk. You may want to check the filesystem you're u

Re: Is 8.8.x going be stabilized and finalized?

2021-02-22 Thread S G
; Subhajit > > From: Shawn Heisey<mailto:apa...@elyograg.org> > Sent: 17 February 2021 09:33 AM > To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> > Subject: Re: Is 8.8.x going be stabilized and finalized? > > On 2/16/2021 7:57 PM, Subhajit

Re: Caffeine Cache and Filter Cache in 8.3

2021-02-22 Thread Shawn Heisey
On 2/22/2021 1:50 PM, Stephen Lewis Bianamara wrote: (a) At what version did the caffeine cache reach production stability? (b) Is the caffeine cache, and really all implementations, able to be used on any cache, or are the restrictions about which cache implementations may be used for which c

Re: defragmentation can improve performance on SATA class 10 disk ~10000 rpm ?

2021-02-22 Thread Walter Underwood
True, but Windows does cache files. It has been a couple of decades since I ran search on Windows, but Ultraseek got large gains from setting some sort of system property to make it act like a file server and give file caching equal priority with program caching. wunder Walter Underwood wun...@

Re: defragmentation can improve performance on SATA class 10 disk ~10000 rpm ?

2021-02-22 Thread dmitri maziuk
On 2021-02-22 11:18 AM, Shawn Heisey wrote: The OS automatically uses unallocated memory to cache data on the disk.  Because memory is far faster than any disk, even SSD, it performs better. Depends on the os, from "defragmenting solrdata folder" I suspect the OP is on windows whose filesyst

Re: defragmentation can improve performance on SATA class 10 disk ~10000 rpm ?

2021-02-22 Thread Shawn Heisey
On 2/22/2021 12:52 AM, Danilo Tomasoni wrote: we are running a solr instance with around 41 MLN documents on a SATA class 10 disk with around 10.000 rpm. We are experiencing very slow query responses (in the order of hours..) with an average of 205 segments. We made a test with a normal pc and

Re: defragmentation can improve performance on SATA class 10 disk ~10000 rpm ?

2021-02-22 Thread Walter Underwood
A forced merge might improve speed 20%. Going from spinning disk to SSD will improve speed 20X or more. Don’t waste your time even thinking about forced merges. You need to get SSDs. The even bigger speedup is to get enough RAM that the OS can keep the Solr index files in file system buffers. Ch

Re: defragmentation can improve performance on SATA class 10 disk ~10000 rpm ?

2021-02-22 Thread dmitri maziuk
On 2021-02-22 1:52 AM, Danilo Tomasoni wrote: Hello all, we are running a solr instance with around 41 MLN documents on a SATA class 10 disk with around 10.000 rpm. We are experiencing very slow query responses (in the order of hours..) with an average of 205 segments. We made a test with a nor

Re: defragmentation can improve performance on SATA class 10 disk ~10000 rpm ?

2021-02-22 Thread Dario Rigolin
Hi Danilo, following my experience now SSD or RAM Disk is the only way to speed up queries. It depends on your storage occupation of your 41M docs. If you don't have Enterprise SSD you can add consumer SSD as a fast cache (linux caching modules "flashcache / bcache" are able to use cheap SSD as a d

Re: HTML sample.html not indexing in Solr 8.8

2021-02-21 Thread Shawn Heisey
On 2/21/2021 3:07 PM, cratervoid wrote: Thanks Shawn, I copied the solrconfig.xml file from the gettingstarted example on 7.7.3 installation to the 8.8.0 installation, restarted the server and it now works. Comparing the two files it looks like as you said this section was left out of the _defaul

Re: HTML sample.html not indexing in Solr 8.8

2021-02-21 Thread cratervoid
Thanks Shawn, I copied the solrconfig.xml file from the gettingstarted example on 7.7.3 installation to the 8.8.0 installation, restarted the server and it now works. Comparing the two files it looks like as you said this section was left out of the _default/solrconfig.xml file in version 8.8.0:

Re: HTML sample.html not indexing in Solr 8.8

2021-02-21 Thread cratervoid
Thanks Alex. I copied the solrconfig.xml over from 7.7.3 to the 8.8.0 conf folder and restarted the server. Now indexing works without erroring on sample.html. There is 1K difference between the 2 files so I'll diff them to see what was left out of the 8.8 version. On Sat, Feb 20, 2021 at 4:27 P

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-20 Thread Yonik Seeley
Congrats Jan! Go Solr! -Yonik On Thu, Feb 18, 2021 at 1:56 PM Anshum Gupta wrote: > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the position of the Solr PMC Chair and Vice > President. This decision was approved by t

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-20 Thread Shalin Shekhar Mangar
Congratulations, Jan and thank you! Thanks, Anshum for all your work as chair. On Fri, Feb 19, 2021 at 12:26 AM Anshum Gupta wrote: > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the position of the Solr PMC Chair and

Re: HTML sample.html not indexing in Solr 8.8

2021-02-20 Thread Alexandre Rafalovitch
Most likely issue is that your core configuration (solrconfig.xml) does not have the request handler for that. The same config may have had that in 7.x, but changed since. More details: https://lucene.apache.org/solr/guide/8_8/uploading-data-with-solr-cell-using-apache-tika.html Regards, Alex

Re: HTML sample.html not indexing in Solr 8.8

2021-02-20 Thread Shawn Heisey
On 2/20/2021 3:58 PM, cratervoid wrote: SimplePostTool: WARNING: Solr returned an error #404 (Not Found) for url: http://localhost:8983/solr/gettingstarted/update/extract?resource.name=C%3A%5Csolr-8.8.0%5Cexample%5Cexampledocs%5Csample.html&literal.id=C%3A%5Csolr-8.8.0%5Cexample%5Cexampledocs%5Cs

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-20 Thread Lucky Sharma
Congratulations Jan Regards, Lucky Sharma On Sat, 20 Feb 2021 at 8:07 PM, Karl Wright wrote: > Congratulations! > Karl > > On Sat, Feb 20, 2021 at 6:28 AM Uwe Schindler wrote: > >> Congrats Jan! >> >> >> >> Uwe >> >> >> >> - >> >> Uwe Schindler >> >> Achterdiek 19, D-28357 Bremen >>

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-20 Thread Karl Wright
Congratulations! Karl On Sat, Feb 20, 2021 at 6:28 AM Uwe Schindler wrote: > Congrats Jan! > > > > Uwe > > > > - > > Uwe Schindler > > Achterdiek 19, D-28357 Bremen > > https://www.thetaphi.de > > eMail: u...@thetaphi.de > > > > *From:* Anshum Gupta > *Sent:* Thursday, February 18, 2021 7:5

RE: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-20 Thread Uwe Schindler
Congrats Jan! Uwe - Uwe Schindler Achterdiek 19, D-28357 Bremen https://www.thetaphi.de eMail: u...@thetaphi.de From: Anshum Gupta Sent: Thursday, February 18, 2021 7:55 PM To: Lucene Dev ; solr-user@lucene.apache.org Subject: Congratulations to the

RE: nodes() stream to infinite depth

2021-02-20 Thread Subhajit Das
r-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> Subject: Re: nodes() stream to infinite depth You could see if this meets you needs: https://lucene.apache.org/solr/guide/8_8/stream-source-reference.html#shortestpath Joel Bernstein http://joelsolr.blogspot.com/ On Fri, Feb 19,

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Ritvik Sharma
Congratulations Jan ! On Sat, 20 Feb 2021 at 5:30 AM, Jan Høydahl wrote: > Thanks everyone! > > It's an exciting season for Solr, and I look forward to serving the > project as chair. > Also thanks to Anshum for an excellent job last term for Lucene. > > Jan > > > 18. feb. 2021 kl. 19:55 skrev A

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Jan Høydahl
Thanks everyone! It's an exciting season for Solr, and I look forward to serving the project as chair. Also thanks to Anshum for an excellent job last term for Lucene. Jan > 18. feb. 2021 kl. 19:55 skrev Anshum Gupta : > > Hi everyone, > > I’d like to inform everyone that the newly formed Apa

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Aroop Ganguly
Congrats Jan and Best Wishes! Also many thanks to Anshum for all his efforts in the last term! Also a belated shout out to Cassandra and other chairs in the past for their much appreciated efforts for the community ! Regards Aroop > On Feb 18, 2021, at 10:55 AM, Anshum Gupta wrote: > > Hi ev

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Jason Gerlowski
Congrats! On Fri, Feb 19, 2021 at 10:06 AM Divye wrote: > > Congratulations Jan! > > Regards, > Divye > > On Fri, 19 Feb, 2021, 00:26 Anshum Gupta, wrote: > > > Hi everyone, > > > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > > and elected Jan Høydahl for the po

Re: nodes() stream to infinite depth

2021-02-19 Thread Joel Bernstein
simulate the same? > > > From: Joel Bernstein<mailto:joels...@gmail.com> > Sent: 20 February 2021 01:13 AM > To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> > Subject: Re: nodes() stream to infinite depth > > Nodes is designed for a stepwise

RE: nodes() stream to infinite depth

2021-02-19 Thread Subhajit Das
Hi Joel, Thanks for response. But, is there any way to simulate the same? From: Joel Bernstein<mailto:joels...@gmail.com> Sent: 20 February 2021 01:13 AM To: solr-user@lucene.apache.org<mailto:solr-user@lucene.apache.org> Subject: Re: nodes() stream to infinite depth Nodes is de

Re: nodes() stream to infinite depth

2021-02-19 Thread Joel Bernstein
Nodes is designed for a stepwise graph walk. It doesn't do a full traversal. Joel Bernstein http://joelsolr.blogspot.com/ On Fri, Feb 19, 2021 at 4:47 AM Subhajit Das wrote: > > Hi, > > “{!graph ...}” goes to infinite depth by default. But “nodes()” stream > does not go to infinite depth. > >

Re: Dynamic starting or stoping of zookeepers in a cluster

2021-02-19 Thread Joe Lerner
This is solid information. *How about the application, which uses SOLR/Zookeeper?* Do we have to follow this guidance, to make the application ZK config aware: https://zookeeper.apache.org/doc/r3.5.5/zookeeperReconfig.html#ch_reconfig_rebalancing

Re: Atomic Update (nested), Unified Highlighter and Lazy Field Loading => Invalid Index

2021-02-19 Thread David Smiley
ighlighting. > > > Regarding the existing bug, I think there might be an additional issue > > > here because it happens only when id field contains an underscore > (didn't > > > check for other special characters). > > > Currently I have no other choice but to

Re: Elevation in dataDir in Solr Cloud

2021-02-19 Thread Mónica Marrero
Thank you! I just filed the bug in Jira: https://issues.apache.org/jira/browse/SOLR-15170 About the workaround you mentioned, we ran a quick test on one server and it apparently worked, but we did not check it properly in a cluster (we decided that it is better not to go with this in production an

Re: Atomic Update (nested), Unified Highlighter and Lazy Field Loading => Invalid Index

2021-02-19 Thread Gus Heck
issue > > here because it happens only when id field contains an underscore (didn't > > check for other special characters). > > Currently I have no other choice but to use enableLazyFieldLoading=false. > > I hope it wouldn't have a significant performance impact. &

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Divye
Congratulations Jan! Regards, Divye On Fri, 19 Feb, 2021, 00:26 Anshum Gupta, wrote: > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the position of the Solr PMC Chair and Vice > President. This decision was approved b

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Gus Heck
Congratulations :) On Fri, Feb 19, 2021 at 6:51 AM Juan Eduardo Hernandez < juaneduard...@gmail.com> wrote: > Congratulations Jan!! > > El vie, 19 feb 2021 a las 5:56, Atita Arora () > escribió: > > > Congratulations Jan! > > > > On Fri, Feb 19, 2021 at 9:41 AM Dawid Weiss > wrote: > > > > > Con

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Juan Eduardo Hernandez
Congratulations Jan!! El vie, 19 feb 2021 a las 5:56, Atita Arora () escribió: > Congratulations Jan! > > On Fri, Feb 19, 2021 at 9:41 AM Dawid Weiss wrote: > > > Congratulations, Jan! > > > > On Thu, Feb 18, 2021 at 7:56 PM Anshum Gupta > > wrote: > > > > > > Hi everyone, > > > > > > I’d like

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Atita Arora
Congratulations Jan! On Fri, Feb 19, 2021 at 9:41 AM Dawid Weiss wrote: > Congratulations, Jan! > > On Thu, Feb 18, 2021 at 7:56 PM Anshum Gupta > wrote: > > > > Hi everyone, > > > > I’d like to inform everyone that the newly formed Apache Solr PMC > nominated and elected Jan Høydahl for the po

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-19 Thread Dawid Weiss
Congratulations, Jan! On Thu, Feb 18, 2021 at 7:56 PM Anshum Gupta wrote: > > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the position of the Solr PMC Chair and Vice > President. This decision was approved by the boa

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-18 Thread David Smiley
Congratulations Jan! ~ David Smiley Apache Lucene/Solr Search Developer http://www.linkedin.com/in/davidwsmiley On Thu, Feb 18, 2021 at 1:56 PM Anshum Gupta wrote: > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the p

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-18 Thread Michael McCandless
Congratulations and thank you, Jan! It is so exciting that Solr is now a TLP! Mike McCandless http://blog.mikemccandless.com On Thu, Feb 18, 2021 at 1:56 PM Anshum Gupta wrote: > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC > nominated and elected Jan Hø

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-18 Thread Steve Rowe
Congratulations Jan! -- Steve > On Feb 18, 2021, at 1:55 PM, Anshum Gupta wrote: > > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the position of the Solr PMC Chair and Vice > President. This decision was approved by

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-18 Thread Michael Sokolov
Yes, Congratulations and a big thank you Jan! On Thu, Feb 18, 2021 at 1:56 PM Anshum Gupta wrote: > > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the position of the Solr PMC Chair and Vice > President. This decision

Re: Dynamic starting or stoping of zookeepers in a cluster

2021-02-18 Thread Shawn Heisey
On 2/18/2021 8:20 AM, DAVID MARTIN NIETO wrote: We've a solr cluster with 4 solr servers and 5 zookeepers in HA mode. We've tested about if our cluster can mantain the service with only the half of the cluster, in case of disaster os similar, and we've a problem with the zookepers config and it

  1   2   3   4   5   6   7   8   9   10   >