From users-return-15207-apmail-jackrabbit-users-archive=jackrabbit.apache.org@jackrabbit.apache.org Mon May 03 14:33:20 2010 Return-Path: Delivered-To: apmail-jackrabbit-users-archive@minotaur.apache.org Received: (qmail 66131 invoked from network); 3 May 2010 14:33:20 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 3 May 2010 14:33:20 -0000 Received: (qmail 80793 invoked by uid 500); 3 May 2010 14:33:19 -0000 Delivered-To: apmail-jackrabbit-users-archive@jackrabbit.apache.org Received: (qmail 80729 invoked by uid 500); 3 May 2010 14:33:19 -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 80720 invoked by uid 99); 3 May 2010 14:33:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 May 2010 14:33:19 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of fmandelbaum@gmail.com designates 209.85.212.42 as permitted sender) Received: from [209.85.212.42] (HELO mail-vw0-f42.google.com) (209.85.212.42) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 May 2010 14:33:12 +0000 Received: by vws20 with SMTP id 20so791025vws.1 for ; Mon, 03 May 2010 07:32:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=JPXvpL5eJtJIyDYqOaRudtjhTsTGZ2m41apyjtFF8Bk=; b=JhiCyaIgxCmSnIJfNkbi8nsSC2RYVK9dZvEvikrzDt+mvdpqOSmelm4lj1qG90Ss/T MWM/nCBOUH9IdySq0tunyFAbOE0uyP4dAqJn8jUwVsyQ+A1lXXdq2qBA8HtE0tXxvucd FjGNyxxprnypHaKmk8hAf3Zy1QKzqvp7gtDvY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=R0Tqvu4H5qCWh38sCOJUqnWS7SKrKeJ7N1g4c/AqBvdMTUlKPhD7bvRG/x9nFglku/ pAkN5cbrVG/1nZg9qB4RYY1yVZaQoHu69J1LUOi1QXTHM6KOxEbDexjGBsejxJq4Zs4D h+R2Cus+uNXDkva78Xan9HM7vuhU+6Ehz5OOE= Received: by 10.220.107.227 with SMTP id c35mr10165070vcp.162.1272897171022; Mon, 03 May 2010 07:32:51 -0700 (PDT) Received: from [192.168.1.10] ([190.247.45.45]) by mx.google.com with ESMTPS id b22sm23909362vcp.8.2010.05.03.07.32.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 03 May 2010 07:32:49 -0700 (PDT) Message-ID: <4BDEDE8C.5040802@gmail.com> Date: Mon, 03 May 2010 11:32:44 -0300 From: =?UTF-8?B?RmFiacOhbiBNYW5kZWxiYXVt?= User-Agent: Thunderbird 2.0.0.24 (X11/20100411) MIME-Version: 1.0 To: users@jackrabbit.apache.org Subject: Problems with hot backup of running JackRabbit 1.4.11 repo with rsync Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hello there, I have a JackRabbit 1.4.11 repo running in-process (Model 1 deployment) for my application. This repo is configured to use a DataStore, like this: ... >From what I read about the DataStore at http://wiki.apache.org/jackrabbit/DataStore, and about backing up at http://wiki.apache.org/jackrabbit/BackupAndMigration, I see that hot backup (backing the repo up while it's running) is supported for this store. So, I go and happily fire rsync -rvP repo_location/ backup_location/ The 1st time it takes some time, because, as expected, it has to copy all files. Right after the rsync finishes, I try to run it again, exactly the same CLI, the repo's usage is very low, or even none... however rsync transfers *all* files again, as if they've all changed. Why is rsync transferring all files again? If use is low or none, shouldn't the repository files for the running repository be the same as before? What am I doing wrong? Thanks in advance for your answers.