| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- ALTER TABLE config ADD COLUMN iops_base BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN iops_pre_unit BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN iops_cap BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN iops_max BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN iops_max_length BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN bps_base BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN bps_pre_unit BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN bps_cap BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN bps_max BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE config ADD COLUMN bps_max_length BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN iops BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN iops_rd BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN iops_wr BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN iops_max BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN iops_max_length BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN bps BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN bps_rd BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN bps_wr BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN bps_max BIGINT UNSIGNED NOT NULL DEFAULT 0;
- ALTER TABLE disk ADD COLUMN bps_max_length BIGINT UNSIGNED NOT NULL DEFAULT 0;
- -- 初始化 config 表中的磁盘限额参数;
- UPDATE config SET iops_base=1000, iops_pre_unit=1, iops_cap=2000, iops_max=3000, iops_max_length=20,
- bps_base=1024 * 1024 * 200, bps_pre_unit=1024 * 1024 * 0.3, bps_cap=1024 * 1024 * 500, bps_max=1024 * 1024 * 1024,
- bps_max_length=10;
- -- 更新虚拟机系统盘磁盘性能限额;
- UPDATE disk, config SET
- disk.iops=config.iops_base, disk.iops_max=config.iops_max, disk.iops_max_length=config.iops_max_length,
- disk.bps=config.bps_base, disk.bps_max=config.bps_max, disk.bps_max_length=config.bps_max_length
- WHERE disk.sequence=0 AND config.id=1;
- -- 更新小于满额的非系统盘磁盘性能限额;
- UPDATE disk, config SET
- disk.iops=config.iops_base + config.iops_pre_unit * disk.size,
- disk.iops_max=config.iops_max, disk.iops_max_length=config.iops_max_length,
- disk.bps=config.bps_base + config.bps_pre_unit * disk.size,
- disk.bps_max=config.bps_max, disk.bps_max_length=config.bps_max_length
- WHERE disk.sequence!=0 AND disk.size<=1000 AND config.id=1;
- -- 更新超出满额的非系统盘磁盘性能限额;
- UPDATE disk, config SET
- disk.iops=config.iops_cap,
- disk.iops_max=config.iops_max, disk.iops_max_length=config.iops_max_length,
- disk.bps=config.bps_cap,
- disk.bps_max=config.bps_max, disk.bps_max_length=config.bps_max_length
- WHERE disk.sequence!=0 AND disk.size>1000 AND config.id=1;
|