Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.019 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'skip:[ 20': 0.03; 'interpreter': 0.04; 'sys': 0.05; 'python': 0.09; '/dev/null': 0.09; 'subject:files': 0.09; 'thread,': 0.09; 'cc:addr:python- list': 0.10; 'pipes': 0.16; 'relates': 0.16; 'wrote:': 0.17; 'cc:2**1': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply- To:1': 0.25; 'am,': 0.27; 'cc:addr:gmail.com': 0.27; 'possible,': 0.27; 'message-id:@mail.gmail.com': 0.27; 'cat': 0.29; 'subject:size': 0.29; "i'm": 0.29; 'related': 0.30; 'up.': 0.31; 'system,': 0.32; 'received:google.com': 0.34; 'compared': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'quite': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'sure': 0.38; 'shows': 0.38; 'takes': 0.39; 'easily': 0.39; 'subject:-': 0.40; 'header:Received:5': 0.40; 'think': 0.40; 'real': 0.61; 'first': 0.61; 'times': 0.63; 'more': 0.63; 'andrea': 0.84; 'nice,': 0.84; 'worth,': 0.84; 'angel': 0.93; 'subject:limited': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Pww1Y5R9prN6bh1a7txo/rKAIoFXs4vNsIji8/CuNys=; b=c09f7VvdBfFH9LtSSeiZh8+CTYkwYjmS0pZVcMFsDYg6I0LQNAZhFrHR9UXRbE6cO9 nVXsdbIBlw3rBr4FqD8aXnoK5Tt89SooZ4oNYxSMlrFyRjFAoTOsKKZKlZvLmkEYfDjr zika25Ey9CccUS4eNX7zl2e0rJwiPeBC6jOab0uUSrxNNB2SbGgP4DNLMWWjVGs5aaYy gncui6cZiLB3k3d2DPbFDiQC+/FlNtBLPMTaT9TmTkw7H/dbUUad91o4sgEPSLdit+y1 gTgUyL6MqCldStJLh275JC3e9oprxNGI5OfyOpfUv9OzctK0WKUbP1/1pgA6r7VVO2Mp FIJg== MIME-Version: 1.0 In-Reply-To: <50A3C287.80707@davea.name> References: <509ab0fa$0$6636$9b4e6d93@newsspool2.arcor-online.net> <509AD812.2060605@gmail.com> <87lie4lnxr.fsf@nitrogen.i-did-not-set--mail-host-address--so-tickle-me> <87fw4clg8b.fsf@nitrogen.i-did-not-set--mail-host-address--so-tickle-me> <50A3C287.80707@davea.name> Date: Wed, 14 Nov 2012 16:16:16 +0000 Subject: Re: creating size-limited tar files From: andrea crotti To: d@davea.name Content-Type: text/plain; charset=ISO-8859-1 Cc: Python X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 39 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1352909779 news.xs4all.nl 6929 [2001:888:2000:d::a6]:35414 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33345 2012/11/14 Dave Angel : > On 11/14/2012 10:56 AM, andrea crotti wrote: >> Ok this is all very nice, but: >> >> [andrea@andreacrotti tar_baller]$ time python2 test_pipe.py > /dev/null >> >> real 0m21.215s >> user 0m0.750s >> sys 0m1.703s >> >> [andrea@andreacrotti tar_baller]$ time ls -lR /home/andrea | cat > /dev/null >> >> real 0m0.986s >> user 0m0.413s >> sys 0m0.600s >> >> >> >> >> So apparently it's way slower than using this system, is this normal? > > I'm not sure how this timing relates to the thread, but what it mainly > shows is that starting up the Python interpreter takes quite a while, > compared to not starting it up. > > > -- > > DaveA > Well it's related because my program has to be as fast as possible, so in theory I thought that using Python pipes would be better because I can get easily the PID of the first process. But if it's so slow than it's not worth, and I don't think is the Python interpreter because it's more or less constantly many times slower even changing the size of the input..