Re: Reg:- Create Solr Core Using Command Line

2018-02-06 Thread @Nandan@
Hi , Thanks you all for quality reply . Finally I am able to below from Scratch:- 1) Create Core by CMD line. 2) Index CSV file by CMD Below are my steps , and I hope other basic beginners can able to learn easily. Basic Information about Solr :- Installation folder :- C:\solr Solr bin folder

Re: Reg:- Create Solr Core Using Command Line

2018-02-06 Thread Shawn Heisey
On 2/6/2018 6:00 PM, @Nandan@ wrote: Even I tried this one before also. And everytime getting below result. C:\solr\bin>post -c films example/books_data.csv 'post' is not recognized as an internal or external command, operable program or batch file. C:\solr\bin>cd .. C:\solr>bin/post -c

Re: Solr needs a restart to recover from "No space left on device"

2018-02-06 Thread Shawn Heisey
On 2/6/2018 8:23 PM, John Davis wrote: We ran out of disk on our solr instance. However even after cleaning up the disk solr server did not realize that there is free disk available. It only got fixed after a restart. If the files you deleted to free space were Solr indexes, then they were

Solr needs a restart to recover from "No space left on device"

2018-02-06 Thread John Davis
Hi there! We ran out of disk on our solr instance. However even after cleaning up the disk solr server did not realize that there is free disk available. It only got fixed after a restart. Is this a known issue? Or are there workarounds that don't require a restart? Thanks John

Re: Reg:- Create Solr Core Using Command Line

2018-02-06 Thread @Nandan@
Hi Abhishek, Even I tried this one before also. And everytime getting below result. > C:\solr\bin>post -c films example/books_data.csv 'post' is not recognized as an internal or external command, operable program or batch file. C:\solr\bin>cd .. C:\solr>bin/post -c films

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-06 Thread Webster Homer
I noticed that in some of the current example schemas that are shipped with Solr, there is a fieldtype, text_en_splitting, that feeds the output of SynonymGraphFilterFactory into WordDelimiterGraphFilterFactory. So if this isn't supported, the example should probably be updated or removed. On

Re: How can I prevent adding duplicated copyfield into managed schema

2018-02-06 Thread Wendy2
What if you include the core name as part of the direct path? In my practice, managed-schema file is stored under ~/solr/coreName, so it is core specific and will never be shared with other cores. Wendy -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Change in behavior of CoreDescriptors

2018-02-06 Thread Shefali Dubey
Asking this question again. From: Shefali Dubey Date: Monday, January 29, 2018 at 3:14 PM To: "solr-user@lucene.apache.org" Subject: Change in behavior of CoreDescriptors Hello, I observed the following change on switching from solr verion

RE: Fusion or DIY w/Solr?

2018-02-06 Thread Davis, Daniel (NIH/NLM) [C]
Norconex filesystem collector should be able to handle XML output by Sovren very flexibly. I am a big fan. You can use a DOMSplitter to split a single large XML document into multiple smaller ones. I started with Norconex because I found Heritrix a bit of a pain to configure, as it is

Re: Fusion or DIY w/Solr?

2018-02-06 Thread Doug Turnbull
Also chime in on other options I’m familiar with: - Hosted Solr (searchstax/websolr) to manage the ops of a pure open source product. I’m a big fan of both companies for removing ops headaches and focusing more on value add for open source - Voyager Search for spatial focused enterprise search

Re: Fusion or DIY w/Solr?

2018-02-06 Thread Doug Turnbull
Used Fusion an a couple projects, *Pros:* *-* Wraps Solr, so you should be able to do anything you can do in Solr in Fusion - 'Opinionated' Solr - Annoying problems I see on every team, solved with common tooling (experiments, signal collection, etc). Can save tons of work. - Relevance focused -

Re: Min-should-match and Mutli-word synonyms unexpected result

2018-02-06 Thread Nick D
Thanks Steve, I'll test out that version. Nick On Feb 6, 2018 6:23 AM, "Steve Rowe" wrote: > Hi Nick, > > I think this was fixed by https://issues.apache.org/ > jira/browse/LUCENE-7878 in Solr 6.6.1. > > -- > Steve > www.lucidworks.com > > > On Feb 5, 2018, at 3:58 PM, Nick

How can I prevent adding duplicated copyfield into managed schema

2018-02-06 Thread Michael Hu
Hi Solr experts: Question: how can I prevent multiple concurrent requests adding the same duplicated copyfield into managed schema? (Note: I am using Solr 6.6.2) User case: For a new field named srcField, I need to create another field named destField, and a new copyField with srcField as

Fusion or DIY w/Solr?

2018-02-06 Thread Jamie Keenan
Hi All, I was recommended to reach out by Ramkumar Aiyengar – I have known him for quite a while and I wanted to get some advice on Solr / Lucence… To give you a bit of context – I am the founder of a boutique search firm with a big vision on augmenting what we do with technology as there is

