[ https://issues.apache.org/jira/browse/CLOUDSTACK-6075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14092518#comment-14092518 ]
Harikrishna Patnala commented on CLOUDSTACK-6075: ------------------------------------------------- Previously also there is no use of this parameter based on how we create System service offering. I mean to say it is equivalent to hard coded value and so I removed it. We can fix by updating the vo and keeping the configuration parameter but I'm not sure why we are not updating the System service offering if already exists. public ServiceOfferingVO persistSystemServiceOffering(ServiceOfferingVO offering) { assert offering.getUniqueName() != null : "how are you going to find this later if you don't set it?"; ServiceOfferingVO vo = findByName(offering.getUniqueName()); if (vo != null) { // check invalid CPU speed in system service offering, set it to default value of 500 Mhz if 0 CPU speed is found if (vo.getSpeed() <= 0) { vo.setSpeed(500); update(vo.getId(), vo); } return vo; } try { return persist(offering); > Increase the ram size for router service offering > -------------------------------------------------- > > Key: CLOUDSTACK-6075 > URL: https://issues.apache.org/jira/browse/CLOUDSTACK-6075 > Project: CloudStack > Issue Type: Bug > Security Level: Public(Anyone can view this level - this is the > default.) > Components: Management Server > Affects Versions: 4.3.0 > Reporter: Harikrishna Patnala > Assignee: Harikrishna Patnala > Fix For: 4.4.0 > > > Increase the RAM size to 256 for router system vm(Internal load balancer vm > also) service offering because 128MB will have very poor performance. Minimum > should be 256. Simply because all pointers/data structures are now 64-bit -- This message was sent by Atlassian JIRA (v6.2#6252)