Error when running ant package in solr 7.2.1 from source

2018-03-27 Thread C F
I'm unable to run the ant package target in solr-7.2.1-src.tgz. Any ideas? Is git required now? $ ant package Buildfile: /home/local/fred/solr-7.2.1/solr/build.xml init-dist: package-src-tgz: [exec] fatal: Not a git repository (or any parent up to mount point /) [exec] Stopping at

Re: Default Index config

2018-03-27 Thread Shawn Heisey
On 3/27/2018 9:35 PM, mganeshs wrote: I am using the default configuration, as all solr experts say default one suits for most of the cases and so following the defaults. We changed only the commits part and using 15000 for hard commits and 1 sec for soft commit. All other setting like locking,

Re: Copying a SolrCloud collection to other hosts

2018-03-27 Thread David Smiley
The backup/restore API is intended to address this. https://builds.apache.org/job/Solr-reference-guide-master/javadoc/making-and-restoring-backups.html Erick's advice is good (and I once drafted docs for the same scheme years ago as well), but I consider it dated -- it's what people had to do

Re: InetAddressPoint support in Solr or other IP type?

2018-03-27 Thread David Smiley
(I overlooked your reply; sorry to leave you hanging) >From a simplicity standpoint, Just use InetAddressPoint. Solr has no rules/restrictions as to which Lucene module it's in. That said, I *suspect* a Terms PrefixTree aligned to each byte would offer better query performance, presuming that

Re: Default Index config

2018-03-27 Thread mganeshs
Hi Shawn, Thanks for detail mail. Yes I am behind the IndexConfig only. Regarding 5GB size of collection, it's not one document. It has almost 3M of docs in that collection. I am using the default configuration, as all solr experts say default one suits for most of the cases and so following

Routing a subquery directly to the shard a document came from

2018-03-27 Thread Jeff Wartes
I have a large 7.2 index with nested documents and many shards. For each result (parent doc) in a query, I want to gather a relevance-ranked subset of the child documents. It seemed like the subquery transformer would be ideal:

Re: edit gc parameters in solr.in.sh or solr?

2018-03-27 Thread Shawn Heisey
On 3/27/2018 12:13 AM, Bernd Fehling wrote: > may I give you the advise to _NOT_ set XX:G1HeapRegionSize. > That is computed during JAVA start by the engine according to heap and > available memory. > A wrong set size can even a huge machine with 31GB heap and 157GB RAM force > into OOM. > Guess

Re: Help Needed - Indexing Related

2018-03-27 Thread Shawn Heisey
On 3/27/2018 6:08 AM, YELESWARAPU, VENKATA BHAN wrote: > Hope you are doing well. I have been struggling with indexing for a week now. > Yesterday I deleted all indexing files and tried re-indexing. It failed > saying unable to open a new searcher. Also that _0.si file is missing. > Today I

Re: Solr 4.9 - configs and collections

2018-03-27 Thread Abhi Basu
Thanks for the explanations, very helpful. One more question, what is the sequence to delete the collection? If I use the rest api to delete the collection, then when I go to create it again, I sometimes get an error message saying shard already present. How to clean up the underlying directories

Re: How to escape OR or any other keyword in solr

2018-03-27 Thread Steven White
What about for the case when you need to match cases as such the analyzer does not use LowerCaseFilterFactory? Is there a solution for this? Steve On Tue, Mar 27, 2018 at 4:22 AM, RAUNAK AGRAWAL wrote: > Hi Peter, > > Yes, I am using the stopword file which has *or

RE: Help Needed - Indexing Related

2018-03-27 Thread YELESWARAPU, VENKATA BHAN
Information Classification: ** Limited Access Team, Fyi..Deleting the indexing job queue table resolved the issue and it generated the index files. Thank you, Dutt _ From: YELESWARAPU, VENKATA BHAN Sent: Tuesday, March 27, 2018 8:08 AM To:

Re: query regarding Solr partial search

2018-03-27 Thread Erik Hatcher
This is as much about your schema as it is about your query parser usage. What’s parsed_query say in your debug=true output? What query parser are you using? If edismax, check qf/pf/mm settings, etc. Erik > On Mar 27, 2018, at 9:56 AM, Paul, Lulu wrote: > > Hi

Re: How to escape OR or any other keyword in solr

