Return-Path: X-Original-To: apmail-lucene-solr-user-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 308C2C8C4 for ; Thu, 27 Jun 2013 15:04:01 +0000 (UTC) Received: (qmail 77906 invoked by uid 500); 27 Jun 2013 15:03:56 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 77699 invoked by uid 500); 27 Jun 2013 15:03:56 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Received: (qmail 77691 invoked by uid 99); 27 Jun 2013 15:03:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Jun 2013 15:03:55 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of solr@elyograg.org designates 166.70.79.219 as permitted sender) Received: from [166.70.79.219] (HELO frodo.elyograg.org) (166.70.79.219) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Jun 2013 15:03:50 +0000 Received: from localhost (localhost [127.0.0.1]) by frodo.elyograg.org (Postfix) with ESMTP id 2F9FB2438 for ; Thu, 27 Jun 2013 09:03:28 -0600 (MDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=elyograg.org; h= content-transfer-encoding:content-type:content-type:in-reply-to :references:subject:subject:mime-version:user-agent:from:from :date:date:message-id:received:received; s=mail; t=1372345407; bh=DDx9q2y4CsheM8aK+xMwayRG/dsL4WQl8ILuys1CE/s=; b=YDTCQXQI8z3G yX3KwBG2qf+zAVnsxYFwc3bDKWK2lm8NUpCPbfMvh3d4q7CfACgErExxjiLWcgy+ WB+SF2zGF6kz/RQN6C81/f6EoNQClhhl1QcX1eW3k87As+uvEgae6+4o4xqqAvYj RJMRMh+5The4zFy09Fhda7wuA7lki20= X-Virus-Scanned: Debian amavisd-new at frodo.elyograg.org Received: from frodo.elyograg.org ([127.0.0.1]) by localhost (frodo.elyograg.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id VTnf9x64-WqX for ; Thu, 27 Jun 2013 09:03:27 -0600 (MDT) Received: from [192.168.1.101] (101.int.elyograg.org [192.168.1.101]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: elyograg@elyograg.org) by frodo.elyograg.org (Postfix) with ESMTPSA id 8FA7FA1D for ; Thu, 27 Jun 2013 09:03:27 -0600 (MDT) Message-ID: <51CC5441.9060403@elyograg.org> Date: Thu, 27 Jun 2013 09:03:29 -0600 From: Shawn Heisey User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 MIME-Version: 1.0 To: solr-user@lucene.apache.org Subject: Re: Is Overlapping onDeckSearchers=2 really a problem? References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org On 6/27/2013 5:59 AM, Robert Krüger wrote: > sometime forcing oneself to describe a problem is the first step to a > solution. I just realized that I also had an autocommit statement in > my config with the exact same amount of time the seemed to be between > the warnings. > > I removed that, because I don't think I really need it, and now the > warnings are gone. So it seems it happened whenever my manual commits > overlapped with an autocommit, which, of course, was more likely when > many commits were issued in sequence. If all you are doing is soft commits, your transaction logs are going to grow out of control. http://wiki.apache.org/solr/SolrPerformanceProblems#Slow_startup My recommendation: 1) Remove all commits from your indexing application. 2) Configure autoCommit with values similar to that wiki page. 3) Configure autoSoftCommit to happen often. The autoCommit must have openSearcher set to false. For autoSoftCommit, include a maxTime between 1000 and 5000 (milliseconds) and leave maxDocs out. Thanks, Shawn