Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 69F9F10428 for ; Fri, 2 May 2014 10:23:34 +0000 (UTC) Received: (qmail 11935 invoked by uid 500); 2 May 2014 10:23:34 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 11486 invoked by uid 500); 2 May 2014 10:23:33 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 11479 invoked by uid 99); 2 May 2014 10:23:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 May 2014 10:23:32 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy includes SPF record at spf.trusted-forwarder.org) Received: from [80.67.31.39] (HELO smtprelay01.ispgateway.de) (80.67.31.39) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 May 2014 10:23:26 +0000 Received: from [70.116.59.133] (helo=[192.168.7.57]) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from ) id 1WgAcR-0003u6-TO for users@subversion.apache.org; Fri, 02 May 2014 12:23:04 +0200 From: Ryan Schmidt Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: Simultaneous svnserve requests lead to "Can't read from connection: Connection reset by peer" Message-Id: Date: Fri, 2 May 2014 05:22:58 -0500 To: Subversion Users Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) X-Mailer: Apple Mail (2.1874) X-Df-Sender: MzY4ODE4 X-Virus-Checked: Checked by ClamAV on apache.org Hello, I=92m writing a script wherein I run many different =93svn export=94 = operations. To try to speed things up, I have the script running up to 8 = of these simultaneously, and I=92m occasionally getting this error: svn: E000054: Unable to connect to a repository at URL = 'svn://example.local/trunk/foo' svn: E000054: Can't read from connection: Connection reset by peer Is there a limit on the number of simultaneous connections I can make = from a single svn client to svnserve? The client and server are on a local network connected by 100mbit = Ethernet. Both are 64-bit Intel Macs running OS X 10.9.2 with Subversion = 1.8.8 installed using MacPorts. The server is started with a shell = script containing: #!/bin/sh svnserve --daemon --foreground --read-only --log-file /dev/stdout = --client-speed 100 --root "$(dirname "$0")" Here is a simplified script that reproduces the problem: #!/bin/sh URL=3Dsvn://example.local/trunk/foo DIR=3D/tmp/svntest rm -rf ${DIR}1 ${DIR}2 ${DIR}3 ${DIR}4 ${DIR}5 ${DIR}6 ${DIR}7 ${DIR}8 = ${DIR}9 ${DIR}10 svn export ${URL} ${DIR}1 & svn export ${URL} ${DIR}2 & svn export ${URL} ${DIR}3 & svn export ${URL} ${DIR}4 & svn export ${URL} ${DIR}5 & svn export ${URL} ${DIR}6 & svn export ${URL} ${DIR}7 & svn export ${URL} ${DIR}8 & svn export ${URL} ${DIR}9 & svn export ${URL} ${DIR}10 & (3 of the 10 exports fail with the above error) When the error occurs, svnserve=92s output doesn=92t mention any error = occurring.