MySQL5.1 MyISAM与InnoDB 引擎读写性能对比

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介:

一、前言

二、概述

三、100 万数据性能测试

四、200 万数据性能测试

五、500 万数据性能测试

六、1000 万数据性能测试

七、总结

注,测试环境 CentOS 6.4 x86_64,软件版本 MySQL 5.1.73 (MySQL 5.1最新版),下载地址:http://dev.mysql.com/downloads/mysql/5.1.html#downloads


一、前言

在上两篇博客中我们测试了,MySQL5.5对多核CPU支持、Mysql 5.1与MySQL5.5性能测试对比,不清楚的博友可以参考一下上两篇博客:http://freeloda.blog.51cto.com/2033581/1348385 和 http://freeloda.blog.51cto.com/2033581/1348385,在这一篇博客中我们主要测试MySQL 5.1 MyISAM与InnoDB 引擎读写性能对比。


二、概述

1.环境准备

(1).安装yum源

1
2
[root@node6 src] # wget http://mirrors.hustunique.com/epel/6/x86_64/epel-release-6-8.noarch.rpm
[root@node6 src] # rpm -ivh epel-release-6-8.noarch.rpm

(2).同步时间(系统与硬件)

1
2
3
[root@node6 src] # yum install -y ntp
[root@node6 src] # ntpdate 202.120.2.101
[root@node6 src] # hwclock -w

2.安装mysql 5.1

1
2
3
[root@node6 mysql-5.1.73] # tar xf mysql-5.1.73.tar.gz
[root@node6 mysql-5.1.73] # cd mysql-5.1.73
[root@node6 mysql-5.1.73] # ./configure --prefix=/usr/local/mysql --localstatedir=/data/mysql --enable-assembler --with-client-ldflags=-all-static --with-mysqld-ldflags=-all-static --with-pthread --enable-static --with-big-tables --without-ndb-debug --with-charset=utf8 --with-extra-charsets=all --without-debug --enable-thread-safe-client --enable-local-infile --with-plugins=max

出错1:checking for termcap functions library... configure: error: No curses/termcap library found。

原因:缺少ncurses安装包。

解决方法,

1
[root@node6 mysql-5.1.73] # yum -y install ncurses ncurses-devel

下面继续,

1
[root@node6 mysql-5.1.73] # ./configure --prefix=/usr/local/mysql --localstatedir=/data/mysql --enable-assembler --with-client-ldflags=-all-static --with-mysqld-ldflags=-all-static --with-pthread --enable-static --with-big-tables --without-ndb-debug --with-charset=utf8 --with-extra-charsets=all --without-debug --enable-thread-safe-client --enable-local-infile --with-plugins=max

上面配置内容省略……

1
2
3
4
5
6
7
8
This version of MySQL Cluster is no longer maintained. 
Please use the separate sources provided  for  MySQL Cluster instead.  
See http: //dev .mysql.com /doc/refman/5 .1 /en/mysql-cluster .html
for  more  details.
Thank you  for  choosing MySQL!
Remember to check the platform specific part of the reference manual 
for  hints about installing MySQL on your platform.  
Also have a  look  at the files  in  the Docs directory.

到这里我们编译配置就完成了,下面我们编译并安装。

1
[root@node6 mysql-5.1.73] # make && make install

注,编译与安装时间比较长请大家耐心等待,当然会看各位博友机器的配置,相对来说配置越好,相对的编译与安装时间相对就少。

3.创建数据目录并授权

1
2
3
4
5
6
7
8
[root@node6 mysql-5.1.73] # mkdir -pv /data/mysql 
mkdir : 已创建目录  "/data/mysql"  
[root@node6 mysql-5.1.73] # useradd mysql  
[root@node6 mysql-5.1.73] # chown mysql.mysql /data/mysql/  
[root@node6 mysql-5.1.73] # ll /data/  
总用量 20  
drwx------. 2 root  root  16384 8月  17 18:42 lost+found  
drwxr-xr-x. 2 mysql mysql  4096 1月   4 16:10 mysql

