MariaDB [hellodb]> show variables like '%query_cache%';
+------------------------------+---------+
| Variable_name | Value |
+------------------------------+---------+
| have_query_cache | YES |
| query_cache_limit | 1048576 | 单个查询结果能缓存的最大值,即缓存中查询结果能分配到的空间最大值
| query_cache_min_res_unit | 4096 | 缓存中内存块的最小分配单位:4K
| query_cache_size | 0 | 查询缓存总共可用的内存空间
| query_cache_strip_comments | OFF |
| query_cache_type | ON | 是否开启缓存功能
| query_cache_wlock_invalidate | OFF | 如果表被锁定,其他yoghurt是否可以从查询缓存中返回结果
+------------------------------+---------+
set global query_cache_size=10485760 更改缓存可用的内存空间为10M
vim /etc/my.cnf 在配置文件中更改此选项
set global query_cache_size=10M
MariaDB [hellodb]> show status like 'qcache%';
+-------------------------+----------+
| Variable_name | Value |
+-------------------------+----------+
| Qcache_free_blocks | 1 |
| Qcache_free_memory | 10222536 |
| Qcache_hits | 0 |
| Qcache_inserts | 0 |
| Qcache_lowmem_prunes | 0 |
| Qcache_not_cached | 0 |
| Qcache_queries_in_cache | 0 |
| Qcache_total_blocks | 1 |
+-------------------------+----------+
命中率和内存使用率估算
InnoDB存储引擎
存储引擎
索引
B-TREE和B+TREE的区别:
B-TREE B树 每个节点最多3个分支,每个节点都存放数据,占用空间较大,不支持范围查询(查询效率很低)
B+TREE B+树 根节点和分支节点不存放数据,只存放索引,数据存放在叶子节点,叶子节点之间有链表关系,知道下一个叶子节点的位置,适合范围查询
Hash索引
其他索引
聚簇索引和非聚簇索引
聚簇索引和非聚簇索引,主键和二级索引
其他索引
左前缀索引:如果某字段长度很长,可以限定其中左起多少个字符作为索引,如name字段有50个字符长度,如果用其中20个字符不会出现重复,那么就可以用前20个字符作为索引
注意:限定的长度的字符不能重复,如wang1,wang2,wang3 ,不能用wang作为索引
索引选择性:不重复的索引值和数据表的记录总数的比值
多列索引:AND操作时更适合使用多列索引,而非为每个列创建单独的索引
选择合适的索引列顺序:无排序和分组时,将选择性最高放左侧
索引优化建议
SQL语句性能优化
管理索引
使用alter命令添加索引
alter table students add index idx_age(age);
创建惟一键索引
create unique index uni_idx_name on students(name);
使用alter命令删除惟一键索引
alter table students drop key uni_idx_name;
EXPLAIN
创建索引
create index index_name on students(name);
查看查询数据是否利用索引
MariaDB [hellodb]> explain select * from students where age=10;
+------+-------------+----------+------+---------------+------+---------+------+------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+------+-------------+----------+------+---------------+------+---------+------+------+-------------+
| 1 | SIMPLE | students | ALL | NULL | NULL | NULL | NULL | 25 | Using where |
+------+-------------+----------+------+---------------+------+---------+------+------+-------------+
没有使用索引查询
MariaDB [hellodb]> explain select * from students where name like 'ren%';
+------+-------------+----------+-------+---------------+------------+---------+------+------+-----------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+------+-------------+----------+-------+---------------+------------+---------+------+------+-----------------------+
| 1 | SIMPLE | students | range | index_name | index_name | 152 | NULL | 1 | Using index condition |
+------+-------------+----------+-------+---------------+------------+---------+------+------+-----------------------+
使用索引查询
使用复杂查询语句,有多个子句的id号
MariaDB [hellodb]> explain select stuid,name from students union select tid,name from teachers;
+------+--------------+------------+-------+---------------+--------------+---------+------+------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+------+--------------+------------+-------+---------------+--------------+---------+------+------+-------------+
| 1 | PRIMARY | students | index | NULL | idx_name_age | 153 | NULL | 25 | Using index |
| 2 | UNION | teachers | ALL | NULL | NULL | NULL | NULL | 4 | |
| NULL | UNION RESULT | | ALL | NULL | NULL | NULL | NULL | NULL | |
+------+--------------+------------+-------+---------------+--------------+---------+------+------+-------------+
子查询subquery
MariaDB [hellodb]> explain select name,age from students where age > (select avg(age) from students);
+------+-------------+----------+-------+---------------+--------------+---------+------+------+--------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+------+-------------+----------+-------+---------------+--------------+---------+------+------+--------------------------+
| 1 | PRIMARY | students | index | index_age | idx_name_age | 153 | NULL | 25 | Using where; Using index |
| 2 | SUBQUERY | students | index | NULL | index_age | 1 | NULL | 25 | Using index |
+------+-------------+----------+-------+---------------+--------------+---------+------+------+--------------------------+
DERIVED: 用于FROM中的子查询
centos7系统想要在explain查询字段中看到derived字段,需要进行相关设置才能显示出来
set optimizer_switch='derived_merge=off';
MariaDB [hellodb]> explain select a.name,a.age from (select * from students) as a;
+------+-------------+------------+------+---------------+------+---------+------+------+-------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+------+-------------+------------+------+---------------+------+---------+------+------+-------+
| 1 | PRIMARY | | ALL | NULL | NULL | NULL | NULL | 25 | |
| 2 | DERIVED | students | ALL | NULL | NULL | NULL | NULL | 25 | |
+------+-------------+------------+------+---------------+------+---------+------+------+-------+
const:返回单个行
MariaDB [hellodb]> explain select * from students where stuid = 5;
+------+-------------+----------+-------+---------------+---------+---------+-------+------+-------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+------+-------------+----------+-------+---------------+---------+---------+-------+------+-------+
| 1 | SIMPLE | students | const | PRIMARY | PRIMARY | 4 | const | 1 | |
+------+-------------+----------+-------+---------------+---------+---------+-------+------+-------+
并发控制
lock tables teachers read; 对teachers表加读锁
加读锁后,其他终端只能读该表,不能写
lock tables students write; 加写锁
加写锁后,自己可读可写,别人不可读不可写
注意:加锁时,要重启服务或清除缓存,否则加锁可能无效
启用缓存的情况下,可以通过修改变量,使缓存不生效
query_cache_wlock_invalidate 启用该项表示不允许从缓存中返回数据
此变量为会话级,要想全局生效则需要更改配置文件
set query_cache_wlock_invalidate=on
更改配置文件
vim /etc/my.cnf
[mysqld]
query_cache_wlock_invalidate=on
对服务器全部数据库加锁,即不仅对当前数据库生效,对其他数据库也生效
还可以清除查询缓存信息,即flush tables
其他表全部关闭后,才能使用此命令加锁
flush tables with read lock; 对所有数据库的所有表加读锁(只能读不能写),无需写表名
unlock tabls 解锁
SELECT clause [FOR UPDATE | LOCK IN SHARE MODE]
查询时加写或读锁
事务
存放完整的事务操作和不完整的事务操作
系统根据事务日志决定是否继续执行事务操作(事务动作已经全部写入事务日志)和撤销事务操作(事务动作没有完全写入事务日志)
myisam存储引擎不支持事务日志,因此该存储引擎恢复能力差
如:账户转账,转账人转走1万元,收账人收到1万元,两个动作要么都做,要么都不做,即两个动作要保持一致,确保数据保持一致
update students set classid=5 where stuid=23; 对学生表进行更改
savepoint sp23 创建保存点
update students set classid=10 where stuid=24; 对学生表进行更改
savepoint sp24 创建保存点
update students set classid=30 where stuid=25; 对学生表进行更改
rollback to savepoint sp24; 回滚到sp24保存点,即stuid=25的操作会被撤销
rollback to savepoint sp23; 回滚到sp23保存点,即stuid=24的操作会被撤销
事务隔离级别
两个会话:会话1和会话2
会话1开启事务写入数据,会话2同样开启事务,在该事务内可以读取到会话1未提交的数据
READ COMMITTED 可读取到提交数据,读取不到未提交数据。即在数据提交之前读取到的数据为写数据之前的旧数据,在数据提交之后读取到的数据为提交后更改的新数据,这样就读取到多个提交数据,导致每次读取数据不一致,也就是不可重复读
两个会话:会话1和会话2
会话1开启事务写入数据,会话2同样开启事务,在该事务内可以读取到会话1未提交前的旧数据
会话1提交数据完成事务,会话2开启事务,在该事务内可以读取到会话1提交后的新数据
REPEATABLE READ 可重复读,多次读取数据都一致,产生幻读,即读取过程中,即使有其它提交的事务修改数据,也只能读取到未修改前的旧数据,等其他事务提交完毕以后读取的数据也是提交前的旧数据。该选项为MySQL默认设置。
两个会话:会话1和会话2
会话1开启事务写入数据,会话2同样开启事务,在该事务内容读取到会话1未提交前的旧数据
会话1提交数据完成事务,会话2开启事务,在该事务内读取到的还是会话1提交前的旧数据,当会话2提交数据完成事务后,才能看到会话1提交的新数据
SERIALIZABILE 可串行化,未提交的读事务阻塞修改事务,或者未提交的修改事务阻塞读事务。导致并发性能差
两个会话:会话1和会话2
会话1开启事务读取数据,会话2开启事务,在该事务内可以读取数据,但无法写入数据,只有等会话1完成事务,会话2才可以写入数据
会话1开启事务写入数据,会话2开启事务,在该事务内无法读取数据,也无法写入数据,只有等会话1完成事务,会话2才可以读或写数据
会话2会一直等待,直至会话超时
会话超时的相关变量:
MariaDB [hellodb]> show variables like '%timeout%';
其中,innodb_lock_wait_timeout是指等待超时时间,默认为50秒,该变量可以手动更改超时时间
事务隔离级别 | 脏读可能性 | 不可重复读可能性 | 幻读可能性 | 加锁读 |
---|---|---|---|---|
读未提交(read-uncommited) | 是 | 是 | 是 | 否 |
不可重复读(read-commited) | 否 | 是 | 是 | 否 |
可重复读(repeatable-read) | 否 | 否 | 是 | 否 |
串行化(serializable) | 否 | 否 | 否 | 是 |
并发控制
如果会话1开启事务对某行进行操作,会话2页对该行进行操作,那么操作会处于等待状态,直至等待超时退出操作
如何强制会话2退出等待状态
show processlist 查看事务列表,显示操作id号
kill 2 关闭正在执行的事务,2为事务id号,用show processlist可以查看
事务日志
更改事务日志路径
mkdir /data/mysqllogs/ 创建自定义事务日志目录
chown mysql.mysql /data/mysqllogs/ 更改权限
vim /etc/my.cnf 更改配置文件
[mysqld] mysqld语句块下
innodb_log_group_home_dir=/data/mysqllogs/ 指定事务日志文件路径
redo log
undo log
Innodb事务日志相关配置:
show variables like ‘%innodb_log%’;
innodb_log_file_size 5242880 每个日志文件大小,默认大小为5M
innodb_log_files_in_group 2 日志组成员个数
innodb_log_group_home_dir ./ 事务文件路径
注意:./是指/var/lib/mysql
开启事务,执行数据库写操作,在提交之前进行事务回滚,回滚完毕后数据库大小不会更改,即执行命令把数据写入数据库,数据库文件变大,但是取消该操作,数据库文件大小不会自动缩减会原来的大小
使用以下命令释放多余的空间:optimize table testlog;
错误日志
配置文件/etc/my.cnf下
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
通用日志
开启日志,系统会在/var/lib/mysql/目录下自动生成centos7.log文件存放通用日志
查看mysql数据库中的general_log表
MariaDB [mysql]> use mysql;
MariaDB [mysql]> select * from general_log;
+----------------------------+---------------------------+-----------+-----------+--------------+---------------------------+
| event_time | user_host | thread_id | server_id | command_type | argument |
+----------------------------+---------------------------+-----------+-----------+--------------+---------------------------+
| 2018-10-12 15:09:44.271858 | root[root] @ localhost [] | 2 | 0 | Query | select * from general_log |
| 2018-10-12 15:09:51.461674 | root[root] @ localhost [] | 2 | 0 | Query | select * from general_log |
+----------------------------+---------------------------+-----------+-----------+--------------+---------------------------+
mysql -e 'select * from mysql.general_log' > test.log 把日志从数据库导出
慢查询日志
开启慢查询日志
set global slow_query_log=on;
慢查询日志位置:/var/lib/mysql/centos7-slow.log
set long_query_time=3 时间阀值,默认为10秒,即命令执行超过10秒就会被记录,更改为3秒
或:在日志文件中更改(永久保存)
vim /etc/my.cnf
[mysqld]
slow_query_log=on 开启慢查询日志
long_query_time=3 设置时间阀值为3秒,即超过3秒就记录下来
测试:
select sleep(2) from teachers; teachers表有4条记录,每条记录sleep2秒,该命令执行需要8秒
查看慢查询日志
cat /var/lib/mysql/centos7-slow.log
知识扩展:
查询命令中有多个子句,查看每个子句查询所占用的时间
show variables like '%profiling%'; 查询变量
set profiling=on 开启命令分析功能
show profiles 查看命令执行过程,查看执行命令id号为1
show profile for query 1 查看命令执行详细过程,可以查看sql命令过程中每一步骤占用时间
示例:
MariaDB [hellodb]> select * from testlog where name="wang99000";
+-------+-----------+-------+
| id | name | age |
+-------+-----------+-------+
| 99000 | wang99000 | 99000 |
+-------+-----------+-------+
1 row in set (0.00 sec)
MariaDB [hellodb]> show profiles;
+----------+------------+----------------------------------------------+
| Query_ID | Duration | Query |
+----------+------------+----------------------------------------------+
| 1 | 0.00006964 | select * from testlog where name="wang99000" |
+----------+------------+----------------------------------------------+
1 row in set (0.00 sec)
MariaDB [hellodb]> show profile for query 1 ;
+--------------------------------+----------+
| Status | Duration |
+--------------------------------+----------+
| starting | 0.000020 |
| Waiting for query cache lock | 0.000005 |
| checking query cache for query | 0.000007 |
| checking privileges on cached | 0.000003 |
| checking permissions | 0.000017 |
| sending cached result to clien | 0.000010 |
| updating status | 0.000004 |
| cleaning up | 0.000003 |
+--------------------------------+----------+
二进制日志
二进制日志与事务日志的区别:
1、事务日志依赖于事务功能,依赖于存储引擎;二进制日志并不依赖于存储引擎
2、二进制日志记录数据库已经确定的增删改操作,也即是只记录事务提交过的操作;事务日志记录的是提交过的以及未提交的操作
3、事务日志文件大小确定,默认为5M,因此日志文件在写的过程中不断覆盖旧日志,会丢失以前的日志文件;二进制日志是不断累积的文件,系统默认不会被覆盖和删除
二进制日志记录执行过程,并不记录数据库初始状态,因此二进制日志需要与备份文件相结合才能发挥作用
如某条命令更改了很多条记录,但该日志只记录这条命令,并不记录结果
update students set age=20; 只记录该命令
有时会造成有些记录无法还原,如某学员的生日为update students set birth=now(),还原时执行该命令,日期无法还原为正确的日期
基于“行”记录:row,记录数据,日志量较大
记录数据库中每一行的更改记录
update students set age=20; 记录该命令更改的每一条记录
可以完全还原,但是产生的日志量最大
混合模式:mixed, 让系统自行判定该基于哪种方式进行
格式配置
show variables like ‘binlog_format’;
mariadb10.2.3版本以前使用statement语句模式
mariadb10.2.4版本以后使用mixed混合模式
把此选项写入配置文件,即使不指定路径,也可以开启功能
log_bin写入配置文件时需要指定文件路径,即log_bin=mysql-bin;如果不指定路径,则系统默认文件名为/var/lib/mysql/目录下的mariadb-bin.000001和mariadb-bin.index
vim /etc/my.cnf
[mysqld]
log-bin=mysql-bin 指定文件名为mysql-bin
mysql-bin.index 记录当前有效的二进制日志文件是哪些文件
[root@centos7 mysql]# cat mariadb-bin.index
./mariadb-bin.000001
注意:重启数据库服务,二进制日志文件会自动增加
binlog_format=STATEMENT|ROW|MIXED:二进制日志记录的格式,默认STATEMENT
max_binlog_size=1073741824:单个二进制日志文件的最大体积,到达最大值会自动滚动,默认为1G
说明:文件达到上限时的大小未必为指定的精确值
sync_binlog=1|0:设定是否启动二进制日志即时同步磁盘功能,默认0,由操作系统负责同步日志到磁盘
expire_logs_days=N:二进制日志可以自动删除的天数。默认为0,即不自动删除
查看二进制文件中的指定内容
MariaDB [hellodb]> show binlog events in 'mysql-bin.000001' from 48355435 ;
+------------------+----------+------------+-----------+-------------+--------------------------------------------------------------+
| Log_name | Pos | Event_type | Server_id | End_log_pos | Info |
+------------------+----------+------------+-----------+-------------+--------------------------------------------------------------+
| mysql-bin.000001 | 48355435 | Query | 1 | 48355506 | BEGIN |
| mysql-bin.000001 | 48355506 | Query | 1 | 48355617 | use `hellodb`; insert students values(26,'wang',20,'m',10,1) |
| mysql-bin.000001 | 48355617 | Xid | 1 | 48355644 | COMMIT /* xid=600022 */ |
| mysql-bin.000001 | 48355644 | Query | 1 | 48355715 | BEGIN |
| mysql-bin.000001 | 48355715 | Query | 1 | 48355824 | use `hellodb`; insert students values(27,'li',30,'m',15,1) |
| mysql-bin.000001 | 48355824 | Xid | 1 | 48355851 | COMMIT /* xid=600024 */ |
+------------------+----------+------------+-----------+-------------+--------------------------------------------------------------+
MariaDB [hellodb]> show binlog events in 'mysql-bin.000001' from 48355435 limit 2,3;
+------------------+----------+------------+-----------+-------------+------------------------------------------------------------+
| Log_name | Pos | Event_type | Server_id | End_log_pos | Info |
+------------------+----------+------------+-----------+-------------+------------------------------------------------------------+
| mysql-bin.000001 | 48355617 | Xid | 1 | 48355644 | COMMIT /* xid=600022 */ |
| mysql-bin.000001 | 48355644 | Query | 1 | 48355715 | BEGIN |
| mysql-bin.000001 | 48355715 | Query | 1 | 48355824 | use `hellodb`; insert students values(27,'li',30,'m',15,1) |
+------------------+----------+------------+-----------+-------------+------------------------------------------------------------+
日志文件以及相关命令
mysqlbinlog --start-position=6787 --stop-position=7527 /var/lib/mysql/mariadb-bin.000003
mysqlbinlog --start-datetime="2018-01-30 20:30:10" --stop-datetime="2018-01-30 20:35:22" mariadb-bin.000003
PURGE BINARY LOGS TO ‘mariadb-bin.000003’;删除3之前的日志
PURGE BINARY LOGS BEFORE '2017-01-23';
PURGE BINARY LOGS BEFORE '2017-03-22 09:25:30';