博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Set VM RDM disk to Round Bobin and set IOPS path to 1
阅读量:6451 次
发布时间:2019-06-23

本文共 1226 字,大约阅读时间需要 4 分钟。

KB Related to IOPS setting

Adjusting Round Robin IOPS limit from default 1000 to 1 (2069356)

To adjust the IOPS parameter from the default 1000 to 1, run this command:

In ESXi 5.x/6.x:

for i in `esxcfg-scsidevs -c |awk '{print $1}' | grep naa.xxxx`; do esxcli storage nmp psp roundrobin deviceconfig set --type=iops --iops=1 --device=$i; done

Where, .xxxx matches the first few characters of your naa IDs.

To verify if the changes are applied, run this command:

esxcli storage nmp device list

You see output similar to:

Path Selection Policy: VMW_PSP_RR

Path Selection Policy Device Config: {
policy=iops,iops=1,bytes=10485760,useANO=0;lastPathIndex=1: NumIOsPending=0,numBytesPending=0}
Path Selection Policy Device Custom Config:
Working Paths: vmhba33:C1:T4:L0, vmhba33:C0:T4:L0

Query the paths of the VM LUNs:

esxcli storage nmp path list --device naa.******************


Set the path policy to Round Robin: 

esxcli storage nmp device set --device naa.***************** --psp VMW_PSP_RR


Set the Round Robin IOPS for switch path to 1:

esxcli storage nmp psp roundrobin deviceconfig set --type=iops --iops=1 --device=naa.**********************

本文转自学海无涯博客51CTO博客,原文链接http://blog.51cto.com/549687/1927467如需转载请自行联系原作者

520feng2007

你可能感兴趣的文章
mysql主主复制配置
查看>>
oracle之rman入门指南
查看>>
python编程中后缀为py与pyc之间的关系
查看>>
嵌入式 Linux进程间通信(六)——管道
查看>>
MyBatis学习总结(八)——Mybatis3.x与Spring4.x整合
查看>>
设计模式(八)——装饰模式
查看>>
我的Git忽略文件
查看>>
Java基础学习总结(24)——Java单元测试之JUnit4详解
查看>>
Maven学习总结(七)——eclipse中使用Maven创建Web项目
查看>>
Maven学习总结(七)——eclipse中使用Maven创建Web项目
查看>>
Linux学习笔记——RAID
查看>>
BZOJ1856[Scoi2010]字符串——组合数学+容斥
查看>>
我的友情链接
查看>>
linux常用查看硬件设备信息命令
查看>>
我的友情链接
查看>>
系统初始化
查看>>
Zabbix 实现监控windows主机网卡
查看>>
hibernate 的事务传播中两种类型的区别
查看>>
PHP框架
查看>>
易宝典文章——怎样管理Exchange Server 2013用户邮箱存储容量
查看>>