4.为mysql提供配置文件

1
2
[root@node6 mysql-5.1.73] # cp support-files/my-huge.cnf /etc/my.cnf
cp :是否覆盖 "/etc/my.cnf" ? y

5.简单修改一下配置文件

1
2
3
4
5
6
[root@node6 mysql-5.1.73] # vim /etc/my.cnf
[client]
default-character- set  = utf8
[mysqld] 
default-character- set  = utf8  
datadir        =  /data/mysql

6.提供启动脚本

1
2
3
4
[root@node6 mysql-5.1.73] # cp support-files/mysql.server /etc/init.d/mysqld  
[root@node6 mysql-5.1.73] # chmod +x /etc/init.d/mysqld
[root@node6 ~] # chkconfig mysqld --add  
[root@node6 ~] # chkconfig mysqld on

7.初始化mysql

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[root@node6 mysql-5.1.73] # /usr/local/mysql/bin/mysql_install_db --basedir=/usr/local/mysql/ --datadir=/data/mysql/ --user=mysql 
Installing MySQL system tables...  
140104 16:18:43 [Warning]  '--default-character-set'  is deprecated and will be removed  in  a future release. Please use  '--character-set-server'  instead.  
140104 16:18:43 [Warning]  '--skip-locking'  is deprecated and will be removed  in  a future release. Please use  '--skip-external-locking'  instead.  
OK  
Filling help tables...  
140104 16:18:43 [Warning]  '--default-character-set'  is deprecated and will be removed  in  a future release. Please use  '--character-set-server'  instead.  
140104 16:18:43 [Warning]  '--skip-locking'  is deprecated and will be removed  in  a future release. Please use  '--skip-external-locking'  instead.  
OK
To start mysqld at boot  time  you have to copy 
support-files /mysql .server to the right place  for  your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! 
To  do  so, start the server,  then  issue the following commands:
/usr/local/mysql//bin/mysqladmin  -u root password  'new-password' 
/usr/local/mysql//bin/mysqladmin  -u root -h node6. test .com password  'new-password'
Alternatively you can run: 
/usr/local/mysql//bin/mysql_secure_installation
which  will also give you the option of removing the  test 
databases and anonymous user created by default.  This is  
strongly recommended  for  production servers.
See the manual  for  more  instructions.
You can start the MySQL daemon with: 
cd  /usr/local/mysql/  /usr/local/mysql//bin/mysqld_safe  &
You can  test  the MySQL daemon with mysql- test -run.pl 
cd  /usr/local/mysql//mysql-test  ; perl mysql- test -run.pl
Please report any problems with the  /usr/local/mysql//scripts/mysqlbug  script!

注,从上面的内容中我们看到了几个警告,我们查看一下。

1
2
3
4
5
6
140104 16:18:43 [Warning]  '--default-character-set'  is deprecated and will be removed  in  a future release. Please use  '--character-set-server'  instead.
140104 16:18:43 [Warning]  '--skip-locking'  is deprecated and will be removed  in  a future release. Please use  '--skip-external-locking'  instead.
OK
Filling help tables...
140104 16:18:43 [Warning]  '--default-character-set'  is deprecated and will be removed  in  a future release. Please use  '--character-set-server'  instead.
140104 16:18:43 [Warning]  '--skip-locking'  is deprecated and will be removed  in  a future release. Please use  '--skip-external-locking'  instead.


从上面的警告可以看到,--default-character-set、--skip-locking选项已经过时,建议使用--character-set-server、--skip-external-locking。

8.查看一下初始化目录

1
2
[root@node6 data] # ls /data/mysql/ 
mysql  mysql-bin.000001  mysql-bin.000002  mysql-bin.index   test

9.启动一下mysql

1
2
[root@node6 ~] # service mysqld start 
Starting MySQL.. SUCCESS!

