In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article introduces what is the principle of page splitting in mysql clustering index, the content is very detailed, interested friends can refer to, hope to be helpful to you.
The characteristics of clustering structure:
When querying entries based on the primary key, there is no need to return the line (the data is under the primary key node)
If you encounter irregular data insertion, it will cause frequent page splitting.
Why does a page split occur?
This is because the clustering index uses the balanced binary tree algorithm, and each node stores the data corresponding to the primary key, assuming that the primary key inserted into the data is self-growing. then according to the binary tree algorithm, the data will be quickly added to a node, while other nodes do not need to move; but if the insertion is irregular data, then each insertion will change the data state before the binary tree. This causes the page to split.
Test:
Create 2 tables
Create table T8 (id int primary key,c1 varchar, c2 varchar, c3 varchar, c4 varchar, c5 varchar, c6 varchar) engine innodb charset utf8;create table T9 (id int primary key,c1 varchar, c2 varchar, c3 varchar, c4 varchar, c5 varchar, c6 varchar) engine innodb charset utf8
Write a php script to insert 1W pieces of irregular primary key data and 1W pieces of rule primary key data to see the difference.
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.