From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: Re: Parallel downloads Date: Sun, 03 Nov 2019 15:48:53 +0100 Message-ID: <87k18h3tii.fsf@gnu.org> References: <87pnid3qdh.fsf@ambrevar.xyz> <87k18kyjlm.fsf@nckx> <87wock97ye.fsf@ambrevar.xyz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:39081) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iRHBX-00057p-Ox for guix-devel@gnu.org; Sun, 03 Nov 2019 09:48:56 -0500 In-Reply-To: <87wock97ye.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Thu, 31 Oct 2019 17:48:57 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Pierre Neidhardt Cc: guix-devel@gnu.org Hi Pierre, Pierre Neidhardt skribis: > I'm not sure I understand: if I run > > guix build -M 4 vlc > > download progress bars are updated one at a time. Or am I mistaken? With -M4 you could potentially have 4 substitutions (downloads) going on in parallel. Tobias is right: the daemon works in terms of =E2=80=9Cjobs=E2=80=9D, where= a job can be either a build or a substitution (a download). =E2=80=98--max-jobs=E2=80= =99 controls that. Ludo=E2=80=99.