当前位置:网站首页>Mysql OCP 30题
Mysql OCP 30题
2022-08-03 09:34:00 【51CTO】
You have a consistent InnoDB backup created with mysqldump, the largest table is 50 GB in size.
You start to restore your backup with this command;
shell> mysql –u root –p < backup.sql
After 30 minutes, you notice that the rate of restore seems to have slowed down. No other processes or external factors are affecting server performance.
Which is the most likely explanation for this slowdown?
A. The MySQL server has stopped inserting data to check index consistency.
B. InnoDB is doing CRC32 checks over the tablespace data as it grows.
C. The MySQL server is taking a periodical snapshot of data so it can resume the restore if it is interrupted mid-way.
D. InnoDB has filled the redo log and now must flush the pages.
E. Secondary indexes no longer fit into the buffer pool.
Answer: D
InnoDB将当前redo log写满了,必须其将脏页flush到磁盘
版权声明:本文为博主原创文章,未经博主允许不得转载。
MYSQL
边栏推荐
猜你喜欢
随机推荐
Flink Yarn Per Job - Submit application
【LeetCode】226.翻转二叉树
Flink Yarn Per Job - 启动AM
013-Binary tree
mysqldump导出提示:mysqldump [Warning] Using a password on the command line interface can be insecure
MySQL_关于JSON数据的查询
【LeetCode】226. Flip the binary tree
mysql数据库配置性能调优
10 Convolutional Neural Networks for Deep Learning 2
MYSQL 修改时区的几种方法
MySQL8重置root账户密码图文教程
Redis和Mysql数据同步的两种方案
慢 SQL 分析与优化
【字节面试】word2vector输出多少个类别
milvus
Let‘s Encrypt 使用
Exception: Dataset not found.解决办法
110道 MySQL面试题及答案 (持续更新)
AUC的两种计算方式
10 minutes to get you started chrome (Google) browser plug-in development









