Return-Path: Delivered-To: apmail-jackrabbit-users-archive@locus.apache.org Received: (qmail 19855 invoked from network); 24 Apr 2007 16:27:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Apr 2007 16:27:50 -0000 Received: (qmail 77907 invoked by uid 500); 24 Apr 2007 16:27:56 -0000 Delivered-To: apmail-jackrabbit-users-archive@jackrabbit.apache.org Received: (qmail 77888 invoked by uid 500); 24 Apr 2007 16:27:55 -0000 Mailing-List: contact users-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@jackrabbit.apache.org Delivered-To: mailing list users@jackrabbit.apache.org Received: (qmail 77878 invoked by uid 99); 24 Apr 2007 16:27:55 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Apr 2007 09:27:55 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of stefan.kurla@gmail.com designates 64.233.166.176 as permitted sender) Received: from [64.233.166.176] (HELO py-out-1112.google.com) (64.233.166.176) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Apr 2007 09:27:47 -0700 Received: by py-out-1112.google.com with SMTP id h31so2435662pyc for ; Tue, 24 Apr 2007 09:27:25 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=UukP0bR1mbigTjHrwrwhk8r6WXdP1O4SK5F5Xr71kXjy8RoYxdkFEPUqQ7dgPELlyPEDwpB0/YvC7nNaoDBBjB/2uycsBQe0JVxp2Yf8xTjWgYdITWwoQMuFNdgmSzHumaqM/pZ6mcvdRPqy/C1qk5XoOb+akuTNCdMuqNSdXfs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Uk7uf3wYxE3RUHtgEDyNUMECFRFTeJ8N/i2FaJgnwonJp+iN7FnK2w3u1k888Z57CLWnpoeeDb7kdi2Krwb3s6POnYlDfWAe1vbuVrRpiWMzESGVy2dRHBYl8CreJI6nJ5JEdXTtq1fvyFaiUtf0+P/QwZXEYgG4iFUQL9Ekb4U= Received: by 10.65.151.6 with SMTP id d6mr14831806qbo.1177432043964; Tue, 24 Apr 2007 09:27:23 -0700 (PDT) Received: by 10.65.75.18 with HTTP; Tue, 24 Apr 2007 09:27:23 -0700 (PDT) Message-ID: <86d42bef0704240927h1b20832dl10ff8e6221be37d2@mail.gmail.com> Date: Tue, 24 Apr 2007 11:27:23 -0500 From: "Stefan Kurla" To: users@jackrabbit.apache.org Subject: importing jackrabbit into jackrabbit MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org I am trying to import my jackrabbit svn directory into jackrabbit. This dir has a few extra files like the jackrabbit 1.0 release. Overall we are talking about 713MB on disk with 103K files and 48K folders. I use mysql for persistence and the only thing that gets saved in the filesystem are the indexes. I do a session.save() after importing each file and then I check it in. However when I import all these files into mysql 5.0 (default everything) , I get a failed to write node references: and com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'REFS_DATA' at row 1 at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2868) error on the server side. On the client (rmi) side, the error is javax.jcr.RepositoryException: /: unable to update item.: failed to write node references: d5f7e01d-1d68-470e-ba68-02b503754b68 at org.apache.jackrabbit.rmi.server.ServerObject.getRepositoryException(ServerObject.java:136) This happens when the totalFiles imported is 184 and the totalImportSize=437,643 bytes (437KB) and the totalDirs imported are 240. Something is not right..... jackrabbit cannot croak at 437KB, can it? Please advice.