mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Remove unfinished usage job entries of the host (#10848)
This commit is contained in:
parent
7715b3dc29
commit
06c80cdbe9
@ -37,4 +37,6 @@ public interface UsageJobDao extends GenericDao<UsageJobVO, Long> {
|
|||||||
UsageJobVO isOwner(String hostname, int pid);
|
UsageJobVO isOwner(String hostname, int pid);
|
||||||
|
|
||||||
void updateJobSuccess(Long jobId, long startMillis, long endMillis, long execTime, boolean success);
|
void updateJobSuccess(Long jobId, long startMillis, long endMillis, long execTime, boolean success);
|
||||||
|
|
||||||
|
void removeLastOpenJobsOwned(String hostname, int pid);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,6 +22,7 @@ import java.util.Date;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
import org.apache.commons.collections.CollectionUtils;
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@ -116,7 +117,7 @@ public class UsageJobDaoImpl extends GenericDaoBase<UsageJobVO, Long> implements
|
|||||||
public UsageJobVO isOwner(String hostname, int pid) {
|
public UsageJobVO isOwner(String hostname, int pid) {
|
||||||
TransactionLegacy txn = TransactionLegacy.open(TransactionLegacy.USAGE_DB);
|
TransactionLegacy txn = TransactionLegacy.open(TransactionLegacy.USAGE_DB);
|
||||||
try {
|
try {
|
||||||
if ((hostname == null) || (pid <= 0)) {
|
if (hostname == null || pid <= 0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -176,7 +177,7 @@ public class UsageJobDaoImpl extends GenericDaoBase<UsageJobVO, Long> implements
|
|||||||
SearchCriteria<UsageJobVO> sc = createSearchCriteria();
|
SearchCriteria<UsageJobVO> sc = createSearchCriteria();
|
||||||
sc.addAnd("endMillis", SearchCriteria.Op.EQ, Long.valueOf(0));
|
sc.addAnd("endMillis", SearchCriteria.Op.EQ, Long.valueOf(0));
|
||||||
sc.addAnd("jobType", SearchCriteria.Op.EQ, Integer.valueOf(UsageJobVO.JOB_TYPE_SINGLE));
|
sc.addAnd("jobType", SearchCriteria.Op.EQ, Integer.valueOf(UsageJobVO.JOB_TYPE_SINGLE));
|
||||||
sc.addAnd("scheduled", SearchCriteria.Op.EQ, Integer.valueOf(0));
|
sc.addAnd("scheduled", SearchCriteria.Op.EQ, Integer.valueOf(UsageJobVO.JOB_NOT_SCHEDULED));
|
||||||
List<UsageJobVO> jobs = search(sc, filter);
|
List<UsageJobVO> jobs = search(sc, filter);
|
||||||
|
|
||||||
if ((jobs == null) || jobs.isEmpty()) {
|
if ((jobs == null) || jobs.isEmpty()) {
|
||||||
@ -196,4 +197,36 @@ public class UsageJobDaoImpl extends GenericDaoBase<UsageJobVO, Long> implements
|
|||||||
}
|
}
|
||||||
return jobs.get(0).getHeartbeat();
|
return jobs.get(0).getHeartbeat();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private List<UsageJobVO> getLastOpenJobsOwned(String hostname, int pid) {
|
||||||
|
SearchCriteria<UsageJobVO> sc = createSearchCriteria();
|
||||||
|
sc.addAnd("endMillis", SearchCriteria.Op.EQ, Long.valueOf(0));
|
||||||
|
sc.addAnd("host", SearchCriteria.Op.EQ, hostname);
|
||||||
|
if (pid > 0) {
|
||||||
|
sc.addAnd("pid", SearchCriteria.Op.EQ, Integer.valueOf(pid));
|
||||||
|
}
|
||||||
|
return listBy(sc);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void removeLastOpenJobsOwned(String hostname, int pid) {
|
||||||
|
if (hostname == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
TransactionLegacy txn = TransactionLegacy.open(TransactionLegacy.USAGE_DB);
|
||||||
|
try {
|
||||||
|
List<UsageJobVO> jobs = getLastOpenJobsOwned(hostname, pid);
|
||||||
|
if (CollectionUtils.isNotEmpty(jobs)) {
|
||||||
|
s_logger.info(String.format("Found %s opens job, to remove", jobs.size()));
|
||||||
|
for (UsageJobVO job : jobs) {
|
||||||
|
s_logger.debug(String.format("Removing job - id: %d, pid: %d, job type: %d, scheduled: %d, heartbeat: %s",
|
||||||
|
job.getId(), job.getPid(), job.getJobType(), job.getScheduled(), job.getHeartbeat()));
|
||||||
|
remove(job.getId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
txn.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -319,6 +319,9 @@ public class UsageManagerImpl extends ManagerBase implements UsageManager, Runna
|
|||||||
s_logger.info("Starting Usage Manager");
|
s_logger.info("Starting Usage Manager");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_usageJobDao.removeLastOpenJobsOwned(_hostname, 0);
|
||||||
|
Runtime.getRuntime().addShutdownHook(new AbandonJob());
|
||||||
|
|
||||||
// use the configured exec time and aggregation duration for scheduling the job
|
// use the configured exec time and aggregation duration for scheduling the job
|
||||||
_scheduledFuture =
|
_scheduledFuture =
|
||||||
_executor.scheduleAtFixedRate(this, _jobExecTime.getTimeInMillis() - System.currentTimeMillis(), _aggregationDuration * 60 * 1000, TimeUnit.MILLISECONDS);
|
_executor.scheduleAtFixedRate(this, _jobExecTime.getTimeInMillis() - System.currentTimeMillis(), _aggregationDuration * 60 * 1000, TimeUnit.MILLISECONDS);
|
||||||
@ -331,7 +334,6 @@ public class UsageManagerImpl extends ManagerBase implements UsageManager, Runna
|
|||||||
_sanity = _sanityExecutor.scheduleAtFixedRate(new SanityCheck(), 1, _sanityCheckInterval, TimeUnit.DAYS);
|
_sanity = _sanityExecutor.scheduleAtFixedRate(new SanityCheck(), 1, _sanityCheckInterval, TimeUnit.DAYS);
|
||||||
}
|
}
|
||||||
|
|
||||||
Runtime.getRuntime().addShutdownHook(new AbandonJob());
|
|
||||||
TransactionLegacy usageTxn = TransactionLegacy.open(TransactionLegacy.USAGE_DB);
|
TransactionLegacy usageTxn = TransactionLegacy.open(TransactionLegacy.USAGE_DB);
|
||||||
try {
|
try {
|
||||||
if (_heartbeatLock.lock(3)) { // 3 second timeout
|
if (_heartbeatLock.lock(3)) { // 3 second timeout
|
||||||
@ -2255,17 +2257,17 @@ public class UsageManagerImpl extends ManagerBase implements UsageManager, Runna
|
|||||||
// the aggregation range away from executing the next job
|
// the aggregation range away from executing the next job
|
||||||
long now = System.currentTimeMillis();
|
long now = System.currentTimeMillis();
|
||||||
long timeToJob = _jobExecTime.getTimeInMillis() - now;
|
long timeToJob = _jobExecTime.getTimeInMillis() - now;
|
||||||
long timeSinceJob = 0;
|
long timeSinceLastSuccessJob = 0;
|
||||||
long aggregationDurationMillis = _aggregationDuration * 60L * 1000L;
|
long aggregationDurationMillis = _aggregationDuration * 60L * 1000L;
|
||||||
long lastSuccess = _usageJobDao.getLastJobSuccessDateMillis();
|
long lastSuccess = _usageJobDao.getLastJobSuccessDateMillis();
|
||||||
if (lastSuccess > 0) {
|
if (lastSuccess > 0) {
|
||||||
timeSinceJob = now - lastSuccess;
|
timeSinceLastSuccessJob = now - lastSuccess;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((timeSinceJob > 0) && (timeSinceJob > (aggregationDurationMillis - 100))) {
|
if ((timeSinceLastSuccessJob > 0) && (timeSinceLastSuccessJob > (aggregationDurationMillis - 100))) {
|
||||||
if (timeToJob > (aggregationDurationMillis / 2)) {
|
if (timeToJob > (aggregationDurationMillis / 2)) {
|
||||||
if (s_logger.isDebugEnabled()) {
|
if (s_logger.isDebugEnabled()) {
|
||||||
s_logger.debug("it's been " + timeSinceJob + " ms since last usage job and " + timeToJob +
|
s_logger.debug("it's been " + timeSinceLastSuccessJob + " ms since last usage job and " + timeToJob +
|
||||||
" ms until next job, scheduling an immediate job to catch up (aggregation duration is " + _aggregationDuration + " minutes)");
|
" ms until next job, scheduling an immediate job to catch up (aggregation duration is " + _aggregationDuration + " minutes)");
|
||||||
}
|
}
|
||||||
scheduleParse();
|
scheduleParse();
|
||||||
@ -2352,17 +2354,12 @@ public class UsageManagerImpl extends ManagerBase implements UsageManager, Runna
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class AbandonJob extends Thread {
|
private class AbandonJob extends Thread {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
s_logger.info("exitting Usage Manager");
|
s_logger.info("exiting Usage Manager");
|
||||||
deleteOpenjob();
|
_usageJobDao.removeLastOpenJobsOwned(_hostname, _pid);
|
||||||
}
|
|
||||||
private void deleteOpenjob() {
|
|
||||||
UsageJobVO job = _usageJobDao.isOwner(_hostname, _pid);
|
|
||||||
if (job != null) {
|
|
||||||
_usageJobDao.remove(job.getId());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user