numastat.txt 1.0 KB

123456789101112131415161718192021222324252627282930
  1. ===============================
  2. Numa policy hit/miss statistics
  3. ===============================
  4. /sys/devices/system/node/node*/numastat
  5. All units are pages. Hugepages have separate counters.
  6. =============== ============================================================
  7. numa_hit A process wanted to allocate memory from this node,
  8. and succeeded.
  9. numa_miss A process wanted to allocate memory from another node,
  10. but ended up with memory from this node.
  11. numa_foreign A process wanted to allocate on this node,
  12. but ended up with memory from another one.
  13. local_node A process ran on this node and got memory from it.
  14. other_node A process ran on this node and got memory from another node.
  15. interleave_hit Interleaving wanted to allocate from this node
  16. and succeeded.
  17. =============== ============================================================
  18. For easier reading you can use the numastat utility from the numactl package
  19. (http://oss.sgi.com/projects/libnuma/). Note that it only works
  20. well right now on machines with a small number of CPUs.