上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 177 下一页
摘要: SELECT r.trx_id waiting_trx_id, r.trx_mysql_thread_id waiting_thread, r.trx_query waiting_query, b.trx_id blocking_trx_id, b.trx_mysql_thread_... 阅读全文
posted @ 2016-10-19 13:18 czcb 阅读(126) 评论(0) 推荐(0) 编辑
摘要: demo:/root# mysql -uroot -pkjk7787czcb --socket=/data01/mysql/mysql.sock -e"show processlist" Warning: Using a password on the command line interfac... 阅读全文
posted @ 2016-10-19 13:04 czcb 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 14.4.5 System Tablespace 系统表空间InnoDB 系统表空间包含InnoDB 数据目录(元数据 用于InnoDB相关对象)和是存储区域用于doublewrite buffer, the change buffer, and undo logs. 系统表空间也包含表和索引数... 阅读全文
posted @ 2016-10-19 09:07 czcb 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 14.4.4 Redo Log Bufferredo log buffer 是内存区域持有数据被写入到redo log.Redo log buffer size 是通过 innodb_log_buffer_size 配置选项定义的mysql> show variables like '%inno... 阅读全文
posted @ 2016-10-19 09:01 czcb 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 14.4.3 Adaptive Hash Index 自适应hash index自适应hash index(AHI) 让InnoDB 执行更像内存数据库在系统使用合适的负载组合和足够的内存用于Buffer pool,基于观察到的搜索模式, MySQL 创建一个hash index 使用一个in... 阅读全文
posted @ 2016-10-18 17:48 czcb 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 14.4.2 Change Bufferchange buffer 是一个特殊的数据结构 用于cahce 改变的secondary index pages当被影响的pages 不在buffer pool里,buffered changes, 可能是由于 INSERT, UPDATE, or DE... 阅读全文
posted @ 2016-10-18 17:24 czcb 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 14.4.1 Buffer Poolbuffer pool 是一个主人的内存区域 InnoDB caches 表和index 数据。buffer pool 允许经常访问的数据直接从内存里处理,加快了处理。在专用的数据库服务器上,最多80%的物理内存可以分配给InnoDB buffer pool... 阅读全文
posted @ 2016-10-18 16:47 czcb 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 14.3 InnoDB Multi-Versioning InnoDB 多版本InnoDB 是一个多版本的存储引擎,它保持信息关于改变的数据老版本的信息,为了支持事务功能比如并发和回滚。这些信息是存储在表空间在称为一个rollback segment(Oracle类似的数据结构).InnoDB ... 阅读全文
posted @ 2016-10-18 16:37 czcb 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 14.2 InnoDB and the ACID ModelACID 模型是一组数据库设计原则,强调可靠性方面对于商业数据和关键人物。MySQL 包含组件比如InnoDB存储引擎坚持ACID 模型,这样数据不会被破坏和结果不受特殊条件的弯曲 比如软件crashes 和硬件故障当你依靠ACID兼容... 阅读全文
posted @ 2016-10-18 12:41 czcb 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 14.1.3 Checking InnoDB Availability 14.1.3 检查InnoDB 可用性:确定是否你的server 支持InnoDB:1.执行命令 SHOW ENGINES; 查看所有不同的MySQL 存储引擎mysql> SHOW ENGINES;+-----------... 阅读全文
posted @ 2016-10-17 17:17 czcb 阅读(80) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 177 下一页