英文:
Correspondence between influxdb runtime measurement statistics and Resident Memory(RES)
问题
- 版本:1.8.10
 - 操作系统:CentOS 7
 - 问题
- 根据文档所述,_internal数据库的"Sys"是:从操作系统获取的内存字节数的总和。衡量了Go运行时为堆、栈和其他内部数据结构保留的虚拟地址空间。
 - 但是"Sys"或其他统计数据与常驻内存(RES)(以下PID 9450)不相等。
 - 运行时统计数据和RES之间的关系是什么?
 
 - 运行时

 - RES-infuxd

 
了解有关infuxdb运行时的信息
英文:
- Version: 1.8.10
 - OS: CentOS 7
 - Problem
- According to the document, the "Sys" of the _internal database is: The total number of bytes of memory obtained from the OS. Measures the virtual address space reserved by the Go runtime for the heap, stacks, and other internal data structures.
 - But "Sys" or other statistics not equal with the Resident Memory(RES)(Following PID 9450)
 - What is the relationship between runtime statistics and RES
 
 - Runtime

 - RES-infuxd

 
known about the infuxdb runtime
答案1
得分: 0
“Sys”表示的是虚拟内存(VIRT),而不是实际使用的物理内存(RES)。我们可以使用命令“pmap -x 9450 | less”来查看influxd进程的RES值。
英文:
"Sys" mean VIRT not RES. We can use the cmd "pmap -x 9450 | less" to see the RES of influxd proccess
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论