10.测试访问一下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[root@node6 ~] # /usr/local/mysql/bin/mysql 
Welcome to the MySQL monitor.  Commands end with ; or \g.  
Your MySQL connection  id  is 1  
Server version: 5.1.73-log Source distribution
Copyright (c) 2000, 2013, Oracle and /or  its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and /or  its 
affiliates. Other names may be trademarks of their respective  
owners.
Type  'help;'  or  '\h'  for  help. Type  '\c'  to  clear  the current input statement.
mysql> show databases; 
+--------------------+  
| Database           |  
+--------------------+  
| information_schema |  
| mysql              |  
test                |  
+--------------------+  
3 rows  in  set  (0.00 sec)
mysql>

好了,到这里我们的mysql基本就安装完成,但我们还提做上些优化工作。

11.输出mysql的man手册至man命令的查找路径

1
2
3
[root@node6 ~] # yum install -y man
[root@node6 ~] # vim /etc/man.config
MANPATH   /usr/local/mysql/man

12.输出mysql的头文件至系统头文件路径/usr/include

1
[root@node6 mysql] # ln -sv /usr/local/mysql/include  /usr/include/mysql

13.输出mysql的库文件给系统库查找路径

1
2
[root@node6 mysql]# echo  '/usr/local/mysql/lib'  > /etc/ld.so.conf.d/mysql.conf
[root@node6 mysql]# ldconfig

14.修改PATH环境变量,让系统可以直接使用mysql的相关命令

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@node6 mysql] # vim /etc/profile.d/mysql.sh
export  PATH=$PATH: /usr/local/mysql/bin/
[root@node6 mysql] # source /etc/profile 
[root@node6 mysql] # mysql  
Welcome to the MySQL monitor.  Commands end with ; or \g.  
Your MySQL connection  id  is 2  
Server version: 5.1.73-log Source distribution
Copyright (c) 2000, 2013, Oracle and /or  its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and /or  its 
affiliates. Other names may be trademarks of their respective  
owners.
Type  'help;'  or  '\h'  for  help. Type  '\c'  to  clear  the current input statement.
mysql>


好了,到这里我们的mysql就全部安装完成了,下面我们来准备一下测试环境。

