CentOS6.5上升级svn到1.9.5

Intro

环境是一台开发用(pc)服务器,具体情况如下:

  • CentOS 6.5
  • Subversion(svn) 1.6.11
  • Kernel 2.6.32-431.17.1.el6.x86_64

Why

为什么要升级 svn?

因为开发同学有报 svn up 时巨慢。通过 strace 简单跟了一下,发现是系统调用 open 被调用了大几万次,耗费了 99% 的时间。google 了一下,有说是:

The Subversion working copy performs quite badly when there’s a huge number of directories, like in your case. For write operations (even only locally) to the working copy, the working copy has to be locked, which means that a lock file is created in every directory (that’s 11k file creates), then the action executes, and the those 11k files are deleted again.

Subversion 1.7 is moving to a different working copy format, that should resolve these problems. Until then there’s a few tricks you might try to speed things up, like excluding the working copy from your virus scanner, disabling file monitors on the directory (like TortoiseSvnCache), and trying to reduce the total number of directories. (Perhaps by checking out a few separate working copies)

这段话描述的情况跟我面对的情况何其相似!报慢的开发同学那个 svn up 的目录也巨大无比、目录文件众多。

然后在我的建议下,开发同学用他本地的 Subversion(1.8.8) 做了下对比测试,同样用 strace 跟,发现系统调用 open 减至一千多次,所占时间可忽略不计。

结论:升级 subversion 版本的办法看来是靠谱的。

How to

RPM 方式

这是我最初比较倾向于的方案,这种方式的复杂度在于:

  1. CentOS 6.x 的官方 yum 源和 epel 里的 subversion 的最高版本只到 1.6.x
  2. Subversion 的源代码里并没有提供可用的 .spec 文件
  3. Subversion 官网上列出的 CentOS 的 RPM 包维护的几家里两家需要注册帐号,剩下那家已经挂掉很久了。

这一切的一切看起来都表明着我只能自己手写 .spec 文件来自己 build Subversion 的 RPM 包了。

但是机智如我,又怎么能就此屈服而去做这种及其繁琐复杂且效果未知的事情呢?果然,很轻松在 google 里找到了上面需要注册帐号的两家中的一家的 yum 源的路径(http://opensource.wandisco.com/centos/6/svn-1.9/RPMS/x86_64/)。有了这个,升级就不要太简单哟

1
2
3
4
5
BASE_URL="http://opensource.wandisco.com/centos/6/svn-1.9/RPMS/x86_64";
rpm -Uvh \
${BASE_URL}/subversion-1.9.5-1.x86_64.rpm \
${BASE_URL}/subversion-perl-1.9.5-1.x86_64.rpm \
${BASE_URL}/serf-1.3.7-1.x86_64.rpm;

源代码编译

这种方式是必须要做的,因为需要先“装”一个高版本的 Subversion 先试一下。具体步骤如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
yum -y install unzip wget make gcc;
BASE_URL="http://opensource.wandisco.com/centos/6/svn-1.9/RPMS/x86_64";
rpm -ivh \
${BASE_URL}/serf-devel-1.3.7-1.x86_64.rpm;
# serf-devel 是源代码编译 Subversion>1.7 以上版本时必需
cd /usr/local/src;
wget \
http://www-eu.apache.org/dist/subversion/subversion-1.9.5.tar.gz;
wget \
http://www.sqlite.org/sqlite-amalgamation-3071501.zip;
tar xzvf subversion-1.9.5.tar.gz;
unzip sqlite-amalgamation-3071501.zip -d .
cd subversion-1.9.5;
ln -s \
../sqlite-amalgamation-3071501 \
sqlite-amalgamation;
./configure --prefix=/usr/local/subversion;
make;
make install;

Appendix