forked from firecracker-microvm/firecracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory.py
81 lines (66 loc) · 2.47 KB
/
memory.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
"""Utilities for measuring memory utilization for a process."""
import time
from subprocess import run, CalledProcessError, PIPE
from threading import Thread
MAX_MEMORY = 5 * 1024
MEMORY_COP_TIMEOUT = 1
class MemoryUsageExceededException(Exception):
"""A custom exception containing details on excessive memory usage."""
def __init__(self, usage):
"""Compose the error message containing the memory consumption."""
super(MemoryUsageExceededException, self).__init__(
'Memory usage exceeded maximum threshold. Usage: {} MiB.\n'
.format(usage)
)
def threaded_memory_monitor(mem_size_mib, pid, exceeded_queue):
"""Spawns a thread that monitors memory consumption of a process.
If at some point the memory used exceeds mem_size_mib, the calling thread
will trigger error.
"""
memory_cop_thread = Thread(target=_memory_cop, args=(
mem_size_mib,
pid,
exceeded_queue
))
memory_cop_thread.start()
def _memory_cop(mem_size_mib, pid, exceeded_queue):
"""Thread for monitoring memory consumption of some pid.
`pmap` is used to compute the memory overhead. If it exceeds
the maximum value, it is pushed in a thread safe queue and memory
monitoring ceases. It is up to the caller to check the queue.
"""
pmap_cmd = 'pmap -xq {}'.format(pid)
while True:
mem_total = 0
try:
pmap_out = run(
pmap_cmd,
shell=True,
check=True,
stdout=PIPE
).stdout.decode('utf-8').split('\n')
except CalledProcessError:
break
for line in pmap_out:
tokens = line.split()
if not tokens:
break
try:
total_size = int(tokens[1])
rss = int(tokens[2])
except ValueError:
# This line doesn't contain memory related information.
continue
if total_size == mem_size_mib * 1024:
# This is the guest's memory region.
# TODO Check for the address of the guest's memory instead.
continue
mem_total += rss
if mem_total > MAX_MEMORY:
exceeded_queue.put(mem_total)
return
if not mem_total:
return
time.sleep(MEMORY_COP_TIMEOUT)