[MySQL] MySQL Binlog 初识 2021-06-12 mysql 5504 words 11 mins read 原文 Mysql日志 MySQL 的日志包括错误日志(ErrorLog),更新日志(Update Log),二进制日志(Binlog),查询日志(Query Read more...
[MySQL] MySQL redolog undolog binlog 2021-05-29 mysql 2960 words 6 mins read MySQL redolog undolog binlog ySQL中有六种日志文件,分别是: 重做日志(redo log)、回滚日志(undo log)、二进制日志(binlog)、错误日志(er Read more...
[MySQL] 用Docker搭建MySQL主从多节点集群 2021-05-23 mysql docker 1565 words 4 mins read 用Docker搭建MySQL主从多节点集群 MySQL 主从同步分为 5 个步骤: master 节点将数据的更新记录写到 binary log 中。 slave 节点开启 IO 线程连接 master 节点,请求获取指定 Read more...
[MySQL] MySQL 存储引擎的比较 2021-05-23 mysql 1468 words 3 mins read 转载自 MySql 存储引擎的比较 InnoDB 存储引擎 InnoDB 是事务性数据库的首选引擎,支持事务安全表(ACID),支持行锁定和外键。MySQL5.5.5 之后,Inno Read more...
[MySQL] MySQL Cluster on docker-compose 2021-05-23 mysql docker 643 words 2 mins read MySQL Cluster on docker-compose MySQL Cluster是一个高性能、可扩展、集群化数据库产品。MySQL Cluster是一个基于NDB Cluster存储引擎的完整分布式数 Read more...