mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
Converted OrphanReaper thread into quartz job, as requested. Fixes AR-1450.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5661 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
parent
3d47482757
commit
01ade4da9e
@ -160,10 +160,7 @@
|
||||
<bean id="rawServices" class="org.alfresco.repo.avm.util.RawServices"/>
|
||||
|
||||
<bean id="orphanReaper" class="org.alfresco.repo.avm.OrphanReaper"
|
||||
init-method="init" destroy-method="shutDown" depends-on="AVMService">
|
||||
<property name="inactiveBaseSleep">
|
||||
<value>60000</value>
|
||||
</property>
|
||||
depends-on="AVMService" destroy-method="shutDown">
|
||||
<property name="activeBaseSleep">
|
||||
<value>1000</value>
|
||||
</property>
|
||||
|
@ -181,4 +181,29 @@
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="avmOrphanReaperJob" class="org.alfresco.util.TriggerBean">
|
||||
<property name="jobDetail">
|
||||
<bean id="avmOrphanReaperJobDetail" class="org.springframework.scheduling.quartz.JobDetailBean">
|
||||
<property name="jobClass">
|
||||
<value>org.alfresco.repo.avm.OrphanReaperJob</value>
|
||||
</property>
|
||||
<property name="jobDataAsMap">
|
||||
<map>
|
||||
<entry key="orphanReaper">
|
||||
<ref bean="orphanReaper"/>
|
||||
</entry>
|
||||
</map>
|
||||
</property>
|
||||
</bean>
|
||||
</property>
|
||||
<property name="scheduler">
|
||||
<ref bean="schedulerFactory"/>
|
||||
</property>
|
||||
<property name="startDelayMinutes">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="repeatIntervalMinutes">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</bean>
|
||||
</beans>
|
@ -38,8 +38,46 @@ import org.springframework.orm.hibernate3.HibernateTemplate;
|
||||
* in the AVM repository. These orphans arise from purge operations.
|
||||
* @author britt
|
||||
*/
|
||||
public class OrphanReaper implements Runnable
|
||||
public class OrphanReaper
|
||||
{
|
||||
public void execute()
|
||||
{
|
||||
synchronized (this)
|
||||
{
|
||||
if (fRunning)
|
||||
{
|
||||
return;
|
||||
}
|
||||
fRunning = true;
|
||||
}
|
||||
try
|
||||
{
|
||||
do
|
||||
{
|
||||
doBatch();
|
||||
if (fDone)
|
||||
{
|
||||
return;
|
||||
}
|
||||
try
|
||||
{
|
||||
Thread.sleep(fActiveBaseSleep);
|
||||
}
|
||||
catch (InterruptedException e)
|
||||
{
|
||||
// Do nothing.
|
||||
}
|
||||
} while (fActive);
|
||||
}
|
||||
finally
|
||||
{
|
||||
synchronized (this)
|
||||
{
|
||||
fRunning = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private Logger fgLogger = Logger.getLogger(OrphanReaper.class);
|
||||
|
||||
/**
|
||||
@ -52,11 +90,6 @@ public class OrphanReaper implements Runnable
|
||||
*/
|
||||
private SessionFactory fSessionFactory;
|
||||
|
||||
/**
|
||||
* Inactive base sleep interval.
|
||||
*/
|
||||
private long fInactiveBaseSleep;
|
||||
|
||||
/**
|
||||
* Active base sleep interval.
|
||||
*/
|
||||
@ -73,16 +106,6 @@ public class OrphanReaper implements Runnable
|
||||
*/
|
||||
private boolean fActive;
|
||||
|
||||
/**
|
||||
* Flag for shutting down this.
|
||||
*/
|
||||
private boolean fDone;
|
||||
|
||||
/**
|
||||
* The thread for this.
|
||||
*/
|
||||
private Thread fThread;
|
||||
|
||||
/**
|
||||
* The maximum length of the queue.
|
||||
*/
|
||||
@ -93,30 +116,23 @@ public class OrphanReaper implements Runnable
|
||||
*/
|
||||
private LinkedList<Long> fPurgeQueue;
|
||||
|
||||
private boolean fDone = false;
|
||||
|
||||
private boolean fRunning = false;
|
||||
|
||||
/**
|
||||
* Create one with default parameters.
|
||||
*/
|
||||
public OrphanReaper()
|
||||
{
|
||||
fInactiveBaseSleep = 30000;
|
||||
fActiveBaseSleep = 1000;
|
||||
fBatchSize = 50;
|
||||
fQueueLength = 1000;
|
||||
fActive = false;
|
||||
fDone = false;
|
||||
}
|
||||
|
||||
// Setters for configuration.
|
||||
|
||||
/**
|
||||
* Set the Inactive Base Sleep interval.
|
||||
* @param interval The interval to set in ms.
|
||||
*/
|
||||
public void setInactiveBaseSleep(long interval)
|
||||
{
|
||||
fInactiveBaseSleep = interval;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the active base sleep interval.
|
||||
* @param interval The interval to set in ms.
|
||||
@ -165,55 +181,43 @@ public class OrphanReaper implements Runnable
|
||||
/**
|
||||
* Start things up after configuration is complete.
|
||||
*/
|
||||
public void init()
|
||||
{
|
||||
fThread = new Thread(this);
|
||||
fThread.start();
|
||||
}
|
||||
// public void init()
|
||||
// {
|
||||
// fThread = new Thread(this);
|
||||
// fThread.start();
|
||||
// }
|
||||
|
||||
/**
|
||||
* Shutdown the reaper. This needs to be called when
|
||||
* the application shuts down.
|
||||
*/
|
||||
public void shutDown()
|
||||
{
|
||||
synchronized (this)
|
||||
{
|
||||
fDone = true;
|
||||
notify();
|
||||
}
|
||||
try
|
||||
{
|
||||
fThread.join();
|
||||
}
|
||||
catch (InterruptedException ie)
|
||||
{
|
||||
// Do nothing.
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sit in a loop, periodically querying for orphans. When orphans
|
||||
* are found, unhook them in bite sized batches.
|
||||
*/
|
||||
public void run()
|
||||
{
|
||||
while (!fDone)
|
||||
{
|
||||
synchronized (this)
|
||||
{
|
||||
try
|
||||
{
|
||||
wait(fActive? fActiveBaseSleep : fInactiveBaseSleep);
|
||||
}
|
||||
catch (InterruptedException ie)
|
||||
{
|
||||
// Do nothing.
|
||||
}
|
||||
doBatch();
|
||||
}
|
||||
}
|
||||
}
|
||||
// public void run()
|
||||
// {
|
||||
// while (!fDone)
|
||||
// {
|
||||
// synchronized (this)
|
||||
// {
|
||||
// try
|
||||
// {
|
||||
// wait(fActive? fActiveBaseSleep : fInactiveBaseSleep);
|
||||
// }
|
||||
// catch (InterruptedException ie)
|
||||
// {
|
||||
// // Do nothing.
|
||||
// }
|
||||
// doBatch();
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
/**
|
||||
* This is really for debugging and testing. Allows another thread to
|
||||
|
46
source/java/org/alfresco/repo/avm/OrphanReaperJob.java
Normal file
46
source/java/org/alfresco/repo/avm/OrphanReaperJob.java
Normal file
@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
* As a special exception to the terms and conditions of version 2.0 of
|
||||
* the GPL, you may redistribute this Program in connection with Free/Libre
|
||||
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
||||
* FLOSS exception. You should have recieved a copy of the text describing
|
||||
* the FLOSS exception, and it is also available here:
|
||||
* http://www.alfresco.com/legal/licensing
|
||||
*/
|
||||
|
||||
package org.alfresco.repo.avm;
|
||||
|
||||
import org.quartz.Job;
|
||||
import org.quartz.JobExecutionContext;
|
||||
import org.quartz.JobExecutionException;
|
||||
|
||||
/**
|
||||
* Quartz wrapper for OrphanReaper.
|
||||
* @author britt
|
||||
*/
|
||||
public class OrphanReaperJob implements Job
|
||||
{
|
||||
/* (non-Javadoc)
|
||||
* @see org.quartz.Job#execute(org.quartz.JobExecutionContext)
|
||||
*/
|
||||
public void execute(JobExecutionContext context) throws JobExecutionException
|
||||
{
|
||||
OrphanReaper reaper = (OrphanReaper)context.getJobDetail().getJobDataMap().get("orphanReaper");
|
||||
reaper.execute();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user