From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45917) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d25gA-0001SA-5b for guix-patches@gnu.org; Sat, 22 Apr 2017 20:47:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d25g6-0002gZ-QC for guix-patches@gnu.org; Sat, 22 Apr 2017 20:47:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36768) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d25g6-0002gP-MO for guix-patches@gnu.org; Sat, 22 Apr 2017 20:47:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d25g6-0003Ff-Gg for guix-patches@gnu.org; Sat, 22 Apr 2017 20:47:02 -0400 Subject: bug#26611: [PATCH] guix-daemon.service: bump amount of parallel threads up to 8192 Resent-To: guix-patches@gnu.org Resent-Message-ID: Date: Sat, 22 Apr 2017 20:46:32 -0400 From: Leo Famulari Message-ID: <20170423004632.GD10153@jasmine> References: <20170422173303.27222-1-slyfox@inbox.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170422173303.27222-1-slyfox@inbox.ru> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26611-done@debbugs.gnu.org Closing! On Sat, Apr 22, 2017 at 06:33:03PM +0100, Sergei Trofimovich wrote: > Noticed original limit as a testsuite failure on go-1.8.1: > > ##### ../misc/cgo/test > --- FAIL: Test18146 (2.93s) > issue18146.go:121: syscall.Exec failed: exit status 2 > runtime/cgo: pthread_create failed: Resource temporarily unavailable > > * etc/guix-daemon.service.in: changed TasksMax from 1024 to 8192 > > Signed-off-by: Sergei Trofimovich > --- > etc/guix-daemon.service.in | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/etc/guix-daemon.service.in b/etc/guix-daemon.service.in > index ffe4cf9bd..2437a08f6 100644 > --- a/etc/guix-daemon.service.in > +++ b/etc/guix-daemon.service.in > @@ -13,7 +13,8 @@ StandardOutput=syslog > StandardError=syslog > > # See . > -TasksMax=1024 > +# go-1.8.1 testsuire requires more than 1024 tasks. > +TasksMax=8192 > > [Install] > WantedBy=multi-user.target > -- > 2.12.2 > > > >