File: when_ready.conf.py

package info (click to toggle)
gunicorn 19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,036 kB
  • sloc: python: 11,578; makefile: 153; xml: 122; sh: 76
file content (38 lines) | stat: -rw-r--r-- 1,067 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import signal
import commands
import threading
import time

max_mem = 100000

class MemoryWatch(threading.Thread):
    
    def __init__(self, server, max_mem):
        super(MemoryWatch, self).__init__()
        self.daemon = True
        self.server = server
        self.max_mem = max_mem
        self.timeout = server.timeout / 2

    def memory_usage(self, pid):
        try:
            out = commands.getoutput("ps -o rss -p %s" % pid)
        except IOError:
            return -1
        used_mem = sum(int(x) for x in out.split('\n')[1:])
        return used_mem
    
        
    def run(self):
        while True:
            for (pid, worker) in list(self.server.WORKERS.items()):
                if self.memory_usage(pid) > self.max_mem:
                    self.server.log.info("Pid %s killed (memory usage > %s)", 
                        pid, self.max_mem)
                    self.server.kill_worker(pid, signal.SIGQUIT)
            time.sleep(self.timeout)
            

def when_ready(server):
    mw = MemoryWatch(server, max_mem)
    mw.start()