...
- change service_offering and disk_offering table in cloud database.
alter table service_offering add column total_bytes_sec bigint(20) unsigned default 0;
alter table service_offering add column total_iops_sec bigint(20) unsigned default 0;
...
- disk_offering add column total_bytes_sec bigint(20) unsigned default 0;
alter table disk_offering add column total_iops_sec bigint(20) unsigned default 0;
- add global configurations
INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 'vm.disk.throttling.io_rate', 0, 'Default disk I/O rate in requests per second allowed in User vm\'s disk. ');
INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 'vm.disk.throttling.bytes_rate', 0, 'Default disk I/O rate in bytes per second allowed in User vm\'s disk. ');
...
{"serverDuration": 77, "requestCorrelationId": "6abd5599f4400d0c"}