mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-5485. Cannot process more than 5 concurrent snapshots.
Number of threads on SSVM agent for connection with MS (Agent->NioClient) should be configurable using global config 'workers'. (cherry picked from commit bc235ed5eb0f88c3c62542a3e06bdc28c7b49eac) Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
0e4d91aa91
commit
d466ecaf7a
@ -236,6 +236,9 @@ public class AgentShell implements IAgentShell, Daemon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_workers = NumberUtils.toInt(workers, 5);
|
_workers = NumberUtils.toInt(workers, 5);
|
||||||
|
if (_workers <= 0) {
|
||||||
|
_workers = 5;
|
||||||
|
}
|
||||||
|
|
||||||
if (host == null) {
|
if (host == null) {
|
||||||
host = getProperty(null, "host");
|
host = getProperty(null, "host");
|
||||||
|
|||||||
@ -1051,6 +1051,8 @@ public class SecondaryStorageManagerImpl extends ManagerBase implements Secondar
|
|||||||
|
|
||||||
buf.append(" guid=").append(profile.getVirtualMachine().getHostName());
|
buf.append(" guid=").append(profile.getVirtualMachine().getHostName());
|
||||||
|
|
||||||
|
buf.append(" workers=").append(_configDao.getValue("workers"));
|
||||||
|
|
||||||
if (_configDao.isPremium()) {
|
if (_configDao.isPremium()) {
|
||||||
s_logger.debug("VmWare hypervisor configured, telling the ssvm to load the PremiumSecondaryStorageResource");
|
s_logger.debug("VmWare hypervisor configured, telling the ssvm to load the PremiumSecondaryStorageResource");
|
||||||
buf.append(" resource=com.cloud.storage.resource.PremiumSecondaryStorageResource");
|
buf.append(" resource=com.cloud.storage.resource.PremiumSecondaryStorageResource");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user