Re: Index not loading

2012-08-15 Thread Jonatan Fournier
On Tue, Aug 14, 2012 at 5:37 PM, Jonatan Fournier wrote: > On Tue, Aug 14, 2012 at 10:25 AM, Erick Erickson > wrote: >> This is quite odd, it really sounds like you're not >> actually committing. So, some questions. >> >> 1> What happens if you search before you shut >> down your tomcat? Do you s

Re: Index not loading

2012-08-14 Thread Jonatan Fournier
On Tue, Aug 14, 2012 at 10:25 AM, Erick Erickson wrote: > This is quite odd, it really sounds like you're not > actually committing. So, some questions. > > 1> What happens if you search before you shut > down your tomcat? Do you see docs then? If so, > somehow you're doing soft commits and never

Re: Index not loading

2012-08-14 Thread Jonatan Fournier
eRequest(); > req.add(mySolrInputDocument); > req.setCommitWithin(1); > req.process(server); > > Cheers, > > /jonathan > >> >> -- Jack Krupansky >> >> -Original Message- From: Jonatan Fournier >> Sent: Tuesday, August 14, 2012

Re: Index not loading

2012-08-14 Thread Jonatan Fournier
eRequest req = new UpdateRequest(); req.add(mySolrInputDocument); req.setCommitWithin(1); req.process(server); Cheers, /jonathan > > -- Jack Krupansky > > -Original Message- From: Jonatan Fournier > Sent: Tuesday, August 14, 2012 11:03 AM > To: solr-user@

Re: Index not loading

2012-08-14 Thread Jack Krupansky
...@gmail.com Subject: Re: Index not loading Hi Erick, On Tue, Aug 14, 2012 at 10:25 AM, Erick Erickson wrote: This is quite odd, it really sounds like you're not actually committing. So, some questions. 1> What happens if you search before you shut down your tomcat? Do you see docs then? If so,

Re: Index not loading

2012-08-14 Thread Jonatan Fournier
Hi Erick, On Tue, Aug 14, 2012 at 10:25 AM, Erick Erickson wrote: > This is quite odd, it really sounds like you're not > actually committing. So, some questions. > > 1> What happens if you search before you shut > down your tomcat? Do you see docs then? If so, > somehow you're doing soft commits

Re: Index not loading

2012-08-14 Thread Erick Erickson
This is quite odd, it really sounds like you're not actually committing. So, some questions. 1> What happens if you search before you shut down your tomcat? Do you see docs then? If so, somehow you're doing soft commits and never doing a hard commit. 2> What happens if, as the last statement in y

Index not loading

2012-08-13 Thread Jonatan Fournier
Hi, I'm using Solr 4.0.0-ALPHA and the EmbeddedSolrServer. Within my SolrJ application, the documents are added to the server using the commitWithin parameter (in my case 60s). After 1 day my 125 millions document are all added to the server and I can see 89G of index data files. I stop my SolrJ