Return-Path: Delivered-To: apmail-incubator-jackrabbit-dev-archive@www.apache.org Received: (qmail 49876 invoked from network); 18 Nov 2005 01:58:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Nov 2005 01:58:28 -0000 Received: (qmail 16733 invoked by uid 500); 18 Nov 2005 01:58:27 -0000 Mailing-List: contact jackrabbit-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jackrabbit-dev@incubator.apache.org Delivered-To: mailing list jackrabbit-dev@incubator.apache.org Received: (qmail 16722 invoked by uid 99); 18 Nov 2005 01:58:26 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Nov 2005 17:58:26 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of bcm@osafoundation.org designates 204.152.186.98 as permitted sender) Received: from [204.152.186.98] (HELO laweleka.osafoundation.org) (204.152.186.98) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Nov 2005 18:00:00 -0800 Received: from localhost (localhost [127.0.0.1]) by laweleka.osafoundation.org (Postfix) with ESMTP id 858BB142277 for ; Thu, 17 Nov 2005 17:58:05 -0800 (PST) Received: from laweleka.osafoundation.org ([127.0.0.1]) by localhost (laweleka.osafoundation.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28948-10 for ; Thu, 17 Nov 2005 17:58:05 -0800 (PST) Received: from [192.168.101.23] (w002.z065106067.sjc-ca.dsl.cnc.net [65.106.67.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by laweleka.osafoundation.org (Postfix) with ESMTP id 338C614226D for ; Thu, 17 Nov 2005 17:58:05 -0800 (PST) Message-ID: <437D352C.3050105@osafoundation.org> Date: Thu, 17 Nov 2005 17:58:04 -0800 From: Brian Moseley User-Agent: Mozilla Thunderbird 1.0.2 (Macintosh/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: jackrabbit-dev@incubator.apache.org Subject: "failed to spool stream to internal storage" exception Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new and clamav at osafoundation.org X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N i'm seeing a large number of error messages in my webdav server's error log that look like this: 2005-11-17 16:27:26,043 ERROR [DavResourceImpl] Error while executing import chain: javax.jcr.RepositoryException: failed to spool stream to internal storage: Connection reset: Connection reset sequences of anywhere from 2 to 15 of these messages were being logged within the same second, every minute or two. i think but can't be sure that they were logged while i was trying to shut down the server, which seemed to take an abnormally long period of time. wish i had noted the time when i was doing that. anyway, i tracked down the "failed to spool stream to internal storage" message to PropertyImpl, ~line 750., in the setValue() method, when an IOException is caught while trying to create an instance of InternalValue. the only code i can find in that block that throws IOException is BLOBFileValue's constructor, but i'm not seeing anything obvious that would throw an IOException with the message "Connection reset". i certainly don't find that string anywhere within the jackrabbit code. any ideas what might be causing this to happen? i'm using DerbyPersistenceManager and am storing blobs externally, if that helps.