mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-7903: Decreased minimal usage aggregation range value
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
(cherry picked from commit 9b907902d2)
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
Conflicts:
server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java
usage/src/com/cloud/usage/UsageManagerImpl.java
This commit is contained in:
parent
0e0827f07c
commit
09ccf5a64b
|
|
@ -219,6 +219,7 @@ import com.cloud.offerings.NetworkOfferingVO;
|
|||
import com.cloud.offerings.dao.NetworkOfferingDao;
|
||||
import com.cloud.resource.ResourceManager;
|
||||
import com.cloud.server.ConfigurationServer;
|
||||
import com.cloud.server.StatsCollector;
|
||||
import com.cloud.service.ServiceOfferingVO;
|
||||
import com.cloud.service.dao.ServiceOfferingDao;
|
||||
import com.cloud.storage.VMTemplateVO;
|
||||
|
|
@ -416,8 +417,7 @@ public class VirtualNetworkApplianceManagerImpl extends ManagerBase implements V
|
|||
private int _usageAggregationRange = 1440;
|
||||
private String _usageTimeZone = "GMT";
|
||||
private final long mgmtSrvrId = MacAddress.getMacAddress().toLong();
|
||||
private static final int ACQUIRE_GLOBAL_LOCK_TIMEOUT_FOR_COOPERATION = 5; // 5 seconds
|
||||
private static final int USAGE_AGGREGATION_RANGE_MIN = 10; // 10 minutes, same as com.cloud.usage.UsageManagerImpl.USAGE_AGGREGATION_RANGE_MIN
|
||||
private static final int ACQUIRE_GLOBAL_LOCK_TIMEOUT_FOR_COOPERATION = 5; // 5 seconds
|
||||
private boolean _dailyOrHourly = false;
|
||||
|
||||
ScheduledExecutorService _executor;
|
||||
|
|
@ -794,9 +794,9 @@ public class VirtualNetworkApplianceManagerImpl extends ManagerBase implements V
|
|||
_dailyOrHourly = false;
|
||||
}
|
||||
|
||||
if (_usageAggregationRange < USAGE_AGGREGATION_RANGE_MIN) {
|
||||
s_logger.warn("Usage stats job aggregation range is to small, using the minimum value of " + USAGE_AGGREGATION_RANGE_MIN);
|
||||
_usageAggregationRange = USAGE_AGGREGATION_RANGE_MIN;
|
||||
if (_usageAggregationRange < StatsCollector.USAGE_AGGREGATION_RANGE_MIN) {
|
||||
s_logger.warn("Usage stats job aggregation range is to small, using the minimum value of " + StatsCollector.USAGE_AGGREGATION_RANGE_MIN);
|
||||
_usageAggregationRange = StatsCollector.USAGE_AGGREGATION_RANGE_MIN;
|
||||
}
|
||||
|
||||
_networkStatsUpdateExecutor.scheduleAtFixedRate(new NetworkStatsUpdateTask(), (endDate - System.currentTimeMillis()),
|
||||
|
|
|
|||
|
|
@ -138,7 +138,7 @@ public class StatsCollector extends ManagerBase implements ComponentMethodInterc
|
|||
private String _usageTimeZone = "GMT";
|
||||
private final long mgmtSrvrId = MacAddress.getMacAddress().toLong();
|
||||
private static final int ACQUIRE_GLOBAL_LOCK_TIMEOUT_FOR_COOPERATION = 5; // 5 seconds
|
||||
private static final int USAGE_AGGREGATION_RANGE_MIN = 10; // 10 minutes, same to com.cloud.usage.UsageManagerImpl.USAGE_AGGREGATION_RANGE_MIN
|
||||
public static final int USAGE_AGGREGATION_RANGE_MIN = 1;
|
||||
private boolean _dailyOrHourly = false;
|
||||
|
||||
//private final GlobalLock m_capacityCheckLock = GlobalLock.getInternLock("capacity.check");
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ import org.apache.cloudstack.usage.UsageTypes;
|
|||
import org.springframework.stereotype.Component;
|
||||
|
||||
import com.cloud.alert.AlertManager;
|
||||
import com.cloud.server.StatsCollector;
|
||||
import com.cloud.event.EventTypes;
|
||||
import com.cloud.event.UsageEventVO;
|
||||
import com.cloud.event.dao.UsageEventDao;
|
||||
|
|
@ -101,7 +102,6 @@ public class UsageManagerImpl extends ManagerBase implements UsageManager, Runna
|
|||
private static final int HOURLY_TIME = 60;
|
||||
private static final int DAILY_TIME = 60 * 24;
|
||||
private static final int THREE_DAYS_IN_MINUTES = 60 * 24 * 3;
|
||||
private static final int USAGE_AGGREGATION_RANGE_MIN = 10;
|
||||
|
||||
@Inject private AccountDao m_accountDao;
|
||||
@Inject private UserStatisticsDao m_userStatsDao;
|
||||
|
|
@ -223,9 +223,9 @@ public class UsageManagerImpl extends ManagerBase implements UsageManager, Runna
|
|||
s_logger.debug("Current Time: "+currentDate.toString());
|
||||
|
||||
m_aggregationDuration = Integer.parseInt(aggregationRange);
|
||||
if (m_aggregationDuration < USAGE_AGGREGATION_RANGE_MIN) {
|
||||
s_logger.warn("Usage stats job aggregation range is to small, using the minimum value of " + USAGE_AGGREGATION_RANGE_MIN);
|
||||
m_aggregationDuration = USAGE_AGGREGATION_RANGE_MIN;
|
||||
if (m_aggregationDuration < StatsCollector.USAGE_AGGREGATION_RANGE_MIN) {
|
||||
s_logger.warn("Usage stats job aggregation range is to small, using the minimum value of " + StatsCollector.USAGE_AGGREGATION_RANGE_MIN);
|
||||
m_aggregationDuration = StatsCollector.USAGE_AGGREGATION_RANGE_MIN;
|
||||
}
|
||||
m_hostname = InetAddress.getLocalHost().getHostName() + "/" + InetAddress.getLocalHost().getHostAddress();
|
||||
} catch (NumberFormatException ex) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue