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
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
eRequest();
> req.add(mySolrInputDocument);
> req.setCommitWithin(1);
> req.process(server);
>
> Cheers,
>
> /jonathan
>
>>
>> -- Jack Krupansky
>>
>> -Original Message- From: Jonatan Fournier
>> Sent: Tuesday, August 14, 2012
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@
...@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,
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
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
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