Re: Pylons and memory use

2008-06-24 Thread John Salerno
I don't think so. I think it's just for running processes. On Jun 10, 4:52 pm, Jonathan Vanasco [EMAIL PROTECTED] wrote: does that 80MB include database memory? realistically speaking, you're fine with 80MB on an app. most VPS systems will give you 256MB guaranteed for $20/month

Re: Pylons and memory use

2008-06-09 Thread Marcin Kasperski
I was thinking about signing up with a web host that supports Pylons (among many other things) and one of the differences between the various plans is application memory for long-running processes. The plan I'd like to sign up for has 80MB. Does anyone know if this is enough for basic Pylons

Re: Pylons and memory use

2008-06-08 Thread Garland, Ken R
I'm using WebFaction with a decent size app and using the 80MB plan. every once in a while I forget and leave paster in --reload instead of --daemon while I'm developing and it grows to about 100MB. They are nice about sending a reminder and a trouble ticket instead of charging me, but the last

Re: Pylons and memory use

2008-06-08 Thread Damjan
cat /proc/pid/status will give you a lot of information about memory usage. ex: ... VmPeak: 2316 kB VmSize: 2212 kB VmLck: 0 kB VmHWM: 940 kB VmRSS: 936 kB VmData: 164 kB VmStk:84 kB VmExe:12 kB VmLib: 1876 kB VmPTE:20 kB ... On Jun

Re: Pylons and memory use

2008-06-08 Thread Brandon Singer
On Sun, 2008-06-08 at 11:22 -0400, Garland, Ken R wrote: I'm using WebFaction with a decent size app and using the 80MB plan. every once in a while I forget and leave paster in --reload instead of --daemon while I'm developing and it grows to about 100MB. They are nice about sending a

Re: Pylons and memory use

2008-06-08 Thread Garland, Ken R
Sure, #!/bin/bash mode=`ps -u garlandkr -o rss,etime,pid,command | awk '/paster/ !/awk/ {sub(--,);print$7}'` if [ $mode = daemon ]; then echo daemon mode elif [ $mode = reload ]; then echo reload mode python ~/mailer.py WebFaction Issue Paster is running in reload mode, fix it. fi

Re: Pylons and memory use

2008-06-07 Thread Ben Bangert
On Jun 6, 2008, at 9:43 PM, John Salerno wrote: I was thinking about signing up with a web host that supports Pylons (among many other things) and one of the differences between the various plans is application memory for long-running processes. The plan I'd like to sign up for has 80MB. Does

Re: Pylons and memory use

2008-06-07 Thread Jose Galvez
newbie question - how do you determine how much memeory your app is using, on Linux of course Jose Ben Bangert wrote: On Jun 6, 2008, at 9:43 PM, John Salerno wrote: I was thinking about signing up with a web host that supports Pylons (among many other things) and one of the differences

Re: Pylons and memory use

2008-06-07 Thread Mike Orr
On Sat, Jun 7, 2008 at 10:57 AM, Jose Galvez [EMAIL PROTECTED] wrote: newbie question - how do you determine how much memeory your app is using, on Linux of course Jose $ ps aux | grep kopete sluggo9278 1.4 3.9 92324 38792 ?S10:31 1:20 kopete -caption Kopete -icon

Re: Pylons and memory use

2008-06-07 Thread John Salerno
On Jun 7, 2:24 am, Ben Bangert [EMAIL PROTECTED] wrote: On Jun 6, 2008, at 9:43 PM, John Salerno wrote: The PylonsHQ site takes up about 39 megs of memory (25mb on launch, and I cache a bunch of docs to memory which grows it to about 39). I don't see why 80mb wouldn't be enough. Thanks very

Re: Pylons and memory use

2008-06-07 Thread Jose Galvez
thanks Jose Mike Orr wrote: On Sat, Jun 7, 2008 at 10:57 AM, Jose Galvez [EMAIL PROTECTED] wrote: newbie question - how do you determine how much memeory your app is using, on Linux of course Jose $ ps aux | grep kopete sluggo9278 1.4 3.9 92324 38792 ?S10:31

Pylons and memory use

2008-06-06 Thread John Salerno
Hi everyone. I posted this on the Python newsgroup and it was recommended I try here (I didn't know about this group before!): I was thinking about signing up with a web host that supports Pylons (among many other things) and one of the differences between the various plans is application