From mboxrd@z Thu Jan 1 00:00:00 1970 From: lekensteyn at gmail.com (Peter Wu) Date: Thu, 25 Apr 2013 17:56:36 +0200 Subject: New Infrastructure: Mostly Complete In-Reply-To: References: Message-ID: <6510654.j4LWdo54bM@al> Hi, On Wednesday 24 April 2013 00:59:17 Jason A. Donenfeld wrote: > Our home has moved to some shiny new multi-core hardware in a > highspeed datacenter. Expect less downtime on git.zx2c4.com, as well > as proper git:// access to the repositories. > > zx2c4 at thinkpad ~ $ git clone git://git.zx2c4.com/cgit > Cloning into 'cgit'... > remote: Counting objects: 4412, done. > remote: Compressing objects: 100% (1552/1552), done. > remote: Total 4412 (delta 3180), reused 3923 (delta 2852) > Receiving objects: 100% (4412/4412), 771.26 KiB | 661 KiB/s, done. > Resolving deltas: 100% (3180/3180), done. > > The URL is the same as always: http://git.zx2c4.com/cgit and > http://git.zx2c4.com/cgit/about . > > Let me know if you encounter any growing pains. HTTP throws Bad Gateway and the git protocol is very slow. Counting objects shows up after five seconds and does not fly as with the kernel git repo or my personal one. The compressing objects stage advances with 4 kbit/s according to vnstat. Some information that may help you: $ host git.zx2c4.com git.zx2c4.com is an alias for krantz.zx2c4.com. krantz.zx2c4.com has address 192.95.5.69 krantz.zx2c4.com has IPv6 address 2607:5300:60:6b0::c05f:54 $ git clone git://git.zx2c4.com/cgit Cloning into 'cgit'... remote: Counting objects: 4419, done. remote: Compressing objects: 100% (1559/1559), done. remote: Total 4419 (delta 3181), reused 3922 (delta 2851) Receiving objects: 100% (4419/4419), 784.10 KiB | 73 KiB/s, done. Resolving deltas: 100% (3181/3181), done. $ time git clone git://192.95.5.69/cgit Cloning into 'cgit'... remote: Counting objects: 4419, done. remote: Compressing objects: 100% (1559/1559), done. remote: Total 4419 (delta 3181), reused 3922 (delta 2851) Receiving objects: 100% (4419/4419), 784.10 KiB | 91 KiB/s, done. Resolving deltas: 100% (3181/3181), done. real 1m40.357s user 0m0.124s sys 0m0.156s $ time git clone git://[2607:5300:60:6b0::c05f:545]/cgit Cloning into 'cgit'... remote: Counting objects: 4419, done. remote: Compressing objects: 100% (1559/1559), done. remote: Total 4419 (delta 3181), reused 3922 (delta 2851) Receiving objects: 100% (4419/4419), 784.10 KiB | 67 KiB/s, done. Resolving deltas: 100% (3181/3181), done. real 1m20.684s user 0m0.120s sys 0m0.164s This is from the Netherlands. Thanks, Peter