GreatSQL社区

搜索

[已解决] greatsql内存分配相对mysql差别

852 19 2024-12-12 10:47
请问下,greatsql是不是内存方面相对mysql有做调整?
目前看到的现象是这样:mysql的innodb_buffer_pool_size设置为10G,然后使用free -h,used使用2.4G,mysql并没有全部占用设置的内存;
而greatsql同样设置10G,free -h查看,used使用11G,查看top,这部分内存也正是greatsql使用的。
全部回复(19)
yejr 2024-12-12 10:52:46
请先参考下面的文章思路排查分析一番,可以把分析过程回复到帖子中 https://mp.weixin.qq.com/s/TjwrHtH5JAVVZ-v7F7Sf3g 同时提供my.cnf配置文件内容
wu999 2024-12-12 11:18:25
###当前库为备库,没有任何业务连接,只配置了双向主从同步。
##设置innodb_buffer_pool_size为1G时


  1. mysql> set global innodb_buffer_pool_size=1073741824;
  2. Query OK, 0 rows affected (0.00 sec)

  3. mysql>
  4. mysql> select @@innodb_buffer_pool_size;
  5. +---------------------------+
  6. | @@innodb_buffer_pool_size |
  7. +---------------------------+
  8. |                1073741824 |
  9. +---------------------------+
  10. 1 row in set (0.00 sec)

  11. mysql> SELECT   EVENT_NAME,   CURRENT_NUMBER_OF_BYTES_USED AS memory_bytes,   CURRENT_NUMBER_OF_BYTES_USED / 1024 / 1024 AS memory_mb FROM   performance_schema.memory_summary_global_by_event_name WHERE   CURRENT_NUMBER_OF_BYTES_USED > 0 ORDER BY   CURRENT_NUMBER_OF_BYTES_USED DESC LIMIT 10;
  12. +-----------------------------------------------------------------------------+--------------+---------------+
  13. | EVENT_NAME                                                                  | memory_bytes | memory_mb     |
  14. +-----------------------------------------------------------------------------+--------------+---------------+
  15. | memory/innodb/buf_buf_pool                                                  |   1097891840 | 1047.03125000 |
  16. | memory/performance_schema/events_statements_summary_by_digest               |     42240000 |   40.28320313 |
  17. | memory/mysys/KEY_CACHE                                                      |     33556016 |   32.00151062 |
  18. | memory/innodb/log_buffer_memory                                             |     33555456 |   32.00097656 |
  19. | memory/innodb/ut0link_buf                                                   |     25165888 |   24.00006104 |
  20. | memory/innodb/lock0lock                                                     |     22440096 |   21.40054321 |
  21. | memory/mysys/IO_CACHE                                                       |     16966928 |   16.18092346 |
  22. | memory/performance_schema/events_statements_history_long                    |     15040000 |   14.34326172 |
  23. | memory/performance_schema/events_errors_summary_by_thread_by_error          |     14561280 |   13.88671875 |
  24. | memory/performance_schema/events_statements_summary_by_thread_by_event_name |     14321664 |   13.65820313 |
  25. +-----------------------------------------------------------------------------+--------------+---------------+
  26. 10 rows in set (0.00 sec)



  27. $ free -h
  28.                total        used        free      shared  buff/cache   available
  29. Mem:            30Gi       1.9Gi        22Gi       226Mi       6.5Gi        28Gi
  30. Swap:             0B          0B          0B
复制代码



##设置innodb_buffer_pool_size改为10G时


  1. mysql> set global innodb_buffer_pool_size=10737418240;
  2. Query OK, 0 rows affected (0.00 sec)

  3. mysql>
  4. mysql> select @@innodb_buffer_pool_size;
  5. +---------------------------+
  6. | @@innodb_buffer_pool_size |
  7. +---------------------------+
  8. |               10737418240 |
  9. +---------------------------+
  10. 1 row in set (0.00 sec)

  11. mysql>
  12. mysql> SELECT   EVENT_NAME,   CURRENT_NUMBER_OF_BYTES_USED AS memory_bytes,   CURRENT_NUMBER_OF_BYTES_USED / 1024 / 1024 AS memory_mb FROM   performance_schema.memory_summary_global_by_event_name WHERE   CURRENT_NUMBER_OF_BYTES_USED > 0 ORDER BY   CURRENT_NUMBER_OF_BYTES_USED DESC LIMIT 10;
  13. +--------------------------------------------------------------------+--------------+----------------+
  14. | EVENT_NAME                                                         | memory_bytes | memory_mb      |
  15. +--------------------------------------------------------------------+--------------+----------------+
  16. | memory/innodb/buf_buf_pool                                         |  10978918400 | 10470.31250000 |
  17. | memory/innodb/os0event                                             |    242960192 |   231.70489502 |
  18. | memory/performance_schema/events_statements_summary_by_digest      |     42240000 |    40.28320313 |
  19. | memory/mysys/KEY_CACHE                                             |     33556016 |    32.00151062 |
  20. | memory/innodb/log_buffer_memory                                    |     33555456 |    32.00097656 |
  21. | memory/innodb/ut0link_buf                                          |     25165888 |    24.00006104 |
  22. | memory/innodb/lock0lock                                            |     22440096 |    21.40054321 |
  23. | memory/mysys/IO_CACHE                                              |     16966928 |    16.18092346 |
  24. | memory/performance_schema/events_statements_history_long           |     15040000 |    14.34326172 |
  25. | memory/performance_schema/events_errors_summary_by_thread_by_error |     14561280 |    13.88671875 |
  26. +--------------------------------------------------------------------+--------------+----------------+
  27. 10 rows in set (0.01 sec)



  28. $ free -h
  29.                total        used        free      shared  buff/cache   available
  30. Mem:            30Gi        11Gi        12Gi       226Mi       6.5Gi        18Gi
  31. Swap:             0B          0B          0B
复制代码



###内存设置从1G调整为10G时,主机上free -h 显示used部分的内存没几秒会直接增长9G大小,刚好和新增的,buffer pool大小一致,所以greatsql是不是设置的内存不管有没有使用都会直接被分配?my.cnf文件见附件。


my.zip

1.71 KB, 下载次数: 2, 下载积分: 金币 -1

KAiTO 2024-12-12 11:31:27
wu999 发表于 2024-12-12 11:18
###当前库为备库,没有任何业务连接,只配置了双向主从同步。
##设置innodb_buffer_pool_size为1G时
mysql> ...

The innodb_buffer_pool_size configuration option can be set dynamically using a SET statement, allowing you to resize the buffer pool without restarting the server. For example:
该参数可以动态调整,调整了就会立刻生效的
wu999 2024-12-12 11:35:07
KAiTO 发表于 2024-12-12 11:31
The innodb_buffer_pool_size configuration option can be set dynamically using a SET statement, all ...

mysql 设置不会出现这种情况,设置8G的buffer pool,used显示只使用了1.8G,mysql不会立即使用设置的全部内存,而greatsql会,所以我想确认下是不是greatsql本身有对这块做调整?
yejr 2024-12-12 13:56:57
wu999 发表于 2024-12-12 11:18
###当前库为备库,没有任何业务连接,只配置了双向主从同步。
##设置innodb_buffer_pool_size为1G时
mysql> ...

请补充提供几个信息

1. mysqld进程状态


  1. ps aux | grep mysqld
复制代码

2. top结果

  1. top -p $(pidof mysqld) -n 1
复制代码

3. 使用 pmap 查看 mysqld 进程中的内存分布情况

  1. pmap -x $(pidof mysqld) | sort -k3 -rn | head -n 20
复制代码

4. 查看各线程的内存使用详情

  1. SELECT  * FROM  sys.x$memory_by_thread_by_current_bytes ORDER BY  total_allocated DESC LIMIT 20;
复制代码

5. 是否启用了大页
可以参考这篇文章 https://mp.weixin.qq.com/s/Z5ktp3uZdkE9WfOi28bfow


P.S,我们现在对GreatSQL社区用户承诺提供5*8在线免费技术支持服务,只要填个问卷就行 https://wj.qq.com/s2/11543483/9e09/ ,只需1分钟即可完成,这对我们也很重要,感谢支持
wu999 2024-12-12 14:28:11
yejr 发表于 2024-12-12 13:56
请补充提供几个信息

1. mysqld进程状态

