Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

  • 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. ');

...

References

Appendix

Appendix A:

...