[Python-Dev] hg.python.org is slow

2013-08-27 Thread Charles-François Natali
Hi,

I'm trying to checkout a pristine clone from
ssh://h...@hg.python.org/cpython, and it's taking forever:

07:45:35.605941 IP 192.168.0.23.43098 
virt-7yvsjn.psf.osuosl.org.ssh: Flags [.], ack 22081460, win 14225,
options [nop,nop,TS val 368519 ecr 2401783356], length 0
07:45:38.558348 IP virt-7yvsjn.psf.osuosl.org.ssh 
192.168.0.23.43098: Flags [.], seq 22081460:22082908, ack 53985, win
501, options [nop,nop,TS val 2401784064 ecr 368519], length 1448
07:45:38.558404 IP 192.168.0.23.43098 
virt-7yvsjn.psf.osuosl.org.ssh: Flags [.], ack 22082908, win 14225,
options [nop,nop,TS val 369257 ecr 2401784064], length 0
07:45:39.649995 IP virt-7yvsjn.psf.osuosl.org.ssh 
192.168.0.23.43098: Flags [.], seq 22082908:22084356, ack 53985, win
501, options [nop,nop,TS val 2401784367 ecr 369257], length 1448


See the time to just get an ACK?

Am I the only one experiencing this?

Cheers,

cf
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] hg.python.org is slow

2013-08-27 Thread Ned Deily
In article 
CAH_1eM2Muk364=i2arpuhyks35r5rh8sl3eiwelkpuchxv7...@mail.gmail.com,
 Charles-Francois Natali cf.nat...@gmail.com wrote:
 I'm trying to checkout a pristine clone from
 ssh://h...@hg.python.org/cpython, and it's taking forever:
 
 07:45:35.605941 IP 192.168.0.23.43098 
 virt-7yvsjn.psf.osuosl.org.ssh: Flags [.], ack 22081460, win 14225,
 options [nop,nop,TS val 368519 ecr 2401783356], length 0
 07:45:38.558348 IP virt-7yvsjn.psf.osuosl.org.ssh 
 192.168.0.23.43098: Flags [.], seq 22081460:22082908, ack 53985, win
 501, options [nop,nop,TS val 2401784064 ecr 368519], length 1448
 07:45:38.558404 IP 192.168.0.23.43098 
 virt-7yvsjn.psf.osuosl.org.ssh: Flags [.], ack 22082908, win 14225,
 options [nop,nop,TS val 369257 ecr 2401784064], length 0
 07:45:39.649995 IP virt-7yvsjn.psf.osuosl.org.ssh 
 192.168.0.23.43098: Flags [.], seq 22082908:22084356, ack 53985, win
 501, options [nop,nop,TS val 2401784367 ecr 369257], length 1448
 
 
 See the time to just get an ACK?
 
 Am I the only one experiencing this?

At the moment (about 90 minutes after you posted this), I was just did a 
reasonable-sized pull via ssh: with no apparent delays.  But I'm a *lot* 
closer to the server than you are.  BTW, do you have ssh compression 
enabled for that host?

-- 
 Ned Deily,
 n...@acm.org

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] hg.python.org is slow

2013-08-27 Thread Antoine Pitrou
Le Tue, 27 Aug 2013 08:00:09 +0200,
Charles-François Natali cf.nat...@gmail.com a écrit :
 Hi,
 
 I'm trying to checkout a pristine clone from
 ssh://h...@hg.python.org/cpython, and it's taking forever:
 
 07:45:35.605941 IP 192.168.0.23.43098 
 virt-7yvsjn.psf.osuosl.org.ssh: Flags [.], ack 22081460, win 14225,
 options [nop,nop,TS val 368519 ecr 2401783356], length 0
 07:45:38.558348 IP virt-7yvsjn.psf.osuosl.org.ssh 
 192.168.0.23.43098: Flags [.], seq 22081460:22082908, ack 53985, win
 501, options [nop,nop,TS val 2401784064 ecr 368519], length 1448
 07:45:38.558404 IP 192.168.0.23.43098 
 virt-7yvsjn.psf.osuosl.org.ssh: Flags [.], ack 22082908, win 14225,
 options [nop,nop,TS val 369257 ecr 2401784064], length 0
 07:45:39.649995 IP virt-7yvsjn.psf.osuosl.org.ssh 
 192.168.0.23.43098: Flags [.], seq 22082908:22084356, ack 53985, win
 501, options [nop,nop,TS val 2401784367 ecr 369257], length 1448
 
 
 See the time to just get an ACK?

Sounds a lot like a network problem, then? Have you tried a traceroute?

(HTTP cloning works fine here, from a free.fr connection; I'll try a
ssh clone tonight if you're still having problems.)

cheers

Antoine.


___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] hg.python.org is slow

2013-08-27 Thread Charles-François Natali
2013/8/27 Antoine Pitrou solip...@pitrou.net:
 Sounds a lot like a network problem, then?

If I'm the only one, it's likely, although these pathological timeouts
are transient, and I don't have any problem with other servers (my
line sustains 8Mb/s without problem).

 Have you tried a traceroute?

I'll try tonight if this persists, and keep you posted.

2013/8/27 Ned Deily n...@acm.org:
 BTW, do you have ssh compression enabled for that host?

Yep.

cf
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] hg.python.org is slow

2013-08-27 Thread Antoine Pitrou
Le Tue, 27 Aug 2013 10:37:00 +0200,
Charles-François Natali cf.nat...@gmail.com a écrit :

 2013/8/27 Antoine Pitrou solip...@pitrou.net:
  Sounds a lot like a network problem, then?
 
 If I'm the only one, it's likely, although these pathological timeouts
 are transient, and I don't have any problem with other servers (my
 line sustains 8Mb/s without problem).

Well, network problem doesn't mean the problem is on your side :-)
We've had network problems with the hosting in the past, although they
were noticed by many people usually (mostly non-North American people).

Regards

Antoine.


___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com