Archive Journals Once a Week
The listing below asks AMPS to archive transaction log journal files older than 1 week, every Saturday at 12:30 AM.
This configuration moves journal files from the JournalDirectory
to the JournalArchiveDirectory
, while maintaining the files as an active part of the transaction log (ensuring that they are still available for bookmark replay, replication, and so on).
<Actions>
<Action>
<On>
<Module>amps-action-on-schedule</Module>
<Options>
<Every>Saturday at 00:30</Every>
<Name>Saturday Night Fever</Name>
</Options>
</On>
<Do>
<Module>amps-action-do-archive-journal</Module>
<Options>
<Age>7d</Age>
</Options>
</Do>
</Action>
</Actions>
Last updated