Need some help on solr versions (LTS vs stable)

2019-11-05 Thread suyog joshi
Hi Team, Can you please guide us on below queries for solr versions ? 1. Are there any major differences (for security, platform stability etc) between current LTS and Stable Solr version ? 2. How long a version remains in LTS before becoming EoL ? 3. How frequently LTS version gets changed ? 3.

Re: When search term has two stopwords ('and' and 'a') together, it doesn't work

2019-11-05 Thread Paras Lehana
Hi Walter, The solr.StopFilter removes all tokens that are stopwords. Those words will > not be in the index, so they can never match a query. I think the OP's concern is different results when adding a stopword. I think he's using the filter factory correctly - the query chain includes the filt

Re: Questions about corrupted Segments files.

2019-11-05 Thread Kayak28
Hello, Mr. Erick Erickson and Community Members: Thank you for your quick response. I understand that "checkIndex -exorcise" does not actually fix the indices, more like "first aid" kinda action. And soon or later I need to re-index from my source. What is the rule of thumb to recover from the c

Re: Questions about corrupted Segments files.

2019-11-05 Thread Erick Erickson
Well, the fix option “fixes” the index by deleting any segments it can’t read, thus also deleting the documents in that segment. So if you can get it to run, it’ll allow you to continue using the index, but you’ll have to re-index all your data anyway to get the documents in the deleted segments

Questions about corrupted Segments files.

2019-11-05 Thread Kayak28
Hello, Community members: I am using Solr 7.7.2. On the other day, while indexing to the Solr, my computer powered off. As a result, there are corrupted segment files. Is there any way to fix the corrupted segment files without re-indexing? I have read a blog post (in Japanese) writing about che

Does Solr replicate data securely

2019-11-05 Thread Pushkar Raste
Hi, When slaves/pull replicas copy index files from master is done using an secure protocol or just over tcp? -- — Pushkar Raste

Re: [ANNOUNCE] Apache Solr 8.3.0 released

2019-11-05 Thread Paras Lehana
Hey Cassandra, Thank you for prompt response. I look forward to contribute to Solr Documentation . Really love the community! ^_^ PS: We need to fix the Public Servers Listing section on homepage tha

Re: Devoxx Antwerp

2019-11-05 Thread Angie Rabelero
Share the presentation materials! On Nov 5, 2019, at 13:00, Bram Van Dam wrote: I don't suppose any Solr users/devs will be attending Devoxx in Antwerp this week? If any of you are, it might be nice to have a chat to exchange some experiences. If not, I'll take that as a sign not to leave it qui

Devoxx Antwerp

2019-11-05 Thread Bram Van Dam
I don't suppose any Solr users/devs will be attending Devoxx in Antwerp this week? If any of you are, it might be nice to have a chat to exchange some experiences. If not, I'll take that as a sign not to leave it quite so late next year .. ahem. - Bram

Re: Solr 7.6.0 High CPU Usage Deadlock (Generating 70% of futex system call)

2019-11-05 Thread Daniel de Oliveira Mantovani
I set up Solr Cloud 7.7.2 and follow the tutorial https://lucene.apache.org/solr/guide/8_2/getting-started-with-solrcloud.html#getting-started-with-solrcloud I still see exactly the same behavior, even with 0 records and out of the box. Why would it generates 40.000 Futex syscall in 30 seconds eve

Re: When search term has two stopwords ('and' and 'a') together, it doesn't work

2019-11-05 Thread Walter Underwood
No. The solr.StopFilter removes all tokens that are stopwords. Those words will not be in the index, so they can never match a query. 1. Remove the lines with solr.StopFilter from every analysis chain in schema.xml. 2. Reload the collection, restart Solr, or whatever to read the new config. 3.

Re: [ANNOUNCE] Apache Solr 8.3.0 released

2019-11-05 Thread Cassandra Targett
We’re still working out the changes to the publication process, and got a couple wires crossed that prevented the Ref Guide from being published at the same time for this release. I’ve published the final version now: http://lucene.apache.org/solr/guide/8_3/. Apologies for the confusion, by the

Re: When search term has two stopwords ('and' and 'a') together, it doesn't work

