Re: 5.3.1 artifacts in maven central

2015-09-28 Thread Noble Paul
Please check now On Mon, Sep 28, 2015 at 8:42 PM, Noble Paul wrote: > Looks like I missed it , I shall upload it soon > > > On Mon, Sep 28, 2015 at 7:59 PM, Terry Smith wrote: >> Guys, >> >> I'm unable to find the 5.3.1 artifacts in maven central. Here is the search >> url for org.apache.lucene:

Re: Need help in alphanumeric search

2015-09-28 Thread Erick Erickson
Uwe: Yep, realized I was in the wrong list after the first reply. On Mon, Sep 28, 2015 at 3:17 PM, Uwe Schindler wrote: > Hi Erick, > > This mail was in Lucene's user mailing list. This is not about Solr, so user > cannot provide his Solr config! :-) > In any case, it would be good to get

RE: Solr java.lang.OutOfMemoryError: Java heap space

2015-09-28 Thread will martin
http://opensourceconnections.com/blog/2014/07/13/reindexing-collections-with-solrs-cursor-support/ -Original Message- From: Ajinkya Kale [mailto:kaleajin...@gmail.com] Sent: Monday, September 28, 2015 2:46 PM To: solr-u...@lucene.apache.org; java-user@lucene.apache.org Subject: Solr jav

RE: Need help in alphanumeric search

2015-09-28 Thread Uwe Schindler
Hi Erick, This mail was in Lucene's user mailing list. This is not about Solr, so user cannot provide his Solr config! :-) In any case, it would be good to get the Analyzer + code you use while indexing and also the code (+ Analyzer) that creates the query while searching. Uwe - Uwe Schind

Solr java.lang.OutOfMemoryError: Java heap space

2015-09-28 Thread Ajinkya Kale
Hi, I am trying to retrieve all the documents from a solr index in a batched manner. I have 100M documents. I am retrieving them using the method proposed here https://nowontap.wordpress.com/2014/04/04/solr-exporting-an-index-to-an-external-file/ I am dumping 10M document splits in each file. I ge

Re: Need help in alphanumeric search

2015-09-28 Thread Erick Erickson
You need to supply the definitions of this field from your schema.xml file, both the and Additionally, please provide the results of the query you're trying with &debug=true appended. The adminUI/analysis page is very helpful in these situations as well. Select the appropriate core from the dro

Re: 5.3.1 artifacts in maven central

2015-09-28 Thread Noble Paul
Looks like I missed it , I shall upload it soon On Mon, Sep 28, 2015 at 7:59 PM, Terry Smith wrote: > Guys, > > I'm unable to find the 5.3.1 artifacts in maven central. Here is the search > url for org.apache.lucene:lucene-core, the most recent version listed is > 5.3.0. > > http://search.maven.

5.3.1 artifacts in maven central

2015-09-28 Thread Terry Smith
Guys, I'm unable to find the 5.3.1 artifacts in maven central. Here is the search url for org.apache.lucene:lucene-core, the most recent version listed is 5.3.0. http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.lucene%22%20AND%20a%3A%22lucene-core%22 Am I doing something wrong or ar

Re: Need help in alphanumeric search

2015-09-28 Thread Bhaskar
Thanks Lan for reply. cpn values are like 123-0049, 342-043, ab23-090, hedwsdg my application is working when i gave search for below inputs 1) ab* 2)hedwsdg 3) hed* but it is not working for 1) 123* 2) 123-0049 3) ab23* Note: if the search input has number then it is not working. Thanks in

Re: Need help in alphanumeric search

2015-09-28 Thread Ian Lea
Hi Can you provide a few examples of values of cpn that a) are and b) are not being found, for indexing and searching. You may also find some of the tips at http://wiki.apache.org/lucene-java/LuceneFAQ#Why_am_I_getting_no_hits_.2F_incorrect_hits.3F useful. You haven't shown the code that create

Need help in alphanumeric search

2015-09-28 Thread Bhaskar
Hi, I am beginner in Apache lucene, I am using 5.3.1. I have created the index on the database result. The index values are having alphanumeric and strings values. I am able to search the strings but I am not able to search alphanumeric values. Can someone help me here. Below is indexing code...