TranslateProject/translated/tech/20170104 How to change the Linux IO scheduler to fit your needs.md

97 lines
5.9 KiB
Markdown
Raw Normal View History

2017-01-13 10:18:42 +08:00
如何更改Linux I/O 调度器来满足你的需求
2017-01-12 10:40:07 +08:00
============================================================
2017-01-13 10:18:42 +08:00
为了从 Linux 服务器尽可能多地榨取性能,请了解如何更改 I/O 调度器以满足你的需求。
2017-01-12 10:40:07 +08:00
![](http://tr1.cbsistatic.com/hub/i/r/2016/05/04/f765c3c7-ee08-4f3a-876a-66137ad4e6df/resize/770x/131c6931386ecf37104e8ada8d01e903/hackershero.jpg)
2017-01-13 10:18:42 +08:00
Linux I/O 调度器控制内核提交读取和写入磁盘的方式。自从 2.6 内核以来,管理员已经能够更改调度器,所以他们可以自定义他们的平台以完全适合他们的需要。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
有三个调度器可供选择,每个调度器都有其优点。这些调度器是:
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
* **CFQcfq** 许多 Linux 发行版的默认调度器;它将由进程提交的同步请求放到多个进程队列中,然后为每个队列分配时间片以访问磁盘。
* **Noop调度器noop** 基于先入先出FIFO队列概念的 Linux 内核最简单的 I/O 调度器。此调度程序最适合于SSD。
* **截止时间调度器deadline** 尝试保证请求的开始服务时间。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
当你想要利用 Linux 驱动的机器来获得最佳性能时,这可能是你所要做的事情之一。幸运的是,更改 I/O 调度器非常简单。让我告诉你怎么做。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
### 找出你有的调度器
2017-01-12 10:40:07 +08:00
The first thing you need to do is find out which scheduler is handling I/O on your system. This is done from the command line, and you must know the name of your disk. For simplicity sake, I'll assume the disk is question is sda. With that information in hand, open a terminal window and issue the following command:
2017-01-13 10:18:42 +08:00
你需要做的第一件事是找出哪个调度器正在处理系统上的 I/O。这是从命令行完成的你必须知道磁盘的名称。为简单起见我假设磁盘是 sda。使用该信息打开终端窗口并输入以下命令
2017-01-12 10:40:07 +08:00
```
cat /sys/block/sda/queue/scheduler
```
2017-01-13 10:18:42 +08:00
该命令的结果将显示当前运行的调度程序(**图 A**)。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
**图 A**
2017-01-12 10:40:07 +08:00
![Figure A](http://tr3.cbsistatic.com/hub/i/2017/01/03/abba7f22-3252-4b76-91c0-bb15630fd42c/6b4a6d971202b70926b2d991e6c9afe3/schedulera.jpg)
2017-01-13 10:18:42 +08:00
Elementary OS Loki 运行 noop 调度器。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
### 更改你的调度器
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
你可以通过两种方式更改你的调度器:即时或永久。如果你随时更改调度器,它可以恢复到默认调度器(重启后)。你可能希望首先进行即时更改,以查看哪个调度器能为你的需求带来最佳性能。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
说到你要即时改到 noop 调度器。 为此,输入以下命令:
2017-01-12 10:40:07 +08:00
```
sudo echo noop > /sys/block/hda/queue/scheduler
```
2017-01-13 10:18:42 +08:00
你可以将 _noop_ 更改为 _cfq__deadline_
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
此更改可以在不重新启动计算机的情况下完成。 一旦更改I/O 调度器将会切换,(希望)你能看到性能提高(再说一次,根据你的需要而定)。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
如果要将调度器更改为永久,则必须在 GRUB 配置文件中执行此操作。 为此,请输入 sudo nano /etc/default/grub然后修改下面的行
2017-01-12 10:40:07 +08:00
```
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
```
2017-01-13 10:18:42 +08:00
2017-01-12 10:40:07 +08:00
```
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash elevator=noop"
```
2017-01-13 10:18:42 +08:00
同样,你可以改变 noop 到任何你需要的调度器。如果你用的是即时修改,则不必重新启动以使新调度器生效。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
这些就是修改调度器的方法了。
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
### 做出明智的选择
2017-01-12 10:40:07 +08:00
2017-01-13 10:18:42 +08:00
你应该做研究,找出什么调度器最适合你的特殊情况。要了解每个调度器的更多信息,请查看这些 Wiki 页面:[CFS][7]、[Noop][8]和 [Deadline][9]。
2017-01-12 10:40:07 +08:00
--------------------------------------------------------------------------------
via: http://www.techrepublic.com/article/how-to-change-the-linux-io-scheduler-to-fit-your-needs/
作者:[Jack Wallen ][a]
2017-01-13 10:18:42 +08:00
译者:[geekpi](https://github.com/geekpi)
2017-01-12 10:40:07 +08:00
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:http://www.techrepublic.com/meet-the-team/us/jack-wallen/
[1]:http://www.techrepublic.com/article/why-the-earliest-open-source-licenses-are-still-the-most-relevant/
[2]:http://www.techrepublic.com/article/raspberry-pi-in-2017-new-boards-new-oses-and-more/
[3]:http://www.techrepublic.com/article/open-source-predictions-for-2017/
[4]:http://www.techrepublic.com/newsletters/
[5]:http://www.techrepublic.com/article/how-to-change-the-linux-io-scheduler-to-fit-your-needs/#postComments
[6]:http://www.techrepublic.com/article/open-source-predictions-for-2017/
[7]:https://en.wikipedia.org/wiki/Completely_Fair_Scheduler
[8]:https://en.wikipedia.org/wiki/Noop_scheduler
[9]:https://en.wikipedia.org/wiki/Deadline_scheduler
[10]:http://intent.cbsi.com/redir?tag=medc-content-top-leaderboard&siteId=11&rsid=cbsitechrepublicsite&pagetype=article&sl=en&sc=us&topicguid=0aed1ce4-8606-11e2-a661-024c619f5c3d&assetguid=b1120b55-9a41-4a43-b0c6-23f7beb58c5b&assettype=content_article&ftag_cd=LGN3588bd2&devicetype=desktop&viewguid=d21156e0-d86f-11e6-85ae-35117859b3ea&q=&ctype=docids;promo&cval=33159110;7205&ttag=&ursuid=&bhid=&destUrl=http%3A%2F%2Fwww.techrepublic.com%2Fresource-library%2Fwhitepapers%2Fthe-web-developer-bootcamp%2F%3Fpromo%3D7205%26ftag%3DLGN3588bd2%26cval%3Dcontent-top-leaderboard
[11]:http://intent.cbsi.com/redir?tag=medc-content-top-leaderboard&siteId=11&rsid=cbsitechrepublicsite&pagetype=article&sl=en&sc=us&topicguid=0aed1ce4-8606-11e2-a661-024c619f5c3d&assetguid=b1120b55-9a41-4a43-b0c6-23f7beb58c5b&assettype=content_article&ftag_cd=LGN3588bd2&devicetype=desktop&viewguid=d21156e0-d86f-11e6-85ae-35117859b3ea&q=&ctype=docids;promo&cval=33159110;7205&ttag=&ursuid=&bhid=&destUrl=http%3A%2F%2Fwww.techrepublic.com%2Fresource-library%2Fwhitepapers%2Fthe-web-developer-bootcamp%2F%3Fpromo%3D7205%26ftag%3DLGN3588bd2%26cval%3Dcontent-top-leaderboard
[12]:http://www.techrepublic.com/rssfeeds/topic/data-centers/
[13]:http://www.techrepublic.com/meet-the-team/us/jack-wallen/
[14]:https://twitter.com/intent/user?screen_name=jlwallen