Re: I'm unable to negate a join query using the Spring Java interface to Solr

2018-02-06 Thread Mikhail Khludnev
You can try to make such "pure negative" query how it works underneath (but it's not how it's actually executed). *:* -{!join ..}.. ie Create boolean query with two legs: MatchAll and NOT Join. Unfortunately, I have no idea about those Java wrappers. On Tue, Feb 6, 2018 at 12:11 AM, Todd

Re: [SolrCloud] No config data found after SolrCloud server restart

2018-02-06 Thread Shawn Heisey
On 2/5/2018 11:52 PM, A.Guptar wrote: I have removed the -cloud from the startup script and restarted the server. Issue still persists. Attached is the solr.log file. Normally attachments don't make it to the list, but it seems that Nabble saved the day in this particular case. I was able

RE: [EXTERNAL] - Re: analysis error - cannot change numBytes from 4 to 8

2018-02-06 Thread Steve Pruitt
Ah. You are right. I should simply have deleted collection / start a new index. So many details to remember, but I am getting there. Thanks. -S -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Monday, February 05, 2018 4:49 PM To: solr-user

RE: "editorialMarkerFieldName"

2018-02-06 Thread Sadiki Latty
Bumping this question up. Is anyone familiar with how the 'editorialMarkerFieldName' parameter works? Am I doing something wrong? -Original Message- From: Sadiki Latty [mailto:sla...@uottawa.ca] Sent: February-04-18 11:12 PM To: solr-user@lucene.apache.org Subject:

Re: Min-should-match and Mutli-word synonyms unexpected result

2018-02-06 Thread Steve Rowe
Hi Nick, I think this was fixed by https://issues.apache.org/jira/browse/LUCENE-7878 in Solr 6.6.1. -- Steve www.lucidworks.com > On Feb 5, 2018, at 3:58 PM, Nick D wrote: > > I have run into an issue with multi-word synonyms and a min-should-match > (MM) of anything

Re: Reg:- Create Solr Core Using Command Line

2018-02-06 Thread abhi Abhishek
you can try using the post Tool. https://lucene.apache.org/solr/guide/6_6/post-tool.html bin/post -c film example/books_data.csv Cheers! Abhishek On Tue, Feb 6, 2018 at 1:22 PM, @Nandan@ wrote: > Hi , > I created core name as "films". Now I am trying to

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-06 Thread Steve Rowe
Hi, > On Feb 5, 2018, at 10:31 PM, Александр Шестак > wrote: > > Now I have another strange issue. > If I have configured synonyms in next way > b=>b,boron > 2=>ii,2 > Then for query "my_field:b2" parsedQuery looks so "my_field:b2 > Synonym(my_field:2

Re: Querying on sum of child documents

2018-02-06 Thread Mikhail Khludnev
exp=total seems strange it should be score. Then, childquery clauses might need to be appended with ^=0 to suppress unnecessary scoring. Check debugQuery output to make sure if query is parsed as expected. On Tue, Jan 30, 2018 at 10:10 AM, Prath wrote: > Hi, > I used

Re: Sort by nested field but only in matching nested documents

2018-02-06 Thread Mikhail Khludnev
Hello Florian, No. As an alternative you can put it into q param, suppressing scoring from undesired clauses with ^=0 On Thu, Feb 1, 2018 at 5:22 PM, Florian Fankhauser wrote: > Hello, > given the following document structure (books as parent, libraries having > these

Re: Matching parent docs when two child docs match different criteria

2018-02-06 Thread Mikhail Khludnev
Matt, I don't really follow the new sample and the query, but you've got the first idea, I believe. Then, this requirement is not really boolean logic. So, it's obviously not easy to achieve. The second idea is - to use size:(M L)^=1 for children clause, then - use score=total in parent level

Re: Mixing simple and nested docs in same update?

2018-02-06 Thread Jan Høydahl
Hi Mikhail, Lacking clarity on this in the Ref Guide, I'm trying to understand all requirements for block join here. I have noticed that if I index the blocks as one ADD request and then afterwards index the "other" single documents in another request, then the results look ok. But is it

Unable to load multipart Email to SOLR using TIka

2018-02-06 Thread Anantharaman, Srinatha (Contractor)
Hi, I am trying to load MIME file of Email with multipart to SOLR using TIKA and Morphline I am using Flume to load continuously but it fails to load when it finds attachments inside an email(multiparts) It does not throw any error but fails to index the email to SOLR Could you please help me

Re: Solr 4.8.1 multiple client updates the same collection

2018-02-06 Thread Vincenzo D'Amore
Thanks you both for time spent and for good suggestions. Hope you'll be glad to know that this solution seems to work very well. :) Best regards, Vincenzo On Tue, Jan 30, 2018 at 10:55 AM, Alessandro Benedetti wrote: > "At last, please let me ask another question, is it