Re: Indexing problem

2015-06-06 Thread Erick Erickson
You might review: http://wiki.apache.org/solr/UsingMailingLists Your requests are terribly lacking in detail. For instance, you didn't even mention that you were using DIH. Please be respectful of the fact that people here are _volunteering_ their time and take the time on your end to provide det

Re: Indexing problem

2015-06-06 Thread Midas A
Andrea, thanks for reply attaching log for review where thread is blocked .we have high indexing rate we are indexing around 2,00 doc in every 15 mins . please help us . On Sat, Jun 6, 2015 at 6:45 PM, Andrea Gazzarini wrote: > Hi Midas, > It seems there's a thread that is getting data from

Re: Indexing problem

2015-06-06 Thread Andrea Gazzarini
Hi Midas, It seems there's a thread that is getting data from a database using DIH. No thread seems blocked and the throughput *could* be normal, depending on many factors. Could you please expand a bit about your context? Best, Andrea On 6 Jun 2015 12:21, "Midas A" wrote: > > Running with som

Re: Indexing problem

2015-01-27 Thread Alexandre Rafalovitch
A complete stub in the dark, as I don't know what the client does with the sessions. But it looks like the connection has been cut to the SolrJ client. If you connect to the server, then do nothing for a while with a connection and then starting getting errors, I would check whether you have a fir

Re: Indexing problem

2011-12-28 Thread Martin Koch
Could it be a commit you're needing? curl 'localhost:8983/solr/update?commit=true' /Martin On Wed, Dec 28, 2011 at 11:47 AM, mumairshamsi wrote: > http://lucene.472066.n3.nabble.com/file/n3616191/02.xml 02.xml > > i am trying to index this file for this i am using this command > > java

Re: Indexing problem

2011-12-28 Thread Ahmet Arslan
> http://lucene.472066.n3.nabble.com/file/n3616191/02.xml > 02.xml > > i am trying to index this file for this i am using this > command > > java -jar post.jar *.xml > > commands run fine but when i search not result is > displaying > > I think it is encoding problem can any one help

RE: Indexing Problem: Where's my data?

2010-07-28 Thread Michael Griffiths
ailto:goks...@gmail.com] Sent: Tuesday, July 27, 2010 8:25 PM To: solr-user@lucene.apache.org Subject: Re: Indexing Problem: Where's my data? Solr respects case for field names. Database fields are supplied in lower-case, so it should be 'attribute_name' and 'string_value

Re: Indexing Problem: Where's my data?

2010-07-28 Thread Chantal Ackermann
make sure to set stored="true" on every field you expect to be returned in your results for later display. Chantal

Re: Indexing Problem: Where's my data?

2010-07-27 Thread Lance Norskog
Solr respects case for field names. Database fields are supplied in lower-case, so it should be 'attribute_name' and 'string_value'. Also 'product_id', etc. It is easier if you carefully emulate every detail in the examples, for example lower-case names. On Tue, Jul 27, 2010 at 2:59 PM, kenf_nc

Re: Indexing Problem: Where's my data?

2010-07-27 Thread kenf_nc
for STRING_VALUE, I assume there is a property in the 'select *' results called string_value? if so I'm not sure why it wouldn't work. If not, then that's why, it doesn't have anything to put there. For ATTRIBUTE_NAME, is it possibly a case issue? you called it 'Attribute_Name' in your query, but

Re: Indexing Problem with SOLR multicore

2010-06-14 Thread seesiddharth
Hi Chris, Thank you so much for the help & reply to my query However my problem got resolved. There was a configuration problem in my solrconfig.xml file. The tag was not configured properly that is why both core were directing to the same directory for indexing. Regards, Siddharth

Re: Indexing Problem with SOLR multicore

2010-06-14 Thread Chris Hostetter
I can't think of any way this could happen -- can you provide some more detials on what example you are doing, and hat you are doing to observe the problem? In particular: * what do each of your DIH config files look like? * what URLs are you using to trigger DIH imports? * how are you ch

Re: indexing problem

2007-10-09 Thread Erik Hatcher
Does all your XML look like this sample here - http://wiki.apache.org/ solr/UpdateXmlMessages ?? Are you sending in any elements without a name attribute or with a blank value? Erik On Oct 9, 2007, at 12:45 PM, Urvashi Gadi wrote: is there a way to find out the line number in the

Re: indexing problem

2007-10-09 Thread Urvashi Gadi
is there a way to find out the line number in the xml file? the xml file i m using is quite large. On 10/9/07, Erik Hatcher <[EMAIL PROTECTED]> wrote: > > What is the XML you POSTed into Solr? > > It looks like somehow you've sent in a field with no name or value, > though this is an error that

Re: indexing problem

2007-10-09 Thread Erik Hatcher
What is the XML you POSTed into Solr? It looks like somehow you've sent in a field with no name or value, though this is an error that probably should be caught higher up in Solr. Erik On Oct 9, 2007, at 11:06 AM, Urvashi Gadi wrote: Hi All, i m trying to index my data using po