Cadvisor中有关pod内存使用率的指标
指标 | 说明 |
---|---|
container_memory_cache | 高速缓存(cache)的使用量。cache是位于CPU与主内存间的一种容量较小但速度很高的存储器,是为了提高cpu和内存之间的数据交换速度而设计的。 |
container_memory_rss | RSS内存,即常驻内存集(Resident Set Size),是分配给进程使用实际物理内存,而不是磁盘上缓存的虚拟内存。RSS内存包括所有分配的栈内存和堆内存,以及加载到物理内存中的共享库占用的内存空间,但不包括进入交换分区的内存。 |
container_memory_swap | 虚拟内存使用量。虚拟内存(swap)指的是用磁盘来模拟内存使用。当物理内存快要使用完或者达到一定比例,就可以把部分不用的内存数据交换到硬盘保存,需要使用时再调入物理内存。 |
container_memory_usage_bytes | 当前使用的内存量,包括所有使用的内存,不管有没有被访问 (包括 cache, rss, swap等)。 |
container_memory_max_usage_bytes | 最大内存使用量的记录。 |
container_memory_working_set_bytes | 当前内存工作集(working set)使用量。(工作区内存使用量=活跃的匿名与和缓存,以及file-baked页<=container_memory_usage_bytes) |
container_memory_failcnt | 申请内存失败次数计数 |
container_memory_failures_total | 累计的内存申请错误次数。 |
其中
container_memory_max_usage_bytes > container_memory_usage_bytes >= container_memory_working_set_bytes > container_memory_rss
Cadvisor中相关定义
type MemoryStats struct { // Current memory usage, this includes all memory regardless of when it was // accessed. // Units: Bytes. Usage uint64 json:"usage"
// Maximum memory usage recorded.
// Units: Bytes.
MaxUsage uint64 `json:"max_usage"`
// Number of bytes of page cache memory.
// Units: Bytes.
Cache uint64 `json:"cache"`
// The amount of anonymous and swap cache memory (includes transparent
// hugepages).
// Units: Bytes.
RSS uint64 `json:"rss"`
// The amount of swap currently used by the processes in this cgroup
// Units: Bytes.
Swap uint64 `json:"swap"`
// The amount of working set memory, this includes recently accessed memory,
// dirty memory, and kernel memory. Working set is <= "usage".
// Units: Bytes.
WorkingSet uint64 `json:"working_set"`
Failcnt uint64 `json:"failcnt"`
ContainerData MemoryStatsMemoryData `json:"container_data,omitempty"`
HierarchicalData MemoryStatsMemoryData `json:"hierarchical_data,omitempty"`
}
You might think that memory utilization is easily tracked with container_memory_usage_bytes, however, this metric also includes cached (think filesystem cache) items that can be evicted under memory pressure. The better metric is container_memory_working_set_bytes as this is what the OOM killer is watching for.
To calculate container memory utilization we use: sum(container_memory_working_set_bytes{name!~”POD”}) by (name)
kubelet 通过 watch container_memory_working_set_bytes 来判断是否OOM, 所以用 working set来评价容器内存使用量更科学
Cgroup中关于mem指标
cgroup目录相关文件
文件名 | 说明 | cadvisor中对应指标 |
---|---|---|
memory.usage_in_bytes | 已使用的内存量(包含cache和buffer)(字节),相当于linux的used_meme | container_memory_usage_bytes |
memory.limit_in_bytes | 限制的内存总量(字节),相当于linux的total_mem | |
memory.failcnt | 申请内存失败次数计数 | |
memory.memsw.usage_in_bytes | 已使用的内存和swap(字节) | |
memory.memsw.limit_in_bytes | 限制的内存和swap容量(字节) | |
memory.memsw.failcnt | 申请内存和swap失败次数计数 | |
memory.stat | 内存相关状态 |
memory.stat 中包含有的内存信息
统计 | 描述 | cadvisor中对应指标 |
---|---|---|
cache | 页缓存,包括 tmpfs(shmem),单位为字节 | container_memory_cache |
rss 匿名和 swap | 缓存,不包括 tmpfs(shmem),单位为字节 | container_memory_rss |
mapped_file | memory-mapped 映射的文件大小,包括 tmpfs(shmem),单位为字节 | |
pgpgin | 存入内存中的页数 | |
pgpgout | 从内存中读出的页数 | |
swap | swap 用量,单位为字节 | container_memory_swap |
active_anon | 在活跃的最近最少使用(least-recently-used,LRU)列表中的匿名和 swap 缓存,包括 tmpfs(shmem),单位为字节 | |
inactive_anon | 不活跃的 LRU 列表中的匿名和 swap 缓存,包括 tmpfs(shmem),单位为字节 | |
active_file | 活跃 LRU 列表中的 file-backed 内存,以字节为单位 | |
inactive_file | 不活跃 LRU 列表中的 file-backed 内存,以字节为单位 | |
unevictable | 无法再生的内存,以字节为单位 | |
hierarchical_memory_limit | 包含 memory cgroup 的层级的内存限制,单位为字节 | |
hierarchical_memsw_limit | 包含 memory cgroup 的层级的内存加 swap 限制,单位为字节 |
active_anon + inactive_anon = anonymous memory + file cache for tmpfs + swap cache = rss + file cache for tmpfs
active_file + inactive_file = cache - size of tmpfs
working set = usage - total_inactive(k8s根据workingset 来判断是否驱逐pod)
mstat看到的active / inactive memory就分别是active list和inactive list中的内存大小。如果inactive list很大,表明在必要时可以回收的页面很多;而如果inactive list很小,说明可以回收的页面不多。
Active / inactive memory是针对用户进程所占用的内存而言的,内核占用的内存(包括slab)不在其中。
至于在源代码中看到的 ACTIVE_ANON 和 ACTIVE_FILE,分别表示 anonymous pages 和 file-backed pages。用户进程的内存页分为两种:与文件关联的内存(比如程序文件、数据文件所对应的内存页)和与文件无关的内存(比如进程的堆栈,用malloc申请的内存),前者称为file-backed pages,后者称为anonymous pages。File-backed pages在发生换页(page-in或page-out)时,是从它对应的文件读入或写出;anonymous pages在发生换页时,是对交换区进行读/写操作。
参考
https://godoc.org/github.com/google/cadvisor/info/v1
https://github.com/google/cadvisor/blob/08f0c2397cbca790a4db0f1212cb592cc88f6e26/info/v1/container.go#L338:6