I had searched on the web for quite some times, but still couldn't find a good guide on setting a Gerrit mirror.
I have a Gerrit server (named A), and I want to setup a mirror to a new server (named B). I want pull from B instead of using the processing power from A because A serves as the main Gerrit server and I don't want to put more workload on it when I can mirror it using SSH from B.
I'm using H2 database and I want to mirror the whole Gerrit + all of its Git repos, not just simply Git repos because I want to keep the permissions/history from the Gerrit database too.
I had managed to narrow down 2 possible ways to do it:
1) Using 'gerrit replicate' http://gerrit.googlecode.com/svn/documentation/2.1.6/cmd-replicate.html Not sure what it meant by "[--url < PATTERN >]". Where should I put run this command? Is it on server A or B?
2) Use 'rsync' which is OK, but then I cannot sync review_site/etc/gerrit.config because it contains the IP of server A and don't want to have that on server B.
Thanks in advanced. Sam.