Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'scripts': 0.03; 'memory.': 0.07; 'purpose.': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:Why': 0.09; 'useless': 0.09; 'python': 0.11; 'from:addr:pitrou.net': 0.16; 'from:addr:solipsis': 0.16; 'from:name:antoine pitrou': 0.16; 'hi:': 0.16; 'measurement': 0.16; 'message-id:@post.gmane.org': 0.16; 'previously,': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject:too': 0.16; 'subject:python': 0.16; 'subject: ?': 0.16; 'module': 0.19; "python's": 0.19; 'memory': 0.22; 'header:User-Agent:1': 0.23; 'header:X-Complaints-To:1': 0.27; 'generally': 0.29; 'restrict': 0.30; 'consumption': 0.31; 'linux.': 0.31; 'ok.': 0.31; 'writes:': 0.31; 'actual': 0.34; 'but': 0.35; 'charset:us-ascii': 0.36; 'reports': 0.37; 'virtual': 0.37; 'too': 0.37; 'to:addr:python- list': 0.38; 'resource': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'our': 0.64; 'limit': 0.70; 'antoine.': 0.84; 'skip:6 20': 0.84; 'subject:much': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Antoine Pitrou Subject: Re: Why on CentOS, python consumes too much memory ? Date: Thu, 18 Jul 2013 09:21:04 +0000 (UTC) References: <9c8ca067-a230-406a-95f6-12af80da1728@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 88.163.232.20 (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0) 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1374139283 news.xs4all.nl 16000 [2001:888:2000:d::a6]:60824 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:50851 gmail.com> writes: > > Hi: > > Previously, we found that our python scripts consume too much memory. So I use python's resource module to > restrict RLIMIT_AS's soft limit and hard limit to 200M. > On my RHEL5.3(i386)+python2.6.2, it works OK. But on CentOS 6.2(x86_64)+python2.6.6, it reports memory > error(exceeding 200M). Take a look at http://www.selenic.com/smem/ for accurate measurement of actual memory consumption under Linux. Virtual memory size is generally useless for this purpose. Regards Antoine.