06-03-2008 05:30 AM
02-23-2009 05:40 AM
04:00:00,011 DEBUG [org.quartz.core.JobRunShell] Calling execute on job DEFAULT.fileContentStoreCleanerJobDetail02-26-2009 11:25 AM
06-26-2009 06:42 AM
log4j.logger.org.alfresco.repo.content.cleanup=debug
<bean id="fileContentStore" class="org.alfresco.repo.content.filestore.FileContentStore">
<constructor-arg>
<value>${dir.contentstore}</value>
</constructor-arg>
</bean>
<!– deleted content will get pushed into this store, where it can be cleaned up at will –>
<bean id="deletedContentStore" class="org.alfresco.repo.content.filestore.FileContentStore">
<constructor-arg>
<value>${dir.contentstore.deleted}</value>
</constructor-arg>
</bean>
<!– bean to move deleted content into the the backup store –>
<bean id="deletedContentBackupListener" class="org.alfresco.repo.content.cleanup.DeletedContentBackupCleanerListener" >
<property name="store">
<ref bean="deletedContentStore" />
</property>
</bean>
<bean id="baseContentStoreCleaner" class="org.alfresco.repo.content.cleanup.ContentStoreCleaner" abstract="true">
<property name="dictionaryService">
<ref bean="dictionaryService" />
</property>
<property name="nodeDaoService" >
<ref bean="nodeDaoService" />
</property>
<property name="avmNodeDAO">
<ref bean="avmNodeDAO"/>
</property>
<property name="contentUrlDAO">
<ref bean="contentUrlDAO"/>
</property>
<property name="transactionService" >
<ref bean="transactionService" />
</property>
<property name="protectDays" >
<!– <value>14</value> –>
<value>2</value>
</property>
<property name="listeners" >
<list>
<ref bean="deletedContentBackupListener" />
</list>
</property>
</bean>
<bean id="contentStoreCleaner" parent="baseContentStoreCleaner">
<property name="stores" >
<list>
<ref bean="fileContentStore" />
</list>
</property>
</bean>
………………
………………
………………
07-02-2009 10:15 PM
07-03-2009 05:54 AM
07-03-2009 11:15 AM
07-06-2009 10:02 AM
Hi, my files don't go to alf_data/contentstore.deleted after deleted from Managed Deleted Items as admin user.Can you confirm that the retention time has been exceeded and that the cleanup job has run?
How can I see node ID from a folder to see if exists some references to that node?
My version is Alfresco 3 Stable Community version in Centos 5.3 x86_64
07-07-2009 03:33 AM
Hi,
The first thing to check is that you don't have multiple references to that node ID in the alf_node_status table. Even better, upgrade to a more recent version of Alfresco.
Regards
07-07-2009 05:06 AM
I would like to make a followup question: if the content/space deleted don't have multiple references in the alf_node_status table, what steps needed to be done to clear all my files in "Managed Deleted Items"? I think it would eat up my hard disk space so I need them deleted. How should i do it? I still cannot upgrade to higher version of Alfresco as we don't have extra machine yet.If you want to automatically clean the trashcan, give this a try:
…
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.