ディスクのパフォーマンスが悪いOpenNMS Linuxサーバーがあります。マシンはVPC内部のEC2です。上示す:
オートフ示す:
IOの数を減らし、ディスク使用率を減らすには?
イオアニス返信:
ubuntu@ip-10-12-251-11:~$ sudo ionice -c3 -p $(pidof opennms)
ionice: option requires an argument -- 'p'
ionice - sets or gets process io scheduling class and priority.
Usage:
ionice [OPTION] -p PID [PID...]
ionice [OPTION] COMMAND
Options:
-c, --class <class> scheduling class name or number
0: none, 1: realtime, 2: best-effort, 3: idle
-n, --classdata <num> scheduling class data
0-7 for realtime and best-effort classes
-p, --pid=PID view or modify already running process
-t, --ignore ignore failures
-V, --version output version information and exit
-h, --help display this help and exit
ベストアンサー1
rrenice
から始めましょうダーバン~のリストパック。たとえば、次はサブアイテムの優先順位をopennms
可能な限り低い設定に設定します。
sudo rrenice 19 opennms
または使用できない場合は、一般を使用してくださいrenice
。
sudo renice -n 19 -p $(pidof opennms)
ディスクホギングプログラムの場合は、以下を使用しますionice
。
ionice -c3 -p $(pidof opennms)
ところで:opennms
プロセスはリソース集約的ではありません。何かが間違っているか、そこにぶら下がっています。