Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to collect statistics in MySQL5.5

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "how to collect statistical information in MySQL5.5". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn "how to collect statistics in MySQL5.5"!

For large tables, you need to manually add a scheduled collection task for the ANALYZE TABLE table name.

In MySQL, the query optimizer selects the appropriate execution plan based on statistics.

The main parts of the statistics are as follows:

① cardinality, entries for non-repeating rows in the table

Total number of rows in the ② table

③ index

The data of the table is represented by the primary key index

For the entry of the index, it is represented by the second index

The following action causes InnoDB to randomly sample data pages for each index in the table:

① ANALYZE TABLE statement

② SHOW TABLE STATUS statement

The first access to the table after the ③ database restart

If the innodb_stats_on_metadata parameter is set to ON, the database stores the statistics in the system table

> show global variables like 'innodb_stats_on_metadata'

+-+ +

| | Variable_name | Value |

+-+ +

| | innodb_stats_on_metadata | ON |

+-+ +

1 row in set (0.00 sec)

For null value handling, you can configure it through the innodb_stats_method parameter

> show global variables like 'innodb_stats_method'

+-+ +

| | Variable_name | Value |

+-+ +

| | innodb_stats_method | nulls_equal |

+-+ +

1 row in set (0.00 sec)

Other statistical information can be obtained from the tables under INFORMATION_SCHEMA and PERFORMANCE_SCHEMA libraries.

In order to provide sampling accuracy when collecting statistics, you can adjust the innodb_stats_sample_pages parameter

The default value of this parameter is 8, which is not enough for large tables and needs to be increased.

> show global variables like 'innodb_stats_sample_pages'

+-+ +

| | Variable_name | Value |

+-+ +

| | innodb_stats_sample_pages | 8 |

+-+ +

1 row in set (0.00 sec)

At this point, I believe you have a deeper understanding of "how to collect statistical information in MySQL5.5". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report