You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Peak memory observation in the system
* Update storage info where needed
* Update best practics
* Add information from PR review
---------
Co-authored-by: Kruno Golubic <46486712+kgolubic@users.noreply.github.com>
| vertex_count | The number of stored nodes (vertices). |
33
34
| edge_count | The number of stored relationships (edges). |
34
35
| average_degree | The average number of relationships of a single node. |
36
+
| vm_max_map_count | The number of memory-mapped areas that the kernel allows a process to have. If it is unknown, returns -1. </br> For more info, check out [virtual memory section of the docs](/fundamentals/storage-memory-usage#virtual-memory). |
35
37
| memory_res | The non-swapped physical RAM memory a task has used, reported by the OS (in B, KiB, MiB, GiB or TiB). |
38
+
| peak_memory_res | Peak RAM memory usage in the system during the whole run. |
36
39
| disk_usage | The amount of disk space used by the data directory (in B, KiB, MiB, GiB or TiB). |
37
40
| memory_tracked | The amount of RAM allocated in the system and tracked by Memgraph (in B, KiB, MiB, GiB or TiB).<br/>For more info, check out [memory control](/fundamentals/storage-memory-usage). |
38
-
| vm_max_map_count | The number of memory-mapped areas that the kernel allows a process to have. If it is unknown, returns -1. </br> For more info, check out [virtual memory section of the docs](/fundamentals/storage-memory-usage#virtual-memory). |
39
41
| allocation_limit | The current allocation limit set for this instance (in B, KiB, MiB, GiB or TiB).<br/>For more info, check out the [memory control](/fundamentals/storage-memory-usage#control-memory-usage). |
40
42
| global_isolation_level | The current `global` isolation level.<br/>For more info, check out [isolation levels](/fundamentals/transactions#isolation-levels). |
41
43
| session_isolation_level | The current `session` isolation level. |
0 commit comments