1. mysqld进程状态

  1. ps aux | grep mysqld

  2. root       45349  0.0  0.0 114724 12532 ?        Ssl  Dec04   0:09 /usr/local/mysqld_exporter/mysqld_exporter --web.listen-address=:9106 --collect.info_schema.processlist --collect.info_schema.innodb_tablespaces --collect.info_schema.innodb_metrics --collect.perf_schema.tableiowaits --collect.perf_schema.indexiowaits --collect.perf_schema.tablelocks --collect.engine_innodb_status --collect.perf_schema.file_events --collect.binlog_size --collect.info_schema.clientstats --collect.perf_schema.eventswaits --collect.slave_status --collect.global_status --collect.global_variables --collect.mysql.user --collect.auto_increment.columns --config.my-cnf=/usr/local/mysqld_exporter/.my-xxxxx-3306.cnf
  3. root       46201  0.0  0.0  22956  3836 ?        S    Dec04   0:00 /bin/sh /usr/local/greatsql/bin/mysqld_safe --defaults-file=/etc/my-xxxxx-3306.cnf --pid-file=/data/greatsql-xxxxx-3306/data/mysql.pid
  4. mysql      47758  1.3 36.7 12955744 11896296 ?   Sl   Dec04 152:22 /usr/local/greatsql/bin/mysqld --defaults-file=/etc/my-xxxxx-3306.cnf --basedir=/usr/local/greatsql --datadir=/data/greatsql-xxxxx-3306/data --plugin-dir=/usr/local/greatsql/lib/plugin --user=mysql--log-error=/data/greatsql-xxxxx-3306/logs/error.log --open-files-limit=65535 --pid-file=/data/greatsql-xxxxx-3306/data/mysql.pid --socket=/data/greatsql-xxxxx-3306/data/mysql.sock --port=3306
复制代码


2. top结果

  1. top -p $(pidof mysqld) -n 1

  2. top - 14:20:53 up 8 days, 23:05,  1 user,  load average: 0.00, 0.02, 0.00
  3. Tasks:   1 total,   0 running,   1 sleeping,   0 stopped,   0 zombie
  4. %Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
  5. MiB Mem :  31591.2 total,  13032.8 free,  11932.4 used,   6626.0 buff/cache
  6. MiB Swap:      0.0 total,      0.0 free,      0.0 used.  18867.1 avail Mem

  7.     PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND                                                            
  8.   47758 mysql     20   0   12.4g  11.3g  40988 S   0.0  36.8 152:20.82 mysqld
复制代码


3. 使用 pmap 查看 mysqld 进程中的内存分布情况

  1. pmap -x $(pidof mysqld) | sort -k3 -rn | head -n 20

  2. total kB         12955748 11907452 11866008
  3. 00007efecd87c000  536080  536080  536080 rw---   [ anon ]
  4. 00007efeef75d000  402060  402060  402060 rw---   [ anon ]
  5. 00007eff17800000  339968  252608  252608 rw---   [ anon ]
  6. 00007efc59000000  299008  237516  237516 rw---   [ anon ]
  7. 00007eff0891f000  134020  134020  134020 rw---   [ anon ]
  8. 00007efec559b000  134020  134020  134020 rw---   [ anon ]
  9. 00007efebd2ba000  134020  134020  134020 rw---   [ anon ]
  10. 00007efeb4fd9000  134020  134020  134020 rw---   [ anon ]
  11. 00007efeaccf8000  134020  134020  134020 rw---   [ anon ]
  12. 00007efea4a17000  134020  134020  134020 rw---   [ anon ]
  13. 00007efe9bd1f000  134020  134020  134020 rw---   [ anon ]
  14. 00007efe9291f000  134020  134020  134020 rw---   [ anon ]
  15. 00007efe8a63e000  134020  134020  134020 rw---   [ anon ]
  16. 00007efe8235d000  134020  134020  134020 rw---   [ anon ]
  17. 00007efe7991f000  134020  134020  134020 rw---   [ anon ]
  18. 00007efe7163e000  134020  134020  134020 rw---   [ anon ]
  19. 00007efe68fcf000  134020  134020  134020 rw---   [ anon ]
  20. 00007efe6051f000  134020  134020  134020 rw---   [ anon ]
  21. 00007efe5823e000  134020  134020  134020 rw---   [ anon ]
复制代码


4. 查看各线程的内存使用详情

  1. SELECT  * FROM  sys.x$memory_by_thread_by_current_bytes ORDER BY  total_allocated DESC LIMIT 20;

  2. mysql> SELECT  * FROM  sys.x$memory_by_thread_by_current_bytes ORDER BY  total_allocated DESC LIMIT 20;
  3. +-----------+--------------------------------+--------------------+-------------------+-------------------+-------------------+-----------------+
  4. | thread_id | user                           | current_count_used | current_allocated | current_avg_alloc | current_max_alloc | total_allocated |
  5. +-----------+--------------------------------+--------------------+-------------------+-------------------+-------------------+-----------------+
  6. |        50 | innodb/clone_gtid_thread       |               1917 |            611872 |          319.1821 |            262720 |       825672637 |
  7. |        39 | innodb/buf_resize_thread       |            1769353 |         240661328 |          136.0166 |         240618816 |       481406688 |
  8. |        57 | sql/replica_worker             |               5215 |           4048916 |          776.3981 |           1600816 |       335777213 |
  9. |       216 | root@localhost                 |                161 |          17109479 |       106270.0559 |          16777376 |       212270431 |
  10. |        25 | innodb/srv_monitor_thread      |                  0 |                 0 |            0.0000 |                 0 |       126469920 |
  11. |        40 | innodb/srv_master_thread       |                 21 |              1978 |           94.1905 |              1081 |        87710386 |
  12. |        56 | sql/replica_sql                |             125116 |          49279399 |          393.8697 |          47570457 |        79872021 |
  13. |        41 | innodb/dict_stats_thread       |                 66 |              9466 |          143.4242 |              3784 |        31022128 |
  14. |        72 | sql/replica_worker             |              54257 |          28891289 |          532.4896 |          17353600 |        30461119 |
  15. |        51 | innodb/srv_purge_thread        |                 24 |              2450 |          102.0833 |              1081 |        27978846 |
  16. |        54 | innodb/srv_worker_thread       |                 24 |              2218 |           92.4167 |              1081 |        18369416 |
  17. |        53 | innodb/srv_worker_thread       |                 22 |              2026 |           92.0909 |              1081 |        14151899 |
  18. |        52 | innodb/srv_worker_thread       |                 26 |              2450 |           94.2308 |              1081 |        13647582 |
  19. |         1 | sql/main                       |               4831 |           1351299 |          279.7141 |            437896 |         6544188 |
  20. |        26 | innodb/log_checkpointer_thread |                  0 |                 0 |            0.0000 |                 0 |         1396752 |
  21. |        58 | sql/replica_worker             |                182 |            293801 |         1614.2912 |            203208 |          654467 |
  22. |        55 | sql/replica_io                 |                 79 |            139210 |         1762.1519 |             86094 |          313466 |
  23. |       127 | [url=mailto:repl@xx.xx.xx.xx]repl@xx.xx.xx.xx[/url]               |                 27 |             25880 |          958.5185 |             18480 |          264423 |
  24. |        62 | sql/replica_worker             |                 58 |             82853 |         1428.5000 |             44488 |          151413 |
  25. |        11 | innodb/io_write_thread         |                  0 |                 0 |            0.0000 |                 0 |          122584 |
  26. +-----------+--------------------------------+--------------------+-------------------+-------------------+-------------------+-----------------+
  27. 20 rows in set (0.26 sec)
复制代码


5. 是否启用了大页
可以参考这篇文章 https://mp.weixin.qq.com/s/Z5ktp3uZdkE9WfOi28bfow
没有启用大页


  1. $ cat /proc/meminfo
  2. MemTotal:       32349428 kB
  3. MemFree:        13346028 kB
  4. MemAvailable:   19320644 kB
  5. Buffers:          661152 kB
  6. Cached:          5866820 kB
  7. SwapCached:            0 kB
  8. Active:          1377132 kB
  9. Inactive:       17167760 kB
  10. Active(anon):     210124 kB
  11. Inactive(anon): 12034920 kB
  12. Active(file):    1167008 kB
  13. Inactive(file):  5132840 kB
  14. Unevictable:           0 kB
  15. Mlocked:               0 kB
  16. SwapTotal:             0 kB
  17. SwapFree:              0 kB
  18. Dirty:                 8 kB
  19. Writeback:             0 kB
  20. AnonPages:      12016980 kB
  21. Mapped:           139124 kB
  22. Shmem:            231732 kB
  23. KReclaimable:     257396 kB
  24. Slab:             319608 kB
  25. SReclaimable:     257396 kB
  26. SUnreclaim:        62212 kB
  27. KernelStack:        6864 kB
  28. PageTables:        27536 kB
  29. NFS_Unstable:          0 kB
  30. Bounce:                0 kB
  31. WritebackTmp:          0 kB
  32. CommitLimit:    16174712 kB
  33. Committed_AS:   14007728 kB
  34. VmallocTotal:   34359738367 kB
  35. VmallocUsed:       21652 kB
  36. VmallocChunk:          0 kB
  37. Percpu:            20768 kB
  38. HardwareCorrupted:     0 kB
  39. AnonHugePages:     12288 kB
  40. ShmemHugePages:        0 kB
  41. ShmemPmdMapped:        0 kB
  42. FileHugePages:         0 kB
  43. FilePmdMapped:         0 kB
  44. HugePages_Total:       0
  45. HugePages_Free:        0
  46. HugePages_Rsvd:        0
  47. HugePages_Surp:        0
  48. Hugepagesize:       2048 kB
  49. Hugetlb:               0 kB
  50. DirectMap4k:      214976 kB
  51. DirectMap2M:    33339392 kB