2019-11-05 Thread Guilherme Viteri
Ok. I am kind a lost now. If I open up the console > analysis and perform it, that's the final result. Your suggestion is: get rid of the in the schema.xml and during index phase replaceAll("in stopwords.txt"," ") then add to solr. Is that correct ? Thanks David > On 5 Nov 2019, at 14:48, D

Re: When search term has two stopwords ('and' and 'a') together, it doesn't work

2019-11-05 Thread David Hastings
no, is still using stopwords and should be removed, in my opinion of course, based on your use case may be different, but i generally axe any reference to them at all On Tue, Nov 5, 2019 at 9:47 AM Guilherme Viteri wrote: > Thanks. > Haven't I done this here ? >positionIncre

Re: When search term has two stopwords ('and' and 'a') together, it doesn't work

2019-11-05 Thread Guilherme Viteri
Thanks. Haven't I done this here ? > On 5 Nov 2019, at 14:15, David Hastings wrote: > > Fwd to another server > > The first thing you should do is remove any reference to stop words and >

Re: When search term has two stopwords ('and' and 'a') together, it doesn't work

2019-11-05 Thread David Hastings
The first thing you should do is remove any reference to stop words and never use them, then re-index your data and try it again. On Tue, Nov 5, 2019 at 9:14 AM Guilherme Viteri wrote: > Hi, > > I am performing a search to match a name (text_field), however this term > contains 'and' and 'a' and

When search term has two stopwords ('and' and 'a') together, it doesn't work

2019-11-05 Thread Guilherme Viteri
Hi, I am performing a search to match a name (text_field), however this term contains 'and' and 'a' and it doesn't return any records. If i remove 'a' then it works. e.g Search Term: lymphoid and a non-lymphoid cell doesn't work: https://dev.reactome.org/content/query?q=lymphoid+and+a+non-lymph

Re: Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-05 Thread Jörn Franke
Thanks I will check and come back to you. As far as I remember (but have to check) the queries generated by Solr were correct Just to be clear the same thing works with Solr 8.2 server and Solr 8.2 client. It show the odd behaviour with Solr 8.2 server and Solr 8.3 client. > Am 05.11.2019 um 14

Re: Solr 8.3 Solrj streaming expressions do not return all field values

2019-11-05 Thread Joel Bernstein
I'll probably need some more details. One thing that's useful is to look at the logs and see the underlying Solr queries that are generated. Then try those underlying queries against the Solr index and see what comes back. If you're not seeing the fields with the plain Solr queries then we know it'

Re: Delete documents from the Solr index using SolrJ

2019-11-05 Thread Erick Erickson
OK, you have two options: 1.1> do NOT construct IDs with the version. Have two separate fields, id (which is the in your schema and a _separate_ field called tracking (note, there’s already by default an _version_ field, with underscores, for optimistic locking, do not use that). 1.2> Index t

Re: Zipped folder indexing in Solr Cloud

2019-11-05 Thread Erick Erickson
If Jörn’s suggestion doesn’t work for you, consider running Tika outside of Solr, here’s some explanation of why you probably want to do that for anything other than prototyping, and some sample code: https://lucidworks.com/post/indexing-with-solrj/ Best, Erick > On Nov 5, 2019, at 7:03 AM, Jö

Re: Zipped folder indexing in Solr Cloud

2019-11-05 Thread Jörn Franke
You can unzip it before. Or am I overlooking something ? > Am 05.11.2019 um 13:00 schrieb Biswarup Roy : > > Hello, > > I have a compressed folder (.zip) which contains the PDFs, TXTs, and XML > file. > I am trying to index that folder in Solr Cloud, but not being able to do > that. > I am usin

Zipped folder indexing in Solr Cloud

2019-11-05 Thread Biswarup Roy
Hello, I have a compressed folder (.zip) which contains the PDFs, TXTs, and XML file. I am trying to index that folder in Solr Cloud, but not being able to do that. I am using Solr 8.2. Can you please help me on how I can index that zipped folder in Solr Cloud? I am eagerly waiting for your reply.

RE: Delete documents from the Solr index using SolrJ

2019-11-05 Thread Khare, Kushal (MIND)
Well, I cannot still completely relate to the solutions by you guys, am looking into it as how could I achieve that with my application. Thanks ! One thing, that I want to know is how to avoid full re-indexing, that is, what I need is I don’t want that Solr index all the data every time some docs