15.新建测试库与测试表

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
mysql> CREATE DATABASE mydb; 
Query OK, 1 row affected (0.33 sec)
mysql> SHOW DATABASES; 
+--------------------+  
| Database           |  
+--------------------+  
| information_schema |  
| mydb               |  
| mysql              |  
test                |  
+--------------------+  
4 rows  in  set  (0.00 sec)
mysql> use mydb; 
Database changed
mysql> show create database mydb; 
+----------+---------------------------------------------------------------+  
| Database | Create Database                                               |  
+----------+---------------------------------------------------------------+  
| mydb     | CREATE DATABASE `mydb` /*!40100 DEFAULT CHARACTER SET utf8 */ |  
+----------+---------------------------------------------------------------+  
1 row  in  set  (0.00 sec)
mysql> show tables;  
Empty  set  (0.01 sec)
mysql> CREATE TABLE `t1` ( id  int(11) DEFAULT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8 ; 
Query OK, 0 rows affected (0.03 sec)
mysql> show create table t1; 
+-------+--------------------------------------------------------------------------------------+  
| Table | Create Table                                                                         |  
+-------+--------------------------------------------------------------------------------------+  
| t1    | CREATE TABLE `t1` (  
   ` id ` int(11) DEFAULT NULL  
) ENGINE=MyISAM DEFAULT CHARSET=utf8 |  
+-------+--------------------------------------------------------------------------------------+  
1 row  in  set  (0.00 sec)
mysql> show tables; 
+----------------+  
| Tables_in_mydb |  
+----------------+  
| t1             |  
+----------------+  
1 row  in  set  (0.00 sec)
mysql> desc t1; 
+-------+---------+------+-----+---------+-------+  
| Field | Type    | Null | Key | Default | Extra |  
+-------+---------+------+-----+---------+-------+  
id     | int(11) | YES  |     | NULL    |       |  
+-------+---------+------+-----+---------+-------+  
1 row  in  set  (0.33 sec)

16.准备1000万数据

注,现在我们要测试的表是空表,下面我们要用下面的方法,快速插入1000万数据。

(1).先简单插入10行数据,

1
mysql>  insert into t1  value (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);

(2).查看一下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mysql>  select  * from t1; 
+------+  
id    |  
+------+  
|    1 |  
|    2 |  
|    3 |  
|    4 |  
|    5 |  
|    6 |  
|    7 |  
|    8 |  
|    9 |  
|   10 |  
+------+  
10 rows  in  set  (0.00 sec)

(3).插入多行数据方法

1
2
3
4
5
6
7
8
9
10
mysql> insert into t1  select  * from t1; 
Query OK, 10 rows affected (0.00 sec)  
Records: 10  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t1; 
+----------+  
| count(*) |  
+----------+  
|       20 |  
+----------+  
1 row  in  set  (0.33 sec)

大家可以看到现在我们有20行数据,使用 insert into t1 select * from t1 这样的插入数据方法,数据不但可以成倍增长,而且增加的数据可控,方便我们测试100万数据、200万数据、500万数据,以及更多数据测试。下面我们就开始数据读写测试。


三、100 万数据性能测试

1.查看一下创建的表

1
2
3
4
5
6
7
8
9
mysql> show create table t1; 
+-------+--------------------------------------------------------------------------------------+  
| Table | Create Table                                                                         |  
+-------+--------------------------------------------------------------------------------------+  
| t1    | CREATE TABLE `t1` (  
   ` id ` int(11) DEFAULT NULL  
) ENGINE=MyISAM DEFAULT CHARSET=utf8 |  
+-------+--------------------------------------------------------------------------------------+  
1 row  in  set  (0.00 sec)

注,我们先测试一下MyISAM引擎。

2.查看一下表结构

1
2
3
4
5
6
7
mysql> desc t1; 
+-------+---------+------+-----+---------+-------+  
| Field | Type    | Null | Key | Default | Extra |  
+-------+---------+------+-----+---------+-------+  
id     | int(11) | YES  |     | NULL    |       |  
+-------+---------+------+-----+---------+-------+  
1 row  in  set  (0.01 sec)

3.下面插入数据100万行

(1).先插入10行数据

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mysql>  insert into t1  value (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
  mysql>  select  * from t1;
+------+
id    |
+------+
|    1 |
|    2 |
|    3 |
|    4 |
|    5 |
|    6 |
|    7 |
|    8 |
|    9 |
|   10 |
+------+
10 rows  in  set  (0.00 sec)

(2).下面我们正来继续插入数据

1
2
3
4
5
6
7
8
9
10
mysql> insert into t1  select  * from t1; 
Query OK, 1310720 rows affected (0.64 sec)  
Records: 1310720  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t1; 
+----------+  
| count(*) |  
+----------+  
|  2621440 |  
+----------+  
1 row  in  set  (0.00 sec)

注,大家可以看到插入100万行的数据只用了0.64秒,查询几乎不花时间。

4.下面我们来新建一下t2表,并设置默认引擎为InnoDB;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
mysql> CREATE TABLE `t2` (  id  int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
Query OK, 0 rows affected (0.36 sec)
mysql> show tables; 
+----------------+  
| Tables_in_mydb |  
+----------------+  
| t1             |  
| t2             |  
+----------------+  
2 rows  in  set  (0.00 sec)
mysql> show create table t2; 
+-------+--------------------------------------------------------------------------------------+  
| Table | Create Table                                                                         |  
+-------+--------------------------------------------------------------------------------------+  
| t2    | CREATE TABLE `t2` (  
   ` id ` int(11) DEFAULT NULL  
) ENGINE=InnoDB DEFAULT CHARSET=utf8 |  
+-------+--------------------------------------------------------------------------------------+  
1 row  in  set  (0.00 sec)
mysql> desc t2; 
+-------+---------+------+-----+---------+-------+  
| Field | Type    | Null | Key | Default | Extra |  
+-------+---------+------+-----+---------+-------+  
id     | int(11) | YES  |     | NULL    |       |  
+-------+---------+------+-----+---------+-------+  
1 row  in  set  (0.01 sec)

5.下面我们插入数据并进行查询测试

1
2
3
4
5
6
7
8
9
10
mysql> insert into t2  select  * from t2; 
Query OK, 1310720 rows affected (13.03 sec)  
Records: 1310720  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t2; 
+----------+  
| count(*) |  
+----------+  
|  2621440 |  
+----------+  
1 row  in  set  (1.20 sec)

6.总结

(1).MyISAM 引擎

  • 插入100多万行数据花费的时间为 0.64 秒。

  • 用select count(*) from t1 命令查询的时间为 0.00 秒。

(2).InnoDB 引擎

  • 插入100多万行数据花费的时间为 13.03 秒。

  • 用select count(*) from t1 命令查询的时间为 1.20 秒。

下面我们继续测试……


四、200 万数据性能测试

1.t1表插入并查询数据

1
2
3
4
5
6
7
8
9
10
mysql> insert into t1  select  * from t1; 
Query OK, 2621440 rows affected (1.23 sec)  
Records: 2621440  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t1; 
+----------+  
| count(*) |  
+----------+  
|  5242880 |  
+----------+  
1 row  in  set  (0.00 sec)

2.t2表插入并查询数据

1
2
3
4
5
6
7
8
9
10
mysql> insert into t2  select  * from t2; 
Query OK, 2621440 rows affected (26.32 sec)  
Records: 2621440  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t2; 
+----------+  
| count(*) |  
+----------+  
|  5242880 |  
+----------+  
1 row  in  set  (2.08 sec)

3.总结

(1).MyISAM 引擎

  • 插入200多万行数据花费的时间为 1.23 秒。

  • 用select count(*) from t1 命令查询的时间为 0.00 秒。

(2).InnoDB 引擎

  • 插入200多万行数据花费的时间为 26.32 秒。

  • 用select count(*) from t1 命令查询的时间为 2.08 秒。


五、500 万数据性能测试

1.t1表插入并查询数据

1
2
3
4
5
6
7
8
9
10
mysql> insert into t1  select  * from t1; 
Query OK, 5242880 rows affected (2.35 sec)  
Records: 5242880  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t1; 
+----------+  
| count(*) |  
+----------+  
| 10485760 |  
+----------+  
1 row  in  set  (0.00 sec)

2.t2表插入并查询数据

1
2
mysql> insert into t2  select  * from t2; 
ERROR 1206 (HY000): The total number of locks exceeds the lock table size

注,大家可以看到Innodb引擎插入500多万行数据直接报错。

原因:InnoDB表执行大批量数据的更新,插入,删除操作时会出现这个问题,需要调整InnoDB全局的innodb_buffer_pool_size的值来解决这个问题,并且重启mysql服务。

查看一下默认的innodb_buffer_pool_size默认为8M,

1
2
3
4
5
6
7
mysql> show variables like  "innodb_buffer_pool_size"
+-------------------------+---------+  
| Variable_name           | Value   |  
+-------------------------+---------+  
| innodb_buffer_pool_size | 8388608 |  
+-------------------------+---------+  
1 row  in  set  (0.00 sec)

下面我们修改一下并重启mysql,

1
2
3
4
5
6
7
8
9
10
11
12
[root@node6 ~] # vim /etc/my.cnf
innodb_buffer_pool_size = 384M
[root@node6 ~] # service mysqld restart 
Shutting down MySQL..... SUCCESS!   
Starting MySQL. SUCCESS!
mysql> show variables like  "innodb_buffer_pool_size"
+-------------------------+-----------+  
| Variable_name           | Value     |  
+-------------------------+-----------+  
| innodb_buffer_pool_size | 402653184 |  
+-------------------------+-----------+  
1 row  in  set  (0.00 sec)

好了,问题解决下面我们继续测试。

1
2
3
4
5
6
7
8
9
10
mysql> insert into t2  select  * from t2; 
Query OK, 5242880 rows affected (52.81 sec)  
Records: 5242880  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t2; 
+----------+  
| count(*) |  
+----------+  
| 10485760 |  
+----------+  
1 row  in  set  (6.63 sec)

3.总结

(1).MyISAM 引擎

  • 插入500多万行数据花费的时间为2.35秒。

  • 用select count(*) from t1 命令查询的时间为 0.00 秒。

(2).InnoDB 引擎

  • 插入500多万行数据花费的时间为 52.81 秒。

  • 用select count(*) from t1 命令查询的时间为 6.63 秒。


六、 1000 万数据性能测试

1.t1表插入并查询数据

1
2
3
4
5
6
7
8
9
10
mysql> insert into t1  select  * from t1; 
Query OK, 10485760 rows affected (8.47 sec)  
Records: 10485760  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t1; 
+----------+  
| count(*) |  
+----------+  
| 20971520 |  
+----------+  
1 row  in  set  (0.07 sec)

2.t2表插入并查询数据

1
2
3
4
5
6
7
8
9
10
mysql> insert into t2  select  * from t2; 
Query OK, 10485760 rows affected (1 min 53.02 sec)  
Records: 10485760  Duplicates: 0  Warnings: 0
mysql>  select  count(*) from t2; 
+----------+  
| count(*) |  
+----------+  
| 20971520 |  
+----------+  
1 row  in  set  (18.50 sec)

3.总结

(1).MyISAM 引擎

  • 插入1000多万行数据花费的时间为 8.47 秒。

  • 用select count(*) from t1 命令查询的时间为 0.07 秒。

(2).InnoDB 引擎

  • 插入1000多万行数据花费的时间为 53.02 秒。

  • 用select count(*) from t1 命令查询的时间为 18.50 秒。


七、总结

MyISAM 引擎

数据(单位/万) 插入数据时间(单位/秒) 查看数据时间(单位/秒)
100 0.64 0.00
200 1.23 0.00
500 2.35 0.00
10000 8.47 0.07


InnoDB 引擎

数据(单位/万) 插入数据时间(单位/秒) 查看数据时间(单位/秒)
100 13.03 1.20
200 26.32 2.08
500 52.81 6.63
1000 53.02 18.50

注,从插入数据时间和查看数据时间这两个数据来看,可以说MyISAM引擎是完胜InnoDB引擎。好了,这次的博客就到这里了。最后,希望大家有所收获^_^……

















本文转自陈明乾51CTO博客,原文链接:http://blog.51cto.com/freeloda/1348507,如需转载请自行联系原作者
相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
1天前
|
存储 缓存 关系型数据库
【MySQL进阶篇】存储引擎(MySQL体系结构、InnoDB、MyISAM、Memory区别及特点、存储引擎的选择方案)
MySQL的存储引擎是其核心组件之一,负责数据的存储、索引和检索。不同的存储引擎具有不同的功能和特性,可以根据业务需求 选择合适的引擎。本文详细介绍了MySQL体系结构、InnoDB、MyISAM、Memory区别及特点、存储引擎的选择方案。
【MySQL进阶篇】存储引擎(MySQL体系结构、InnoDB、MyISAM、Memory区别及特点、存储引擎的选择方案)
|
6天前
|
存储 关系型数据库 MySQL
MySQL存储引擎详述:InnoDB为何胜出?
MySQL 是最流行的开源关系型数据库之一,其存储引擎设计是其高效灵活的关键。InnoDB 作为默认存储引擎,支持事务、行级锁和外键约束,适用于高并发读写和数据完整性要求高的场景;而 MyISAM 不支持事务,适合读密集且对事务要求不高的应用。根据不同需求选择合适的存储引擎至关重要,官方推荐大多数场景使用 InnoDB。
44 7
|
15天前
|
存储 关系型数据库 MySQL
Mysql索引:深入理解InnoDb聚集索引与MyisAm非聚集索引
通过本文的介绍,希望您能深入理解InnoDB聚集索引与MyISAM非聚集索引的概念、结构和应用场景,从而在实际工作中灵活运用这些知识,优化数据库性能。
78 7
|
1月前
|
存储 Oracle 关系型数据库
【赵渝强老师】MySQL InnoDB的数据文件与重做日志文件
本文介绍了MySQL InnoDB存储引擎中的数据文件和重做日志文件。数据文件包括`.ibd`和`ibdata`文件,用于存放InnoDB数据和索引。重做日志文件(redo log)确保数据的可靠性和事务的持久性,其大小和路径可由相关参数配置。文章还提供了视频讲解和示例代码。
149 11
【赵渝强老师】MySQL InnoDB的数据文件与重做日志文件
|
22天前
|
存储 关系型数据库 MySQL
MySQL引擎InnoDB和MyISAM的区别?
InnoDB是MySQL默认的事务型存储引擎,支持事务、行级锁、MVCC、在线热备份等特性,主索引为聚簇索引,适用于高并发、高可靠性的场景。MyISAM设计简单,支持压缩表、空间索引,但不支持事务和行级锁,适合读多写少、不要求事务的场景。
51 9
|
1月前
|
存储 Oracle 关系型数据库
【赵渝强老师】MySQL InnoDB的表空间
InnoDB是MySQL默认的存储引擎,主要由存储结构、内存结构和线程结构组成。其存储结构分为逻辑和物理两部分,逻辑存储结构包括表空间、段、区和页。表空间是InnoDB逻辑结构的最高层,所有数据都存放在其中。默认情况下,InnoDB有一个共享表空间ibdata1,用于存放撤销信息、系统事务信息等。启用参数`innodb_file_per_table`后,每张表的数据可以单独存放在一个表空间内,但撤销信息等仍存放在共享表空间中。
|
1月前
|
存储 Oracle 关系型数据库
【赵渝强老师】MySQL InnoDB的段、区和页
MySQL的InnoDB存储引擎逻辑存储结构与Oracle相似,包括表空间、段、区和页。表空间由段和页组成,段包括数据段、索引段等。区是1MB的连续空间,页是16KB的最小物理存储单位。InnoDB是面向行的存储引擎,每个页最多可存放7992行记录。
|
1月前
|
存储 Oracle 关系型数据库
【赵渝强老师】MySQL的InnoDB存储引擎
InnoDB是MySQL的默认存储引擎,广泛应用于互联网公司。它支持事务、行级锁、外键和高效处理大量数据。InnoDB的主要特性包括解决不可重复读和幻读问题、高并发度、B+树索引等。其存储结构分为逻辑和物理两部分,内存结构类似Oracle的SGA和PGA,线程结构包括主线程、I/O线程和其他辅助线程。
【赵渝强老师】MySQL的InnoDB存储引擎
|
6月前
|
存储 关系型数据库 MySQL
MySQL数据库进阶第六篇(InnoDB引擎架构,事务原理,MVCC)
MySQL数据库进阶第六篇(InnoDB引擎架构,事务原理,MVCC)
|
2月前
|
存储 缓存 关系型数据库
详细解析MySQL中的innodb和myisam
总之,InnoDB和MyISAM各有千秋,选择合适的存储引擎应基于对应用程序特性的深入理解,以及对性能、数据完整性和可扩展性的综合考量。随着技术发展,InnoDB因其全面的功能和日益优化的性能,逐渐成为更广泛场景下的首选。然而,在特定条件下,MyISAM依然保留其独特的价值。
175 0