复制代码

GreatSQL社区 2024-12-12 15:05:36
  1. mysql> show  engine innodb status\G
  2. *************************** 1. row ***************************
  3.   Type: InnoDB
  4.   Name:
  5. Status:
  6. =====================================
  7. 2024-12-12 14:55:26 140047534749248 INNODB MONITOR OUTPUT
  8. =====================================
  9. Per second averages calculated from the last 11 seconds
  10. -----------------
  11. BACKGROUND THREAD
  12. -----------------
  13. srv_master_thread loops: 8 srv_active, 0 srv_shutdown, 598 srv_idle
  14. srv_master_thread log flush and writes: 0
  15. ----------
  16. SEMAPHORES
  17. ----------
  18. OS WAIT ARRAY INFO: reservation count 149
  19. OS WAIT ARRAY INFO: signal count 106
  20. RW-shared spins 0, rounds 0, OS waits 0
  21. RW-excl spins 0, rounds 0, OS waits 0
  22. RW-sx spins 0, rounds 0, OS waits 0
  23. Spin rounds per wait: 0.00 RW-shared, 0.00 RW-excl, 0.00 RW-sx
  24. ------------
  25. TRANSACTIONS
  26. ------------
  27. Trx id counter 15703
  28. Purge done for trx's n:o < 15702 undo n:o < 0 state: running but idle
  29. History list length 0
  30. LIST OF TRANSACTIONS FOR EACH SESSION:
  31. ---TRANSACTION 421529099757576, not started
  32. 0 lock struct(s), heap size 1128, 0 row lock(s)
  33. ---TRANSACTION 421529099756728, not started
  34. 0 lock struct(s), heap size 1128, 0 row lock(s)
  35. ---TRANSACTION 421529099755880, not started
  36. 0 lock struct(s), heap size 1128, 0 row lock(s)
  37. ---TRANSACTION 421529099755032, not started
  38. 0 lock struct(s), heap size 1128, 0 row lock(s)
  39. ---TRANSACTION 421529099754184, not started
  40. 0 lock struct(s), heap size 1128, 0 row lock(s)
  41. ---TRANSACTION 421529099753336, not started
  42. 0 lock struct(s), heap size 1128, 0 row lock(s)
  43. ---TRANSACTION 421529099752488, not started
  44. 0 lock struct(s), heap size 1128, 0 row lock(s)
  45. ---TRANSACTION 421529099751640, not started
  46. 0 lock struct(s), heap size 1128, 0 row lock(s)
  47. ---TRANSACTION 421529099750792, not started
  48. 0 lock struct(s), heap size 1128, 0 row lock(s)
  49. ---TRANSACTION 421529099749944, not started
  50. 0 lock struct(s), heap size 1128, 0 row lock(s)
  51. ---TRANSACTION 421529099749096, not started
  52. 0 lock struct(s), heap size 1128, 0 row lock(s)
  53. ---TRANSACTION 421529099748248, not started
  54. 0 lock struct(s), heap size 1128, 0 row lock(s)
  55. ---TRANSACTION 421529099747400, not started
  56. 0 lock struct(s), heap size 1128, 0 row lock(s)
  57. ---TRANSACTION 421529099746552, not started
  58. 0 lock struct(s), heap size 1128, 0 row lock(s)
  59. ---TRANSACTION 421529099745704, not started
  60. 0 lock struct(s), heap size 1128, 0 row lock(s)
  61. ---TRANSACTION 421529099744856, not started
  62. 0 lock struct(s), heap size 1128, 0 row lock(s)
  63. ---TRANSACTION 421529099744008, not started
  64. 0 lock struct(s), heap size 1128, 0 row lock(s)
  65. ---TRANSACTION 421529099743160, not started
  66. 0 lock struct(s), heap size 1128, 0 row lock(s)
  67. ---TRANSACTION 421529099742312, not started
  68. 0 lock struct(s), heap size 1128, 0 row lock(s)
  69. ---TRANSACTION 421529099741464, not started
  70. 0 lock struct(s), heap size 1128, 0 row lock(s)
  71. ---TRANSACTION 421529099740616, not started
  72. 0 lock struct(s), heap size 1128, 0 row lock(s)
  73. ---TRANSACTION 421529099739768, not started
  74. 0 lock struct(s), heap size 1128, 0 row lock(s)
  75. ---TRANSACTION 421529099738920, not started
  76. 0 lock struct(s), heap size 1128, 0 row lock(s)
  77. ---TRANSACTION 421529099738072, not started
  78. 0 lock struct(s), heap size 1128, 0 row lock(s)
  79. ---TRANSACTION 421529099737224, not started
  80. 0 lock struct(s), heap size 1128, 0 row lock(s)
  81. ---TRANSACTION 421529099736376, not started
  82. 0 lock struct(s), heap size 1128, 0 row lock(s)
  83. ---TRANSACTION 421529099735528, not started
  84. 0 lock struct(s), heap size 1128, 0 row lock(s)
  85. ---TRANSACTION 421529099734680, not started
  86. 0 lock struct(s), heap size 1128, 0 row lock(s)
  87. ---TRANSACTION 421529099733832, not started
  88. 0 lock struct(s), heap size 1128, 0 row lock(s)
  89. ---TRANSACTION 421529099732984, not started
  90. 0 lock struct(s), heap size 1128, 0 row lock(s)
  91. ---TRANSACTION 421529099732136, not started
  92. 0 lock struct(s), heap size 1128, 0 row lock(s)
  93. ---TRANSACTION 421529099731288, not started
  94. 0 lock struct(s), heap size 1128, 0 row lock(s)
  95. ---TRANSACTION 421529099730440, not started
  96. 0 lock struct(s), heap size 1128, 0 row lock(s)
  97. ---TRANSACTION 421529099729592, not started
  98. 0 lock struct(s), heap size 1128, 0 row lock(s)
  99. ---TRANSACTION 421529099728744, not started
  100. 0 lock struct(s), heap size 1128, 0 row lock(s)
  101. ---TRANSACTION 421529099727896, not started
  102. 0 lock struct(s), heap size 1128, 0 row lock(s)
  103. ---TRANSACTION 421529099727048, not started
  104. 0 lock struct(s), heap size 1128, 0 row lock(s)
  105. ---TRANSACTION 421529099726200, not started
  106. 0 lock struct(s), heap size 1128, 0 row lock(s)
  107. ---TRANSACTION 421529099725352, not started
  108. 0 lock struct(s), heap size 1128, 0 row lock(s)
  109. ---TRANSACTION 421529099724504, not started
  110. 0 lock struct(s), heap size 1128, 0 row lock(s)
  111. ---TRANSACTION 421529099723656, not started
  112. 0 lock struct(s), heap size 1128, 0 row lock(s)
  113. ---TRANSACTION 421529099722808, not started
  114. 0 lock struct(s), heap size 1128, 0 row lock(s)
  115. ---TRANSACTION 421529099721960, not started
  116. 0 lock struct(s), heap size 1128, 0 row lock(s)
  117. ---TRANSACTION 421529099721112, not started
  118. 0 lock struct(s), heap size 1128, 0 row lock(s)
  119. ---TRANSACTION 421529099720264, not started
  120. 0 lock struct(s), heap size 1128, 0 row lock(s)
  121. ---TRANSACTION 421529099719416, not started
  122. 0 lock struct(s), heap size 1128, 0 row lock(s)
  123. ---TRANSACTION 421529099718568, not started
  124. 0 lock struct(s), heap size 1128, 0 row lock(s)
  125. ---TRANSACTION 421529099717720, not started
  126. 0 lock struct(s), heap size 1128, 0 row lock(s)
  127. ---TRANSACTION 421529099716872, not started
  128. 0 lock struct(s), heap size 1128, 0 row lock(s)
  129. ---TRANSACTION 421529099716024, not started
  130. 0 lock struct(s), heap size 1128, 0 row lock(s)
  131. ---TRANSACTION 421529099715176, not started
  132. 0 lock struct(s), heap size 1128, 0 row lock(s)
  133. ---TRANSACTION 421529099714328, not started
  134. 0 lock struct(s), heap size 1128, 0 row lock(s)
  135. ---TRANSACTION 421529099713480, not started
  136. 0 lock struct(s), heap size 1128, 0 row lock(s)
  137. ---TRANSACTION 421529099712632, not started
  138. 0 lock struct(s), heap size 1128, 0 row lock(s)
  139. ---TRANSACTION 421529099711784, not started
  140. 0 lock struct(s), heap size 1128, 0 row lock(s)
  141. ---TRANSACTION 421529099710936, not started
  142. 0 lock struct(s), heap size 1128, 0 row lock(s)
  143. ---TRANSACTION 421529099710088, not started
  144. 0 lock struct(s), heap size 1128, 0 row lock(s)
  145. ---TRANSACTION 421529099709240, not started
  146. 0 lock struct(s), heap size 1128, 0 row lock(s)
  147. ---TRANSACTION 421529099708392, not started
  148. 0 lock struct(s), heap size 1128, 0 row lock(s)
  149. ---TRANSACTION 421529099707544, not started
  150. 0 lock struct(s), heap size 1128, 0 row lock(s)
  151. ---TRANSACTION 421529099706696, not started
  152. 0 lock struct(s), heap size 1128, 0 row lock(s)
  153. ---TRANSACTION 421529099705848, not started
  154. 0 lock struct(s), heap size 1128, 0 row lock(s)
  155. ---TRANSACTION 421529099705000, not started
  156. 0 lock struct(s), heap size 1128, 0 row lock(s)
  157. ---TRANSACTION 421529099704152, not started
  158. 0 lock struct(s), heap size 1128, 0 row lock(s)
  159. ---TRANSACTION 421529099703304, not started
  160. 0 lock struct(s), heap size 1128, 0 row lock(s)
  161. ---TRANSACTION 421529099700760, not started
  162. 0 lock struct(s), heap size 1128, 0 row lock(s)
  163. ---TRANSACTION 421529099702456, not started
  164. 0 lock struct(s), heap size 1128, 0 row lock(s)
  165. ---TRANSACTION 421529099701608, not started
  166. 0 lock struct(s), heap size 1128, 0 row lock(s)
  167. ---TRANSACTION 421529099699912, not started
  168. 0 lock struct(s), heap size 1128, 0 row lock(s)
  169. --------
  170. FILE I/O
  171. --------
  172. I/O thread 0 state: waiting for completed aio requests (insert buffer thread)
  173. I/O thread 1 state: waiting for completed aio requests (log thread)
  174. I/O thread 2 state: waiting for completed aio requests (read thread)
  175. I/O thread 3 state: waiting for completed aio requests (read thread)
  176. I/O thread 4 state: waiting for completed aio requests (read thread)
  177. I/O thread 5 state: waiting for completed aio requests (read thread)
  178. I/O thread 6 state: waiting for completed aio requests (write thread)
  179. I/O thread 7 state: waiting for completed aio requests (write thread)
  180. I/O thread 8 state: waiting for completed aio requests (write thread)
  181. I/O thread 9 state: waiting for completed aio requests (write thread)
  182. Pending normal aio reads: [0, 0, 0, 0] , aio writes: [0, 0, 0, 0] ,
  183. ibuf aio reads:, log i/o's:
  184. Pending flushes (fsync) log: 0; buffer pool: 0
  185. 1333 OS file reads, 2154 OS file writes, 443 OS fsyncs
  186. 0.00 reads/s, 0 avg bytes/read, 0.00 writes/s, 0.00 fsyncs/s
  187. -------------------------------------
  188. INSERT BUFFER AND ADAPTIVE HASH INDEX
  189. -------------------------------------
  190. Ibuf: size 1, free list len 0, seg size 2, 0 merges
  191. merged operations:
  192. insert 0, delete mark 0, delete 0
  193. discarded operations:
  194. insert 0, delete mark 0, delete 0
  195. Hash table size 2656321, node heap has 0 buffer(s)
  196. Hash table size 2656321, node heap has 0 buffer(s)
  197. Hash table size 2656321, node heap has 0 buffer(s)
  198. Hash table size 2656321, node heap has 0 buffer(s)
  199. Hash table size 2656321, node heap has 0 buffer(s)
  200. Hash table size 2656321, node heap has 0 buffer(s)
  201. Hash table size 2656321, node heap has 0 buffer(s)
  202. Hash table size 2656321, node heap has 0 buffer(s)
  203. 0.00 hash searches/s, 0.00 non-hash searches/s
  204. ---
  205. LOG
  206. ---
  207. Log sequence number          37108105
  208. Log buffer assigned up to    37108105
  209. Log buffer completed up to   37108105
  210. Log written up to            37108105
  211. Log flushed up to            37108105
  212. Added dirty pages up to      37108105
  213. Pages flushed up to          37108105
  214. Last checkpoint at           37108105
  215. Log minimum file id is       0
  216. Log maximum file id is       0
  217. Modified age no less than    37108105
  218. Checkpoint age               0
  219. Max checkpoint age           5422668288
  220. 260 log i/o's done, 0.00 log i/o's/second
  221. ----------------------
  222. BUFFER POOL AND MEMORY
  223. ----------------------
  224. Total large memory allocated 0
  225. Dictionary memory allocated 510082
  226. Buffer pool size   655280
  227. Buffer pool size, bytes 10736107520
  228. Free buffers       653868
  229. Database pages     1412
  230. Old database pages 0
  231. Modified db pages  0
  232. Pending reads      0
  233. Pending writes: LRU 0, flush list 0, single page 0
  234. Pages made young 0, not young 0
  235. 0.00 youngs/s, 0.00 non-youngs/s
  236. Pages read 1263, created 150, written 685
  237. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  238. No buffer pool page gets since the last printout
  239. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  240. LRU len: 1412, unzip_LRU len: 0
  241. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  242. ----------------------
  243. INDIVIDUAL BUFFER POOL INFO
  244. ----------------------
  245. ---BUFFER POOL 0
  246. Buffer pool size   81910
  247. Buffer pool size, bytes 1342013440
  248. Free buffers       81787
  249. Database pages     123
  250. Old database pages 0
  251. Modified db pages  0
  252. Pending reads      0
  253. Pending writes: LRU 0, flush list 0, single page 0
  254. Pages made young 0, not young 0
  255. 0.00 youngs/s, 0.00 non-youngs/s
  256. Pages read 118, created 5, written 74
  257. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  258. No buffer pool page gets since the last printout
  259. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  260. LRU len: 123, unzip_LRU len: 0
  261. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  262. ---BUFFER POOL 1
  263. Buffer pool size   81910
  264. Buffer pool size, bytes 1342013440
  265. Free buffers       81822
  266. Database pages     88
  267. Old database pages 0
  268. Modified db pages  0
  269. Pending reads      0
  270. Pending writes: LRU 0, flush list 0, single page 0
  271. Pages made young 0, not young 0
  272. 0.00 youngs/s, 0.00 non-youngs/s
  273. Pages read 86, created 2, written 15
  274. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  275. No buffer pool page gets since the last printout
  276. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  277. LRU len: 88, unzip_LRU len: 0
  278. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  279. ---BUFFER POOL 2
  280. Buffer pool size   81910
  281. Buffer pool size, bytes 1342013440
  282. Free buffers       81841
  283. Database pages     69
  284. Old database pages 0
  285. Modified db pages  0
  286. Pending reads      0
  287. Pending writes: LRU 0, flush list 0, single page 0
  288. Pages made young 0, not young 0
  289. 0.00 youngs/s, 0.00 non-youngs/s
  290. Pages read 69, created 0, written 82
  291. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  292. No buffer pool page gets since the last printout
  293. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  294. LRU len: 69, unzip_LRU len: 0
  295. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  296. ---BUFFER POOL 3
  297. Buffer pool size   81910
  298. Buffer pool size, bytes 1342013440
  299. Free buffers       81589
  300. Database pages     321
  301. Old database pages 0
  302. Modified db pages  0
  303. Pending reads      0
  304. Pending writes: LRU 0, flush list 0, single page 0
  305. Pages made young 0, not young 0
  306. 0.00 youngs/s, 0.00 non-youngs/s
  307. Pages read 320, created 1, written 69
  308. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  309. No buffer pool page gets since the last printout
  310. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  311. LRU len: 321, unzip_LRU len: 0
  312. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  313. ---BUFFER POOL 4
  314. Buffer pool size   81910
  315. Buffer pool size, bytes 1342013440
  316. Free buffers       81790
  317. Database pages     120
  318. Old database pages 0
  319. Modified db pages  0
  320. Pending reads      0
  321. Pending writes: LRU 0, flush list 0, single page 0
  322. Pages made young 0, not young 0
  323. 0.00 youngs/s, 0.00 non-youngs/s
  324. Pages read 117, created 3, written 48
  325. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  326. No buffer pool page gets since the last printout
  327. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  328. LRU len: 120, unzip_LRU len: 0
  329. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  330. ---BUFFER POOL 5
  331. Buffer pool size   81910
  332. Buffer pool size, bytes 1342013440
  333. Free buffers       81872
  334. Database pages     38
  335. Old database pages 0
  336. Modified db pages  0
  337. Pending reads      0
  338. Pending writes: LRU 0, flush list 0, single page 0
  339. Pages made young 0, not young 0
  340. 0.00 youngs/s, 0.00 non-youngs/s
  341. Pages read 37, created 1, written 10
  342. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  343. No buffer pool page gets since the last printout
  344. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  345. LRU len: 38, unzip_LRU len: 0
  346. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  347. ---BUFFER POOL 6
  348. Buffer pool size   81910
  349. Buffer pool size, bytes 1342013440
  350. Free buffers       81637
  351. Database pages     273
  352. Old database pages 0
  353. Modified db pages  0
  354. Pending reads      0
  355. Pending writes: LRU 0, flush list 0, single page 0
  356. Pages made young 0, not young 0
  357. 0.00 youngs/s, 0.00 non-youngs/s
  358. Pages read 205, created 68, written 158
  359. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  360. No buffer pool page gets since the last printout
  361. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  362. LRU len: 273, unzip_LRU len: 0
  363. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  364. ---BUFFER POOL 7
  365. Buffer pool size   81910
  366. Buffer pool size, bytes 1342013440
  367. Free buffers       81530
  368. Database pages     380
  369. Old database pages 0
  370. Modified db pages  0
  371. Pending reads      0
  372. Pending writes: LRU 0, flush list 0, single page 0
  373. Pages made young 0, not young 0
  374. 0.00 youngs/s, 0.00 non-youngs/s
  375. Pages read 311, created 70, written 229
  376. 0.00 reads/s, 0.00 creates/s, 0.00 writes/s
  377. No buffer pool page gets since the last printout
  378. Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
  379. LRU len: 380, unzip_LRU len: 0
  380. I/O sum[0]:cur[0], unzip sum[0]:cur[0]
  381. --------------
  382. ROW OPERATIONS
  383. --------------
  384. 0 queries inside InnoDB, 0 queries in queue
  385. 0 read views open inside InnoDB
  386. 0 RW transactions active inside InnoDB
  387. Process ID=2174063, Main thread ID=140041955309120 , state=sleeping
  388. Number of rows inserted 0, updated 4, deleted 0, read 4
  389. 0.00 inserts/s, 0.00 updates/s, 0.00 deletes/s, 0.00 reads/s
  390. Number of system rows inserted 41, updated 418, deleted 33, read 7612
  391. 0.00 inserts/s, 0.00 updates/s, 0.00 deletes/s, 0.00 reads/s
  392. ----------------------------
  393. END OF INNODB MONITOR OUTPUT
  394. ============================

  395. 1 row in set (0.00 sec)
