我正在运行 CentOS 7,硬盘上有 RAID 1 (md)。我的分区设置如下所示。
md0 -> root (sda1, sdb1)
md2 -> swap (sda2, sdb2)
md3 -> misc (sda3, sdb3)
在 md3 上,我禁用了日记功能。但是,当我的应用程序写入 md3 时;我遇到了较长的 I/O 等待时间 (35+%)。
CentOS 6 上完全相同的设置不会给我带来 I/O 等待问题。我尝试在 CentOS 7 上的所有分区上禁用日志记录,并更改安装选项/文件系统标志。但是,无济于事。
CentOS 6 使用 GRUB,CentOS 7 使用 GRUB2
CentOS 6 --> 2.6.32-573.7.1.el6.x86_64
CentOS 7 --> 3.10.0-327.13.1.el7.x86_64
操作系统6
grub.cfg:
title CentOS (2.6.32-573.7.1.el6.x86_64)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32-573.7.1.el6.x86_64 ro root=UUID=d8273070-760f-4728-b70c-0368be3ec612 rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8
SYSFONT=latarcyrheb-sun16 crashkernel=128M KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet
initrd /boot/initramfs-2.6.32-573.7.1.el6.x86_64.img
dumpe2fs 输出 --> /dev/md3
Filesystem features: ext_attr resize_inode dir_index filetype extent flex_bg sparse_super large_file huge_file uninit_bg dir_nlink extra_isize
Filesystem flags: signed_directory_hash
操作系统7
grub.cfg:
menuentry 'CentOS Linux (3.10.0-327.13.1.el7.x86_64) 7 (CentOS 7 RAID)' --class centos --class gnu-linux --class gnu --class os {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos msdos
insmod diskfilter mdraid1x
insmod ext2
set root='mduuid/afa918cd8b06e98111da7fa5baab386e'
if [ x = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='mduuid/afa918cd8b06e98111da7fa5baab386e' cbad6fd3-333c-4137-afce-9e1c8b9b75d2
else
search --no-floppy --fs-uuid --set=root cbad6fd3-333c-4137-afce-9e1c8b9b75d2
fi
linux16 /boot/vmlinuz-3.10.0-327.13.1.el7.x86_64 root=UUID=cbad6fd3-333c-4137-afce-9e1c8b9b75d2 ro crashkernel=auto vconsole.font=latarcyrheb-sun16 rd.md.uuid=afa918cd:8b06e981:11da7fa5:baab386e vconsole.keymap=us rd.md.uuid=a0e564a7:cfc4a6b6:57b4f190:8e5734c7 rhgb quiet LANG=en_US.UTF-8
initrd16 /boot/initramfs-3.10.0-327.13.1.el7.x86_64.img
}
dumpe2fs 输出 --> md3
Filesystem features: ext_attr resize_inode dir_index filetype extent 64bit flex_bg sparse_super large_file huge_file uninit_bg dir_nlink extra_isize
Filesystem flags: signed_directory_hash
答案1
来关闭这个。更新到内核 3.10.0-327.36.1+ 修复了该问题;日记仍然被禁用。