Last active
August 11, 2026 18:51
-
-
Save mdpuma/2ea5b21d0a42ef1f756e571f27ef198f to your computer and use it in GitHub Desktop.
solusvm limit iops virsh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <blkiotune> | |
| <device> | |
| <path>/dev/vg/kvm980_img</path> | |
| <read_iops_sec>100</read_iops_sec> | |
| <write_iops_sec>100</write_iops_sec> | |
| </device> | |
| </blkiotune> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # limit read/write iops to 1000 | |
| virsh blkiotune --device-read-iops-sec /dev/vg/kvm1380_img,1000 --device-write-iops-sec /dev/vg/kvm1380_img,100 --domain kvm1380 --live | |
| # limit to 100MB/s | |
| virsh blkiotune --device-read-bytes-sec /dev/vg/kvm1112_img,104857600 --device-write-bytes-sec /dev/vg/kvm1112_img,104857600 --domain kvm1112 --live |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment