Linux Kernel Development (Developer's Library)
- 作者: Robert Love
- 出版社/メーカー: Addison-Wesley Professional
- 発売日: 2010/06/22
- メディア: ペーパーバック
- 購入: 3人 クリック: 62回
- この商品を含むブログ (9件) を見る
The Noop I/O scheduler's lack of hard work is with reason. It is intended for block devices that are truly random-access,such as flash memory cards.If a block device has little or no overhead associated with "seeking," then there is no need for insertion sorting of incoming requests, and the Noop I/O scheduler is the ideal candidate.
The Noop I/O scheduler lives in block/noop-iosched.c. It is intended only for random-access devices.
を読んでいて、石川さんが書かれていたブログのエントリをふと思い出しました。
Linux I/O Schdulerを noopに変えただけで約5倍のパフォーマンスアップとなりました!
SSDの場合、ディスクヘッドのシークが無いので、何もスケジュールしない noopが有利だと言われていますが、こんなに異なるとは予想外。
リソース消費量についても処理時間を裏付ける結果となりました。...
今日の結論は、
Storage, OS and Database: TPC-H Linux I/O Schedulreを変えてビックリ
SSD上のファイルシステムにOracleデータファイルを作成する場合は、IO Schedulerは必ず noopで!