文档首页
MySQL 8.4 参考手册
相关文档 下载本手册
PDF (US Ltr) - 39.9Mb
PDF (A4) - 40.0Mb
手册页 (TGZ) - 258.5Kb
手册页 (Zip) - 365.5Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


25.6.17.46 ndbinfo memoryusage 表

查询此表提供的的信息类似于 ALL REPORT MemoryUsage 命令在 ndb_mgm 客户端中提供的信息,或由 ALL DUMP 1000 记录。

memoryusage 表包含以下列

  • node_id

    此数据节点的节点 ID。

  • memory_type

    以下之一:Data memoryIndex memoryLong message buffer

  • used

    此数据节点当前用于数据内存或索引内存的字节数。

  • used_pages

    此数据节点当前用于数据内存或索引内存的页数;参见文本。

  • total

    此数据节点可用的数据内存或索引内存的总字节数;参见文本。

  • total_pages

    此数据节点可用的数据内存或索引内存的总页数;参见文本。

注意

total 列表示特定数据节点上给定资源(数据内存或索引内存)可用的总内存字节数。此数字应近似等于 config.ini 文件中相应配置参数的设置。

假设集群有 2 个数据节点,节点 ID 分别为 56,并且 config.ini 文件包含以下内容

[ndbd default]
DataMemory = 1G
IndexMemory = 1G

还假设 LongMessageBuffer 配置参数的值被允许采用其默认值(64 MB)。

以下查询显示了近似相同的值

mysql> SELECT node_id, memory_type, total
     > FROM ndbinfo.memoryusage;
+---------+---------------------+------------+
| node_id | memory_type         | total      |
+---------+---------------------+------------+
|       5 | Data memory         | 1073741824 |
|       5 | Index memory        | 1074003968 |
|       5 | Long message buffer |   67108864 |
|       6 | Data memory         | 1073741824 |
|       6 | Index memory        | 1074003968 |
|       6 | Long message buffer |   67108864 |
+---------+---------------------+------------+
6 rows in set (0.00 sec)

在这种情况下,索引内存的 total 列值略高于 IndexMemory 的设置值,这是由于内部四舍五入造成的。

对于 used_pagestotal_pages 列,资源以页为单位进行度量,对于 DataMemory,页大小为 32K,对于 IndexMemory,页大小为 8K。对于长消息缓冲区内存,页大小为 256 字节。