Re: Solr indexing not taking all values from DB.

2008-10-15 Thread con
Hi Noble, Thanks for your reply Sorry that I was not able to reply back in time. I followed your suggestions and it is now indexing fine up to an extend. 1) if the query is taking values from a single table, the full import will show the expected count itself. And when i do http://localhost:8

Re: Solr indexing not taking all values from DB.

2008-10-13 Thread Noble Paul നോബിള്‍ नोब्ळ्
now just do a normal full-import do not enable debug . I guess it should be just fine On Mon, Oct 13, 2008 at 1:20 PM, con <[EMAIL PROTECTED]> wrote: > > Thanks Nobble > I tried in the debug mode with rows=100 and it is accepting all the result > sets. > So i suppose there is nothing wrong in the

Re: Solr indexing not taking all values from DB.

2008-10-13 Thread con
Thanks Nobble I tried in the debug mode with rows=100 and it is accepting all the result sets. So i suppose there is nothing wrong in the query. But I am not able to update the index since this is available only in the debug mode. Can you please give some suggestions based on this. thanks con

Re: Solr indexing not taking all values from DB.

2008-10-12 Thread Noble Paul നോബിള്‍ नोब्ळ्
in debug mode it writes only 10 because there is a rows parameter which is by default set to 10 make it 100 or so and you should be seeing all docs. But in non-debug mode there is no such parameter On Sun, Oct 12, 2008 at 11:00 PM, con <[EMAIL PROTECTED]> wrote: > > I wrote a jdbc program to imple

Re: Solr indexing not taking all values from DB.

2008-10-12 Thread con
Hi Jon I have my unique key set to false. EMP_ID. I tried with enabling the unique key. Still the same problem exists. Thanks con jonbaer wrote: > > What is your set to? Could it be you have duplicates in > your uniqueKey setup (thus producing only 10 rows in index)? > > - Jon > > O

Re: Solr indexing not taking all values from DB.

2008-10-12 Thread Jon Baer
What is your set to? Could it be you have duplicates in your uniqueKey setup (thus producing only 10 rows in index)? - Jon On Oct 12, 2008, at 1:30 PM, con wrote: I wrote a jdbc program to implement the same query. But it is returning all the responses, 25 nos. But the solr is still in

Re: Solr indexing not taking all values from DB.

2008-10-12 Thread con
I wrote a jdbc program to implement the same query. But it is returning all the responses, 25 nos. But the solr is still indexing only 10 rows. Is there any optimization settings by default in the solrconfig.xml that restricts the responses to 10 ? thanks con. Noble Paul നോബിള്‍ नोब्ळ् wrote

Re: Solr indexing not taking all values from DB.

2008-10-11 Thread Noble Paul നോബിള്‍ नोब्ळ्
template transformer does not eat up rows. I am almost sure that the query returns only 10 rows in that case. could you write a quick jdbc program and verify that (not the oralce client) everything else looks fine On Sat, Oct 11, 2008 at 4:52 PM, con <[EMAIL PROTECTED]> wrote: > > Hi Noble > Tha

Re: Solr indexing not taking all values from DB.

2008-10-11 Thread con
Hi Noble Thanks for your reply In my data-config.xml I have; Whether this, TemplateTransformer, is the one that

Re: Solr indexing not taking all values from DB.

2008-10-10 Thread Noble Paul നോബിള്‍ नोब्ळ्
The DIH status says 10 rows which means only 10 rows got fetched for that query. Do you have any custom transformers which eats up rows? Try the debug page of DIH and see what is happening to the rest of the rows. On Fri, Oct 10, 2008 at 5:32 PM, con <[EMAIL PROTECTED]> wrote: > > A simple ques