You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CLOUDSTACK-3612: fixed missing indexes in some cloud tables. In the bug those tables are addressed as table apache#4, table apache#5, and table apache#6
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Network', 'DEFAULT', 'management-server', 'network.loadbalancer.haproxy.max.conn', '4096', 'Load Balancer(haproxy) maximum number of concurrent connections(global max)');
2244
2245
2245
2246
ALTERTABLE`cloud`.`network_offerings` ADD COLUMN `concurrent_connections`int(10) unsigned COMMENT 'Load Balancer(haproxy) maximum number of concurrent connections(global max)';
2247
+
2248
+
2249
+
ALTERTABLE`cloud`.`sync_queue` MODIFY `queue_size`smallint(6) NOT NULL DEFAULT '0' COMMENT 'number of items being processed by the queue';
2250
+
ALTERTABLE`cloud`.`sync_queue` MODIFY `queue_size_limit`smallint(6) NOT NULL DEFAULT '1' COMMENT 'max number of items the queue can process concurrently';
0 commit comments