复制代码
GreatSQL社区 2024-12-12 15:05:59
wu999 发表于 2024-12-12 14:28
1. mysqld进程状态




  1. show global status;

  2. | Variable_name  | Value |
  3. | Aborted_clients  | 0 |
  4. | Aborted_connects | 0 |
  5. | Acl_cache_items_count  | 0 |
  6. | Binlog_snapshot_file | mysql-bin.000007  |
  7. | Binlog_snapshot_position | 2784  |
  8. | Binlog_cache_disk_use  | 0 |
  9. | Binlog_cache_use | 5 |
  10. | Binlog_snapshot_gtid_executed  | not-in-consistent-snapshot  |
  11. | Binlog_stmt_cache_disk_use | 0 |
  12. | Binlog_stmt_cache_use  | 0 |
  13. | Bytes_received | 5700  |
  14. | Bytes_sent | 12127 |
  15. | Caching_sha2_password_rsa_public_key | -----BEGIN PUBLIC KEY-----
  16. | Com_admin_commands | 1 |
  17. | Com_assign_to_keycache | 0 |
  18. | Com_alter_db | 0 |
  19. | Com_alter_event  | 0 |
  20. | Com_alter_function | 0 |
  21. | Com_alter_instance | 0 |
  22. | Com_alter_procedure  | 0 |
  23. | Com_alter_resource_group | 0 |
  24. | Com_alter_server | 0 |
  25. | Com_alter_table  | 1 |
  26. | Com_alter_tablespace | 0 |
  27. | Com_alter_trigger  | 0 |
  28. | Com_alter_user | 0 |
  29. | Com_alter_user_default_role  | 0 |
  30. | Com_analyze  | 0 |
  31. | Com_begin  | 4 |
  32. | Com_binlog | 0 |
  33. | Com_call_procedure | 0 |
  34. | Com_change_db  | 1 |
  35. | Com_change_master  | 0 |
  36. | Com_change_repl_filter | 0 |
  37. | Com_change_replication_source  | 0 |
  38. | Com_check  | 0 |
  39. | Com_checksum | 0 |
  40. | Com_clone  | 0 |
  41. | Com_commit | 4 |
  42. | Com_create_compression_dictionary  | 0 |
  43. | Com_create_db  | 1 |
  44. | Com_create_event | 0 |
  45. | Com_create_function  | 0 |
  46. | Com_create_index | 0 |
  47. | Com_create_package | 0 |
  48. | Com_create_package_body  | 0 |
  49. | Com_create_type  | 0 |
  50. | Com_create_procedure | 0 |
  51. | Com_create_role  | 0 |
  52. | Com_create_server  | 0 |
  53. | Com_create_table | 35  |
  54. | Com_create_resource_group  | 0 |
  55. | Com_create_trigger | 0 |
  56. | Com_create_udf | 0 |
  57. | Com_create_user  | 0 |
  58. | Com_create_view  | 0 |
  59. | Com_create_spatial_reference_system  | 0 |
  60. | Com_dealloc_sql  | 0 |
  61. | Com_delete | 0 |
  62. | Com_delete_multi | 0 |
  63. | Com_do | 0 |
  64. | Com_drop_compression_dictionary  | 0 |
  65. | Com_drop_db  | 0 |
  66. | Com_drop_event | 0 |
  67. | Com_drop_function  | 0 |
  68. | Com_drop_index | 0 |
  69. | Com_drop_package | 0 |
  70. | Com_drop_package_body  | 0 |
  71. | Com_drop_type  | 0 |
  72. | Com_drop_procedure | 0 |
  73. | Com_drop_resource_group  | 0 |
  74. | Com_drop_role  | 0 |
  75. | Com_drop_server  | 0 |
  76. | Com_drop_spatial_reference_system  | 0 |
  77. | Com_drop_table | 0 |
  78. | Com_drop_trigger | 0 |
  79. | Com_drop_user  | 0 |
  80. | Com_drop_view  | 0 |
  81. | Com_empty_query  | 0 |
  82. | Com_execute_sql  | 0 |
  83. | Com_execute_immediate  | 0 |
  84. | Com_compound_sql | 0 |
  85. | Com_explain_other  | 0 |
  86. | Com_flush  | 1 |
  87. | Com_get_diagnostics  | 0 |
  88. | Com_grant  | 0 |
  89. | Com_grant_roles  | 0 |
  90. | Com_ha_close | 0 |
  91. | Com_ha_open  | 0 |
  92. | Com_ha_read  | 0 |
  93. | Com_help | 0 |
  94. | Com_import | 0 |
  95. | Com_insert | 0 |
  96. | Com_insert_select  | 0 |
  97. | Com_insert_all_select  | 0 |
  98. | Com_install_component  | 0 |
  99. | Com_install_plugin | 0 |
  100. | Com_kill | 0 |
  101. | Com_load | 0 |
  102. | Com_lock_instance  | 0 |
  103. | Com_lock_tables  | 0 |
  104. | Com_lock_tables_for_backup | 0 |
  105. | Com_optimize | 0 |
  106. | Com_preload_keys | 0 |
  107. | Com_prepare_sql  | 0 |
  108. | Com_purge  | 0 |
  109. | Com_purge_before_date  | 0 |
  110. | Com_release_savepoint  | 0 |
  111. | Com_rename_table | 0 |
  112. | Com_rename_user  | 0 |
  113. | Com_repair | 0 |
  114. | Com_replace  | 0 |
  115. | Com_replace_select | 0 |
  116. | Com_reset  | 0 |
  117. | Com_resignal | 0 |
  118. | Com_restart  | 0 |
  119. | Com_revoke | 0 |
  120. | Com_revoke_all | 0 |
  121. | Com_revoke_roles | 0 |
  122. | Com_rollback | 0 |
  123. | Com_rollback_to_savepoint  | 0 |
  124. | Com_savepoint  | 0 |
  125. | Com_select | 7 |
  126. | Com_set_option | 8 |
  127. | Com_set_password | 0 |
  128. | Com_set_resource_group | 0 |
  129. | Com_set_role | 0 |
  130. | Com_signal | 0 |
  131. | Com_show_binlog_events | 0 |
  132. | Com_show_binlogs | 0 |
  133. | Com_show_charsets  | 0 |
  134. | Com_show_client_statistics | 0 |
  135. | Com_show_collations  | 0 |
  136. | Com_show_create_db | 0 |
  137. | Com_show_create_event  | 0 |
  138. | Com_show_create_func | 0 |
  139. | Com_show_create_package  | 0 |
  140. | Com_show_create_package_body | 0 |
  141. | Com_show_create_type | 0 |
  142. | Com_show_create_proc | 0 |
  143. | Com_show_create_table  | 0 |
  144. | Com_show_create_trigger  | 0 |
  145. | Com_show_datamysqls | 0 |
  146. | Com_show_engine_logs | 0 |
  147. | Com_show_engine_mutex  | 0 |
  148. | Com_show_engine_status | 0 |
  149. | Com_show_events  | 0 |
  150. | Com_show_errors  | 0 |
  151. | Com_show_fields  | 0 |
  152. | Com_show_function_code | 0 |
  153. | Com_show_function_status | 0 |
  154. | Com_show_grants  | 1 |
  155. | Com_show_index_statistics  | 0 |
  156. | Com_show_keys  | 0 |
  157. | Com_show_master_status | 0 |
  158. | Com_show_open_tables | 0 |
  159. | Com_show_package_status  | 0 |
  160. | Com_show_type_status | 0 |
  161. | Com_show_package_body_code | 0 |
  162. | Com_show_package_body_status | 0 |
  163. | Com_show_plugins | 0 |
  164. | Com_show_privileges  | 0 |
  165. | Com_show_procedure_code  | 0 |
  166. | Com_show_procedure_status  | 0 |
  167. | Com_show_processlist | 0 |
  168. | Com_show_profile | 0 |
  169. | Com_show_profiles  | 0 |
  170. | Com_show_relaylog_events | 0 |
  171. | Com_show_replicas  | 0 |
  172. | Com_show_slave_hosts | 0 |
  173. | Com_show_replica_status  | 0 |
  174. | Com_show_slave_status  | 0 |
  175. | Com_show_status  | 1 |
  176. | Com_show_storage_engines | 0 |
  177. | Com_show_table_statistics  | 0 |
  178. | Com_show_table_status  | 0 |
  179. | Com_show_sequences | 0 |
  180. | Com_show_tables  | 0 |
  181. | Com_show_thread_statistics | 0 |
  182. | Com_show_triggers  | 0 |
  183. | Com_show_user_statistics | 0 |
  184. | Com_show_variables | 1 |
  185. | Com_show_warnings  | 0 |
  186. | Com_show_create_user | 0 |
  187. | Com_shutdown | 0 |
  188. | Com_replica_start  | 0 |
  189. | Com_slave_start  | 0 |
  190. | Com_replica_stop | 0 |
  191. | Com_slave_stop | 0 |
  192. | Com_group_replication_start  | 0 |
  193. | Com_group_replication_stop | 0 |
  194. | Com_stmt_execute | 0 |
  195. | Com_stmt_close | 0 |
  196. | Com_stmt_fetch | 0 |
  197. | Com_stmt_prepare | 0 |
  198. | Com_stmt_reset | 0 |
  199. | Com_stmt_send_long_data  | 0 |
  200. | Com_truncate | 0 |
  201. | Com_uninstall_component  | 0 |
  202. | Com_uninstall_plugin | 0 |
  203. | Com_unlock_instance  | 0 |
  204. | Com_unlock_tables  | 0 |
  205. | Com_update | 4 |
  206. | Com_update_multi | 0 |
  207. | Com_xa_commit  | 0 |
  208. | Com_xa_end | 0 |
  209. | Com_xa_prepare | 0 |
  210. | Com_xa_recover | 0 |
  211. | Com_xa_rollback  | 0 |
  212. | Com_xa_start | 0 |
  213. | Com_create_sequence  | 0 |
  214. | Com_drop_sequence  | 0 |
  215. | Com_alter_sequence | 0 |
  216. | Com_stmt_reprepare | 0 |
  217. | Connection_errors_accept | 0 |
  218. | Connection_errors_internal | 0 |
  219. | Connection_errors_max_connections  | 0 |
  220. | Connection_errors_peer_address | 0 |
  221. | Connection_errors_select | 0 |
  222. | Connection_errors_tcpwrap  | 0 |
  223. | Connections  | 76  |
  224. | Created_tmp_disk_tables  | 0 |
  225. | Created_tmp_files  | 4 |
  226. | Created_tmp_tables | 2 |
  227. | Current_tls_ca | ca.pem  |
  228. | Current_tls_capath | |
  229. | Current_tls_cert | server-cert.pem |
  230. | Current_tls_cipher | |
  231. | Current_tls_ciphersuites | |
  232. | Current_tls_crl  | |
  233. | Current_tls_crlpath  | |
  234. | Current_tls_key  | server-key.pem  |
  235. | Current_tls_version  | TLSv1.2,TLSv1.3 |
  236. | Delayed_errors | 0 |
  237. | Delayed_insert_threads | 0 |
  238. | Delayed_writes | 0 |
  239. | Error_log_buffered_bytes | 627744  |
  240. | Error_log_buffered_events  | 4842  |
  241. | Error_log_expired_events | 0 |
  242. | Error_log_latest_write | 1733986124019658  |
  243. | Flush_commands | 3 |
  244. | Global_connection_memory | 0 |
  245. | Handler_commit | 1116  |
  246. | Handler_delete | 32  |
  247. | Handler_discover | 0 |
  248. | Handler_external_lock  | 8041  |
  249. | Handler_mrr_init | 0 |
  250. | Handler_prepare  | 20  |
  251. | Handler_read_first | 109 |
  252. | Handler_read_key | 2272  |
  253. | Handler_read_last  | 0 |
  254. | Handler_read_next  | 4433  |
  255. | Handler_read_prev  | 0 |
  256. | Handler_read_rnd | 4 |
  257. | Handler_read_rnd_next  | 3214  |
  258. | Handler_rollback | 1 |
  259. | Handler_savepoint  | 0 |
  260. | Handler_savepoint_rollback | 0 |
  261. | Handler_update | 421 |
  262. | Handler_write  | 209 |
  263. | Innodb_background_log_sync | 0 |
  264. | Innodb_buffer_pool_dump_status | Dumping of buffer pool not started  |
  265. | Innodb_buffer_pool_load_status | Buffer pool(s) load completed at 241212 14:45:20  |
  266. | Innodb_buffer_pool_resize_status | |
  267. | Innodb_buffer_pool_resize_status_code  | 0 |
  268. | Innodb_buffer_pool_resize_status_progress  | 0 |
  269. | Innodb_buffer_pool_pages_data  | 1412  |
  270. | Innodb_buffer_pool_bytes_data  | 23134208  |
  271. | Innodb_buffer_pool_pages_dirty | 0 |
  272. | Innodb_buffer_pool_bytes_dirty | 0 |
  273. | Innodb_buffer_pool_pages_flushed | 684 |
  274. | Innodb_buffer_pool_pages_free  | 653868  |
  275. | Innodb_buffer_pool_pages_LRU_flushed | 0 |
  276. | Innodb_buffer_pool_pages_made_not_young  | 0 |
  277. | Innodb_buffer_pool_pages_made_young  | 0 |
  278. | Innodb_buffer_pool_pages_misc  | 80  |
  279. | Innodb_buffer_pool_pages_old | 0 |
  280. | Innodb_buffer_pool_pages_total | 655360  |
  281. | Innodb_buffer_pool_read_ahead_rnd  | 0 |
  282. | Innodb_buffer_pool_read_ahead  | 0 |
  283. | Innodb_buffer_pool_read_ahead_evicted  | 0 |
  284. | Innodb_buffer_pool_read_requests | 22188 |
  285. | Innodb_buffer_pool_reads | 1264  |
  286. | Innodb_buffer_pool_wait_free | 0 |
  287. | Innodb_buffer_pool_write_requests  | 3275  |
  288. | Innodb_checkpoint_age  | 0 |
  289. | Innodb_checkpoint_max_age  | 5422668288  |
  290. | Innodb_data_fsyncs | 443 |
  291. | Innodb_data_pending_fsyncs | 0 |
  292. | Innodb_data_pending_reads  | 0 |
  293. | Innodb_data_pending_writes | 0 |
  294. | Innodb_data_read | 20777984  |
  295. | Innodb_data_reads  | 1333  |
  296. | Innodb_data_writes | 2154  |
  297. | Innodb_data_written  | 11509760  |
  298. | Innodb_dblwr_pages_written | 543 |
  299. | Innodb_dblwr_writes  | 162 |
  300. | Innodb_ibuf_free_list  | 0 |
  301. | Innodb_ibuf_segment_size | 2 |
  302. | Innodb_redo_log_read_only  | OFF |
  303. | Innodb_redo_log_uuid | 1075899837  |
  304. | Innodb_redo_log_checkpoint_lsn | 37108105  |
  305. | Innodb_redo_log_current_lsn  | 37108105  |
  306. | Innodb_redo_log_flushed_to_disk_lsn  | 37108105  |
  307. | Innodb_redo_log_logical_size | 512 |
  308. | Innodb_redo_log_physical_size  | 201326592 |
  309. | Innodb_redo_log_capacity_resized | 6442450944  |
  310. | Innodb_redo_log_resize_status  | OK  |
  311. | Innodb_log_waits | 0 |
  312. | Innodb_log_write_requests  | 1834  |
  313. | Innodb_log_writes  | 258 |
  314. | Innodb_lsn_current | 37108105  |
  315. | Innodb_lsn_flushed | 37108105  |
  316. | Innodb_lsn_last_checkpoint | 37108105  |
  317. | Innodb_master_thread_active_loops  | 8 |
  318. | Innodb_master_thread_idle_loops  | 405 |
  319. | Innodb_max_trx_id  | 15703 |
  320. | Innodb_oldest_view_low_limit_trx_id  | 0 |
  321. | Innodb_os_log_fsyncs | 190 |
  322. | Innodb_os_log_pending_fsyncs | 0 |
  323. | Innodb_os_log_pending_writes | 0 |
  324. | Innodb_os_log_written  | 194048  |
  325. | Innodb_page_size | 16384 |
  326. | Innodb_pages_created | 150 |
  327. | Innodb_pages_read  | 1263  |
  328. | Innodb_pages0_read | 30  |
  329. | Innodb_pages_written | 685 |
  330. | Innodb_purge_trx_id  | 15702 |
  331. | Innodb_purge_undo_no | 0 |
  332. | Innodb_redo_log_enabled  | ON  |
  333. | Innodb_row_lock_current_waits  | 0 |
  334. | Innodb_row_lock_time | 0 |
  335. | Innodb_row_lock_time_avg | 0 |
  336. | Innodb_row_lock_time_max | 0 |
  337. | Innodb_row_lock_waits  | 0 |
  338. | Innodb_rows_deleted  | 0 |
  339. | Innodb_rows_inserted | 0 |
  340. | Innodb_rows_read | 4 |
  341. | Innodb_rows_updated  | 4 |
  342. | Innodb_system_rows_deleted | 33  |
  343. | Innodb_system_rows_inserted  | 41  |
  344. | Innodb_system_rows_read  | 7612  |
  345. | Innodb_system_rows_updated | 418 |
  346. | Innodb_sampled_pages_read  | 0 |
  347. | Innodb_sampled_pages_skipped | 0 |
  348. | Innodb_num_open_files  | 38  |
  349. | Innodb_truncated_status_writes | 0 |
  350. | Innodb_undo_tablespaces_total  | 2 |
  351. | Innodb_undo_tablespaces_implicit | 2 |
  352. | Innodb_undo_tablespaces_explicit | 0 |
  353. | Innodb_undo_tablespaces_active | 2 |
  354. | Innodb_secondary_index_triggered_cluster_reads | 2192  |
  355. | Innodb_secondary_index_triggered_cluster_reads_avoided | 0 |
  356. | Innodb_buffered_aio_submitted  | 0 |
  357. | Innodb_scan_pages_contiguous | 0 |
  358. | Innodb_scan_pages_disjointed | 0 |
  359. | Innodb_scan_pages_total_seek_distance  | 0 |
  360. | Innodb_scan_data_size  | 0 |
  361. | Innodb_scan_deleted_recs_size  | 0 |
  362. | Innodb_encryption_n_merge_blocks_encrypted | 0 |
  363. | Innodb_encryption_n_merge_blocks_decrypted | 0 |
  364. | Innodb_encryption_n_rowlog_blocks_encrypted  | 0 |
  365. | Innodb_encryption_n_rowlog_blocks_decrypted  | 0 |
  366. | Key_blocks_not_flushed | 0 |
  367. | Key_blocks_unused  | 26792 |
  368. | Key_blocks_used  | 0 |
  369. | Key_read_requests  | 0 |
  370. | Key_reads  | 0 |
  371. | Key_write_requests | 0 |
  372. | Key_writes | 0 |
  373. | Locked_connects  | 0 |
  374. | Max_execution_time_exceeded  | 0 |
  375. | Max_execution_time_set | 0 |
  376. | Max_execution_time_set_failed  | 0 |
  377. | Max_used_connections | 3 |
  378. | Max_used_connections_time  | 2024-12-12 14:52:11 |
  379. | Mysqlx_aborted_clients | 0 |
  380. | Mysqlx_address | ::  |
  381. | Mysqlx_bytes_received  | 0 |
  382. | Mysqlx_bytes_received_compressed_payload | 0 |
  383. | Mysqlx_bytes_received_uncompressed_frame | 0 |
  384. | Mysqlx_bytes_sent  | 0 |
  385. | Mysqlx_bytes_sent_compressed_payload | 0 |
  386. | Mysqlx_bytes_sent_uncompressed_frame | 0 |
  387. | Mysqlx_compression_algorithm | |
  388. | Mysqlx_compression_level | |
  389. | Mysqlx_connection_accept_errors  | 0 |
  390. | Mysqlx_connection_errors | 0 |
  391. | Mysqlx_connections_accepted  | 0 |
  392. | Mysqlx_connections_closed  | 0 |
  393. | Mysqlx_connections_rejected  | 0 |
  394. | Mysqlx_crud_create_view  | 0 |
  395. | Mysqlx_crud_delete | 0 |
  396. | Mysqlx_crud_drop_view  | 0 |
  397. | Mysqlx_crud_find | 0 |
  398. | Mysqlx_crud_insert | 0 |
  399. | Mysqlx_crud_modify_view  | 0 |
  400. | Mysqlx_crud_update | 0 |
  401. | Mysqlx_cursor_close  | 0 |
  402. | Mysqlx_cursor_fetch  | 0 |
  403. | Mysqlx_cursor_open | 0 |
  404. | Mysqlx_errors_sent | 0 |
  405. | Mysqlx_errors_unknown_message_type | 0 |
  406. | Mysqlx_expect_close  | 0 |
  407. | Mysqlx_expect_open | 0 |
  408. | Mysqlx_init_error  | 0 |
  409. | Mysqlx_messages_sent | 0 |
  410. | Mysqlx_notice_global_sent  | 0 |
  411. | Mysqlx_notice_other_sent | 0 |
  412. | Mysqlx_notice_warning_sent | 0 |
  413. | Mysqlx_notified_by_group_replication | 0 |
  414. | Mysqlx_port  | 33060 |
  415. | Mysqlx_prep_deallocate | 0 |
  416. | Mysqlx_prep_execute  | 0 |
  417. | Mysqlx_prep_prepare  | 0 |
  418. | Mysqlx_rows_sent | 0 |
  419. | Mysqlx_sessions  | 0 |
  420. | Mysqlx_sessions_accepted | 0 |
  421. | Mysqlx_sessions_closed | 0 |
  422. | Mysqlx_sessions_fatal_error  | 0 |
  423. | Mysqlx_sessions_killed | 0 |
  424. | Mysqlx_sessions_rejected | 0 |
  425. | Mysqlx_socket  | /tmp/mysqlx.sock  |
  426. | Mysqlx_ssl_accepts | 0 |
  427. | Mysqlx_ssl_active  | |
  428. | Mysqlx_ssl_cipher  | |
  429. | Mysqlx_ssl_cipher_list | |
  430. | Mysqlx_ssl_ctx_verify_depth  | 18446744073709551615  |
  431. | Mysqlx_ssl_ctx_verify_mode | 5 |
  432. | Mysqlx_ssl_finished_accepts  | 0 |
  433. | Mysqlx_ssl_server_not_after  | Dec  2 03:33:20 2034 GMT  |
  434. | Mysqlx_ssl_server_not_before | Dec  4 03:33:20 2024 GMT  |
  435. | Mysqlx_ssl_verify_depth  | |
  436. | Mysqlx_ssl_verify_mode | |
  437. | Mysqlx_ssl_version | |
  438. | Mysqlx_stmt_create_collection  | 0 |
  439. | Mysqlx_stmt_create_collection_index  | 0 |
  440. | Mysqlx_stmt_disable_notices  | 0 |
  441. | Mysqlx_stmt_drop_collection  | 0 |
  442. | Mysqlx_stmt_drop_collection_index  | 0 |
  443. | Mysqlx_stmt_enable_notices | 0 |
  444. | Mysqlx_stmt_ensure_collection  | 0 |
  445. | Mysqlx_stmt_execute_mysqlx | 0 |
  446. | Mysqlx_stmt_execute_sql  | 0 |
  447. | Mysqlx_stmt_execute_xplugin  | 0 |
  448. | Mysqlx_stmt_get_collection_options | 0 |
  449. | Mysqlx_stmt_kill_client  | 0 |
  450. | Mysqlx_stmt_list_clients | 0 |
  451. | Mysqlx_stmt_list_notices | 0 |
  452. | Mysqlx_stmt_list_objects | 0 |
  453. | Mysqlx_stmt_modify_collection_options  | 0 |
  454. | Mysqlx_stmt_ping | 0 |
  455. | Mysqlx_worker_threads  | 2 |
  456. | Mysqlx_worker_threads_active | 0 |
  457. | Net_buffer_length  | 49152 |
  458. | Not_flushed_delayed_rows | 0 |
  459. | Ongoing_anonymous_transaction_count  | 0 |
  460. | Open_files | 7 |
  461. | Open_streams | 0 |
  462. | Open_table_definitions | 49  |
  463. | Open_tables  | 111 |
  464. | Opened_files | 7 |
  465. | Opened_table_definitions | 80  |
  466. | Opened_tables  | 193 |
  467. | PQ_memory_refused  | 0 |
  468. | PQ_memory_used | 0 |
  469. | PQ_threads_refused | 0 |
  470. | PQ_threads_running | 0 |
  471. | Performance_schema_accounts_lost | 0 |
  472. | Performance_schema_cond_classes_lost | 0 |
  473. | Performance_schema_cond_instances_lost | 0 |
  474. | Performance_schema_digest_lost | 0 |
  475. | Performance_schema_file_classes_lost | 0 |
  476. | Performance_schema_file_handles_lost | 0 |
  477. | Performance_schema_file_instances_lost | 0 |
  478. | Performance_schema_hosts_lost  | 0 |
  479. | Performance_schema_index_stat_lost | 0 |
  480. | Performance_schema_locker_lost | 0 |
  481. | Performance_schema_memory_classes_lost | 0 |
  482. | Performance_schema_metadata_lock_lost  | 0 |
  483. | Performance_schema_mutex_classes_lost  | 0 |
  484. | Performance_schema_mutex_instances_lost  | 0 |
  485. | Performance_schema_nested_statement_lost | 0 |
  486. | Performance_schema_prepared_statements_lost  | 0 |
  487. | Performance_schema_program_lost  | 0 |
  488. | Performance_schema_rwlock_classes_lost | 0 |
  489. | Performance_schema_rwlock_instances_lost | 0 |
  490. | Performance_schema_session_connect_attrs_longest_seen  | 173 |
  491. | Performance_schema_session_connect_attrs_lost  | 0 |
  492. | Performance_schema_socket_classes_lost | 0 |
  493. | Performance_schema_socket_instances_lost | 0 |
  494. | Performance_schema_stage_classes_lost  | 0 |
  495. | Performance_schema_statement_classes_lost  | 0 |
  496. | Performance_schema_table_handles_lost  | 0 |
  497. | Performance_schema_table_instances_lost  | 0 |
  498. | Performance_schema_table_lock_stat_lost  | 0 |
  499. | Performance_schema_thread_classes_lost | 0 |
  500. | Performance_schema_thread_instances_lost | 0 |
  501. | Performance_schema_users_lost  | 0 |
  502. | Prepared_stmt_count  | 0 |
  503. | Queries  | 26  |
  504. | Questions  | 16  |
  505. | Replica_open_temp_tables | 0 |
  506. | Resource_group_supported | ON  |
  507. | Rsa_public_key | -----BEGIN PUBLIC KEY-----
  508. -----END PUBLIC KEY-----
  509. |
  510. | Sched_affinity_group_capacity  | 8 |
  511. | Sched_affinity_group_number  | 1 |
  512. | Sched_affinity_status  | |
  513. | Secondary_engine_execution_count | 0 |
  514. | Select_full_join | 0 |
  515. | Select_full_range_join | 0 |
  516. | Select_range | 0 |
  517. | Select_range_check | 0 |
  518. | Select_scan  | 4 |
  519. | Slave_open_temp_tables | 0 |
  520. | Slow_launch_threads  | 0 |
  521. | Slow_queries | 0 |
  522. | Sort_merge_passes  | 0 |
  523. | Sort_range | 0 |
  524. | Sort_rows  | 0 |
  525. | Sort_scan  | 0 |
  526. | Ssl_accept_renegotiates  | 0 |
  527. | Ssl_accepts  | 1 |
  528. | Ssl_callback_cache_hits  | 0 |
  529. | Ssl_cipher | |
  530. | Ssl_cipher_list  | |
  531. | Ssl_client_connects  | 0 |
  532. | Ssl_connect_renegotiates | 0 |
  533. | Ssl_ctx_verify_depth | 18446744073709551615  |
  534. | Ssl_ctx_verify_mode  | 5 |
  535. | Ssl_default_timeout  | 0 |
  536. | Ssl_finished_accepts | 1 |
  537. | Ssl_finished_connects  | 0 |
  538. | Ssl_server_not_after | Dec  2 03:33:20 2034 GMT  |
  539. | Ssl_server_not_before  | Dec  4 03:33:20 2024 GMT  |
  540. | Ssl_session_cache_hits | 0 |
  541. | Ssl_session_cache_misses | 0 |
  542. | Ssl_session_cache_mode | SERVER  |
  543. | Ssl_session_cache_overflows  | 0 |
  544. | Ssl_session_cache_size | 128 |
  545. | Ssl_session_cache_timeout  | 300 |
  546. | Ssl_session_cache_timeouts | 0 |
  547. | Ssl_sessions_reused  | 0 |
  548. | Ssl_used_session_cache_entries | 0 |
  549. | Ssl_verify_depth | 0 |
  550. | Ssl_verify_mode  | 0 |
  551. | Ssl_version  | |
  552. | Table_locks_immediate  | 2 |
  553. | Table_locks_waited | 0 |
  554. | Table_open_cache_hits  | 3829  |
  555. | Table_open_cache_misses  | 193 |
  556. | Table_open_cache_overflows | 0 |
  557. | Table_open_cache_triggers_hits | 0 |
  558. | Table_open_cache_triggers_misses | 0 |
  559. | Table_open_cache_triggers_overflows  | 0 |
  560. | Tc_log_max_pages_used  | 0 |
  561. | Tc_log_page_size | 0 |
  562. | Tc_log_page_waits  | 0 |
  563. | Threadpool_idle_threads  | 0 |
  564. | Threadpool_threads | 0 |
  565. | Threads_cached | 0 |
  566. | Threads_connected  | 3 |
  567. | Threads_created  | 3 |
  568. | Threads_running  | 3 |
  569. | Tls_library_version  | OpenSSL 1.1.1h  22 Sep 2020 |
  570. | Uptime | 425 |
  571. | Uptime_since_flush_status  | 425 |
  572. | validate_password.dictionary_file_last_parsed  | 2024-12-12 14:45:20 |
  573. | validate_password.dictionary_file_words_count  | 0 |
