vote up 2 vote down star
4

I am using an SVN repository for my web development work. I have a development site set up which holds a checkout of the repository.

I have set up an SVN post-commit hook so that whenever a commit is made to the repository the development site is updated:

cd /home/www/dev_ssl
/usr/bin/svn up

This works fine but due to the size of the repository the updates take a long time (approx. 3 minutes) which is rather frustrating when making regular commits. What I'd like is to change the post-commit hook to only update those files/directories that have been committed but I don't know how to go about doing this. Updating the "lowest common directory" would probably be the best solution, e.g.

If committing the follow files:

  • /branches/feature_x/images/logo.jpg
  • /branches/feature_x/css/screen.css

It would update the directory: /branches/feature_x/

Can anyone help me create a solution that achieves this please?

Thanks!

Update:

  • The repository and development site are located on the same server so network issues shouldn't be involved.
  • CPU usage is very low, and I/O should be ok (it's running on hi-spec dedicated server)
  • The development site is approx. 7.5GB in size and contains approx. 600,000 items, this is mainly due to having multiple branches/tags
flag

6 Answers

vote up 4 vote down check

You might use svnlook dirs-changed and svn up -N to update only the contents of each folder changed:

cd /home/www/dev_ssl
svnlook dirs-changed [REPOS] -r [REV] | xargs /usr/bin/svn up -N

Or, if per-file might be better for you (using sed to strip action characters):

svnlook changed [REPOS] -r [REV] | sed "s/^....//" | xargs /usr/bin/svn up
link|flag
vote up 0 vote down

Have a look to this home made script : http://envrac.blogdns.net/shellscripts/export-automatique-d-un-projet-subversio !

link|flag
vote up 0 vote down

Hi,

I'm out of luck with bash script you gave us. Simply it doesn't work for me, if i put

"#!/bin/bash /usr/bin/svn up /home/www/somefolder"

it works perfect, but due to big size of svn repository it take a long time. Any help would be great.

Thanks, Nikola

link|flag
vote up 0 vote down

SVN Export is a viable alternative to an update and may go faster

link|flag
vote up 0 vote down

For Windows:

for /F "eol=¬ delims=¬" %%A in ('svnlook dirs-changed %1 -r %2') do svn export "file:///c:/path/to/repo/%%A" "c:/svn_exports/%%A"  --force

Just copy the above into your post-commit hook batch file (or window for VisualSVN) and you're done - you'll get the updated directory exported to c:\

You could try using %1 instead of c:/path/to/repo above, but I found that it didn't work because VisualSVN give the %1 path with back-slash path separators, and svnlook gives them with forward-slashes. This doesn't seem to work right so I hard-code the repo path (I got "The filename, directory name, or volume label syntax is incorrect" errors)

link|flag
vote up -1 vote down

I have done the exact some thing as you with post-commit hooks before, and it worked perfectly.

I am guessing that you are coming at the problem from the wrong direction. An svn update is normally a very quick operation. The problem is more likely to be a slow network connection to the repo, or a taxed computer either cpu or i/o. Any operation you do to try to find out what changed and update is either prone to failure as you are circumventing svn process, or going to take as long or longer than a simple svn update would. I recommend you try to address the root cause of the problem.

If your code base is really that large that it justifiably takes a long time to update, you might consider breaking the repo up into several smaller repos, and then tying them all back together using external references under one master repo.

link|flag
I would have answered the same thing, but after profiling subversion with a 70K files 23K directory repository I found that just locking all these folders can take minutes :( – Bert Huijben Feb 11 at 0:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.