2018-03-27 Thread Erick Erickson
Also, a rather obscure bit is that unless you configure it, operators must be upper case. You can simply lower-case it on the client side if necessary, so "or" won't be interpreted as an operator. Best, Erick On Tue, Mar 27, 2018 at 1:22 AM, RAUNAK AGRAWAL wrote: > Hi

Wrong ngroups value result ?

2018-03-27 Thread Bruno Mannina
Dear Solr User, I have several collections on a SOLR 5.4 (Ubuntu server). Each collection have a same unique key "id". Collections have sometimes common records. Actually, I would like to use group option but the ngroups result is wrong. SOLR find the right number of item but do the sum

New Subscribe

2018-03-27 Thread Raymond Xie
** *Sincerely yours,* *Raymond*

query regarding Solr partial search

2018-03-27 Thread Paul, Lulu
Hi , Below is my SOLR configuration (schema.xml) for a keyword search field. · If I search for “Autograph full score”, Solr returns all items that contains this string

RE: Help Needed - Indexing Related

2018-03-27 Thread YELESWARAPU, VENKATA BHAN
Information Classification: ll Limited Access Found those values. solr.autoSoftCommit.maxTime:2000 solr.autoCommit.maxTime:12 Thank you, Dutt -Original Message- From: Sujay Bawaskar [mailto:sujaybawas...@gmail.com] Sent: Tuesday, March 27, 2018 8:54 AM To:

Re: Help Needed - Indexing Related

2018-03-27 Thread Sujay Bawaskar
Since this is a scheduled job I think you can get rid of commits and optimize which are invoked from scheduled job. On Tue, Mar 27, 2018 at 6:13 PM, YELESWARAPU, VENKATA BHAN < vyeleswar...@statestreet.com> wrote: > Information Classification: ll Limited Access > > Thanks for your response

RE: Help Needed - Indexing Related

2018-03-27 Thread YELESWARAPU, VENKATA BHAN
Information Classification: ll Limited Access Thanks for your response Sujay. Solr Version - 4.3.1 Yes, we are using client api to generate index files. I don't see those parameters configured outside or in the logs, but indexing job is scheduled, which I think will take care of these. We have

Re: Help Needed - Indexing Related

2018-03-27 Thread Sujay Bawaskar
Few questions here, Are you using solrj client from java application? What is version of solr? How frequently commit and optimize operation is called from solr client? If commit and optimize are not called from client what is value for solr.autoCommit.maxTime and solr.autoSoftCommit.maxTime? What

Help Needed - Indexing Related

2018-03-27 Thread YELESWARAPU, VENKATA BHAN
Information Classification: ** Limited Access Hi Solr Team, Hope you are doing well. I have been struggling with indexing for a week now. Yesterday I deleted all indexing files and tried re-indexing. It failed saying unable to open a new searcher. Also that _0.si file is missing. Today I

Re: How to escape OR or any other keyword in solr

2018-03-27 Thread RAUNAK AGRAWAL
Hi Peter, Yes, I am using the stopword file which has *or *in it. Thanks for pointing out. Will remove it from the stopword file and test it again. Thank you very much!! On Tue, Mar 27, 2018 at 1:17 PM, Peter Lancaster < peter.lancas...@findmypast.com> wrote: > Hi Raunak, > > Are you using a

RE: How to escape OR or any other keyword in solr

2018-03-27 Thread Peter Lancaster
Hi Raunak, Are you using a stop word file? That might be why you're getting 0 results searching for "OR". Cheers, Peter. -Original Message- From: RAUNAK AGRAWAL [mailto:agrawal.rau...@gmail.com] Sent: 27 March 2018 07:45 To: solr-user@lucene.apache.org Subject: How to escape OR or any

How to escape OR or any other keyword in solr

2018-03-27 Thread RAUNAK AGRAWAL
I have to search for state "OR" [short form for Oregon]. When I am making query state:OR, I am getting SolrException since it is recognising it as keyword. Now I tried with quotes ("") or //OR as well and when doing so..Solr doesn't give exception but it also doesn't return any matching document.

Re: edit gc parameters in solr.in.sh or solr?

2018-03-27 Thread Bernd Fehling
Hi Walter, may I give you the advise to _NOT_ set XX:G1HeapRegionSize. That is computed during JAVA start by the engine according to heap and available memory. A wrong set size can even a huge machine with 31GB heap and 157GB RAM force into OOM. Guess how I figured that out, took me about one