复制代码


yejr 2024-12-12 15:14:32

看起来不对劲啊,你的mysqld进程显示是12月4日启动的,但从global status里看到的才启动425秒,请先确认哪里有出入


  1. mysql      47758  1.3 36.7 12955744 11896296 ?   Sl   Dec04 152:22 /usr/local/greatsql/bin/mysqld --defaults-file=/etc/my-xxxxx-3306.cnf --basedir=/usr/local/greatsql --datadir=/data/greatsql-xxxxx-3306/data --plugin-dir=/usr/local/greatsql/lib/plugin --user=mysql--log-error=/data/greatsql-xxxxx-3306/logs/error.log --open-files-limit=65535 --pid-file=/data/greatsql-xxxxx-3306/data/mysql.pid --socket=/data/greatsql-xxxxx-3306/data/mysql.sock --port=3306
复制代码



  1. | Uptime | 425 |
  2. | Uptime_since_flush_status  | 425 |

复制代码

12下一页
wu999

4

主题

0

博客

12

贡献

新手上路

Rank: 1

积分
20

合作电话:010-64087828

社区邮箱:greatsql@greatdb.com

社区公众号
社区小助手
QQ群
GMT+8, 2025-4-3 21:06 , Processed in 0.028420 second(s), 24 queries , Redis On.
快速回复 返回顶部 返回列表