Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 932E610DF4 for ; Fri, 5 Jul 2013 10:54:05 +0000 (UTC) Received: (qmail 70527 invoked by uid 500); 5 Jul 2013 10:54:04 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 70227 invoked by uid 500); 5 Jul 2013 10:54:02 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 70210 invoked by uid 99); 5 Jul 2013 10:54:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jul 2013 10:54:00 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [66.111.4.25] (HELO out1-smtp.messagingengine.com) (66.111.4.25) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Jul 2013 10:53:55 +0000 Received: from compute5.internal (compute5.nyi.mail.srv.osa [10.202.2.45]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id A749E207D7; Fri, 5 Jul 2013 06:53:34 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute5.internal (MEProxy); Fri, 05 Jul 2013 06:53:34 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=date:from:to:cc:subject:message-id :references:mime-version:content-type:in-reply-to; s=mesmtp; bh= htagEmRoor3fYUTNJ0EWrDIqIt8=; b=m5fQ+LNOPGIUPotDPCKTiQKapRmkx8eC Psz8Q69Jof/mvuZZgG8PFTd+GeBDsQ4X11R8n/Nc4UQKjdt/tGnV1DzUYNzlrQjP RcbsQG6IQJM1OrjoyPAAD9w4CEgZ9HfkDCxVyaGFO9/L8/yiZWQUmI0iE7VcaSWs IGKvGN89/5A= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=date:from:to:cc:subject:message-id :references:mime-version:content-type:in-reply-to; s=smtpout; bh=htagEmRoor3fYUTNJ0EWrDIqIt8=; b=swtzicDJpbLtWlAZCKudHx0wHji3 o+1JYodBQeBNSNInzHDUe2JSV/J/v2frZKYAO61CoDPa1xk8pM6N7XJSgtFOjHB6 4wd47s51nUp4UmMThaz0MH6jEMbBljx6EQELITn459+3C24hoTv6sdb+MTBKJ6bV JbU+nk4SMUJiSJo= X-Sasl-enc: SRDPhPbx9sA5YbKZS4uhbw8GWP4TzrCvgk+YxmYnZm3R 1373021614 Received: from lp-shahaf.local (unknown [79.176.166.90]) by mail.messagingengine.com (Postfix) with ESMTPA id 8A949680206; Fri, 5 Jul 2013 06:53:33 -0400 (EDT) Date: Fri, 5 Jul 2013 13:53:24 +0300 From: Daniel Shahaf To: David Schweikert Cc: Andreas Stieger , users@subversion.apache.org, Johan Corveleyn Subject: Re: Updatable svn export Message-ID: <20130705105324.GC3055@lp-shahaf.local> References: <20130704130433.GF13274@schweikert.ch> <20130704133057.GG13274@schweikert.ch> <51D5BBB3.4070507@gmx.de> <20130705060053.GI13274@schweikert.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130705060053.GI13274@schweikert.ch> User-Agent: Mutt/1.5.18 (2008-05-17) X-Virus-Checked: Checked by ClamAV on apache.org David Schweikert wrote on Fri, Jul 05, 2013 at 08:00:54 +0200: > On Thu, Jul 04, 2013 at 19:15:15 +0100, Andreas Stieger wrote: > > > We are using Subversion 1.7.10 and the working copy is on NFS. Having it > > > on the local filesystem makes it faster, but I thought that it could be > > > even faster if it wouldn't traverse the whole tree. > > > > A usual solution for this is to have a working copy locally, and a > > post-commit hook that, in addition to the update, runs rsync to the slow > > exported file system, with the required options to exclude .svn and > > honouring mtime for detection of changes. > > That's finally exactly what I did to optimize the performance. Still, > rsync needs to walk the NFS tree, so it probably could be faster with the > knowledge of the changesets. You could use 'svnlook tree' to construct an argument to rsync's '--filter' or '--files-from'.