Maintenance Tasks in AEM as a Cloud Service
- Topics:
- Operations
CREATED FOR:
- Admin
Maintenance Tasks are processes that run on a schedule to optimize the repository. With AEM as a Cloud Service, the need for customers to configure the operational properties of maintenance tasks is minimal. Customers can focus their resources on application-level concerns, leaving the infrastructure operations to Adobe.
Configuring maintenance tasks
In previous versions of AEM, you could configure maintenance tasks by using the Maintenance Card (Tools > Operations > Maintenance). For AEM as a Cloud Service, the Maintenance Card is no longer available so configurations should be committed to source control and deployed by using the Cloud Manager. Adobe manages those maintenance tasks which have settings that are not configurable by customers (for example, Datastore Garbage Collection). Other maintenance tasks can be configured by customers, as described in the table below.
The following table illustrates the maintenance tasks that are available.
Maintenance Task | Who owns the configuration | How to configure (optional) |
---|---|---|
Datastore garbage collection | Adobe | N/A - fully Adobe owned |
Version Purge | Customer | Version purge is currently disabled by default, but the policy can be configured, as described in the Version Purge and Audit Log Purge Maintenance Tasks section. Purging will soon be enabled by default, with those values overrideable. |
Audit Log Purge | Customer | Audit log purge is currently disabled by default, but the policy can be configured, as described in the Version Purge and Audit Log Purge Maintenance Tasks section. Purging will soon be enabled by default, with those values overrideable. |
Lucene Binaries Cleanup | Adobe | Unused and therefore disabled by Adobe. |
Ad-hoc Task Purge | Customer |
Must be done in git. Override the out-of-the-box Maintenance window configuration node under See the Maintenance Window table below for additional configuration details. Enable the maintenance task by adding another node under the node above. Name it |
Workflow Purge | Customer |
Must be done in git. Override the out-of-the-box Maintenance window configuration node under Enable the maintenance task by adding another node under the node above (name it |
Project Purge | Customer |
Must be done in git. Override the out-of-the-box Maintenance window configuration node under Enable the maintenance task by adding another node under the node above (name it |
Maintenance Window Configuration | Who owns the configuration | Configuration Type | Parameters |
---|---|---|---|
Daily | Customer | JCR Node Definition |
windowSchedule=daily (this value should not be changed) windowStartTime=HH:MM using as 24 hour clock. Defines when the Maintenance Tasks associated with the Daily Maintenance Window should begin executing. windowEndTime=HH:MM using as 24 hour clock. Defines when the Maintenance Tasks associated with the Daily Maintenance Window should stop executing if they haven't already completed. A maintenance task cannot be executed more than once during this timeframe. |
Weekly | Customer | JCR Node Definition |
windowSchedule=weekly (this value should not be changed) windowStartTime=HH:MM using as 24 hour clock. Defines when the Maintenance Tasks associated with the weekly Maintenance Window should begin executing. windowEndTime=HH:MM using as 24 hour clock. Defines when the Maintenance Tasks associated with the Weekly Maintenance Window should stop executing if they haven't already completed. A maintenance task cannot be executed more than once during this timeframe. windowScheduleWeekdays= Array of two values from 1–7 (for example, [5,5]) The first value of the array is the start day when the job is scheduled and the second value is the end day when the job would be stopped. The exact time of the start and the end is governed by windowStartTime and windowEndTime respectively. |
Monthly | Customer | JCR Node Definition |
windowSchedule=monthly (this value should not be changed) windowStartTime=HH:MM using as 24 hour clock. Defines when the Maintenance Tasks associated with the Monthly Maintenance Window should begin executing. windowEndTime=HH:MM using as 24 hour clock. Defines when the Maintenance Tasks associated with the Monthly Maintenance Window should stop executing if they haven't already completed. A maintenance task cannot be executed more than once during this timeframe. windowScheduleWeekdays=Array of two values from 1–7 (for example, [5,5]) The first value of the array is the start day when the job is scheduled and the second value is the end day when the job would be stopped. The exact time of the start and the end is governed by windowStartTime and windowEndTime respectively. windowFirstLastStartDay= 0/1 0 to schedule on the first week of the month or 1 to schedule on the last week of the month. The absence of a value would effectively schedule jobs on the day governed by windowScheduleWeekdays (every month). |
Locations:
- Daily - /apps/settings/granite/operations/maintenance/granite_daily
- Weekly - /apps/settings/granite/operations/maintenance/granite_weekly
- Monthly - /apps/settings/granite/operations/maintenance/granite_monthly
Code samples:
Code sample 1 (daily)
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0"
xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:Folder"
sling:configCollectionInherit="true"
sling:configPropertyInherit="true"
windowSchedule="daily"
windowStartTime="03:00"
windowEndTime="05:00"
/>
Code sample 2 (weekly)
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0"
xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:Folder"
sling:configCollectionInherit="true"
sling:configPropertyInherit="true"
windowEndTime="15:30"
windowSchedule="weekly"
windowScheduleWeekdays="[5,5]"
windowStartTime="14:30"/>
Code sample 3 (monthly)
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0"
xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:Folder"
sling:configCollectionInherit="true"
sling:configPropertyInherit="true"
windowEndTime="15:30"
windowSchedule="monthly"
windowFirstLastStartDay=0
windowScheduleWeekdays="[5,5]"
windowStartTime="14:30"/>
Version Purge and Audit Log Purge Maintenance Tasks
Purging versions and the audit log reduces the size of the repository, and in some scenarios, can improve performance.
Defaults
Currently, purging is not enabled by default, but this will change in the future. Environments that were created before the default purging is enabled will have a more conservative threshold so that purging does not occur unexpectedly. See the Version Purge and Audit Log Purge sections below for more details about the default purging policy.
The default purge values can be overridden by declaring a configuration file and deploying it as described below.
Applying a configuration
Declare a configuration file and deploy it as described in the following steps.
1 Create a file named mt.yaml
or similar.
2 Place the file somewhere under a top level folder named config
or similar, as described under Using Config Pipelines.
3 - Declare properties in the configuration file, which include:
-
a few properties above the data node – see Using Config Pipelines for a description. The
kind
property value should be MaintenanceTasks and the version should be set to 1. -
a data object with both
versionPurge
andauditLogPurge
objects.
See the definitions and syntax of the versionPurge
and auditLogPurge
objects below.
Structure the configuration similar to the following example:
kind: "MaintenanceTasks"
version: "1"
metadata:
envTypes: ["dev"]
data:
versionPurge:
maximumVersions: 15
maximumAgeDays: 20
paths: ["/content"]
minimumVersions: 1
retainLabelledVersions: false
auditLogPurge:
rules:
- replication:
maximumAgeDays: 15
contentPath: "/content"
types: ["Activate", "Deactivate", "Delete", "Test", "Reverse", "Internal Poll"]
- pages:
maximumAgeDays: 15
contentPath: "/content"
types: ["PageCreated", "PageModified", "PageMoved", "PageDeleted", "VersionCreated", "PageRestored", "PageValid", "PageInvalid"]
- dam:
maximumAgeDays: 15
contentPath: "/content"
types: ["ASSET_EXPIRING", "METADATA_UPDATED", "ASSET_EXPIRED", "ASSET_REMOVED", "RESTORED", "ASSET_MOVED", "ASSET_VIEWED", "PROJECT_VIEWED", "PUBLISHED_EXTERNAL", "COLLECTION_VIEWED", "VERSIONED", "ADDED_COMMENT", "RENDITION_UPDATED", "ACCEPTED", "DOWNLOADED", "SUBASSET_UPDATED", "SUBASSET_REMOVED", "ASSET_CREATED", "ASSET_SHARED", "RENDITION_REMOVED", "ASSET_PUBLISHED", "ORIGINAL_UPDATED", "RENDITION_DOWNLOADED", "REJECTED"]
Keep in mind that in order for the configuration to be valid:
- all properties must be defined. There are no inherited defaults.
- the types (integers, strings, booleans, etc) in the property tables below must be respected.
4 - Create a config pipeline in Cloud Manager, as described in the config pipeline article.
Version Purge
Version Purge Defaults
Currently, purging is not enabled by default, but this will change in the future.
Environments that were created after the default purging is enabled will have the following default values:
- Versions older than 30 days are removed.
- The most recent five versions in the last 30 days are kept.
- Irrespective of the rules above, the most recent version (in addition to the current file) is preserved.
Environments that were created before the default purging is enabled will have the default values listed below, however it is recommended to lower those values in order to optimize performance.
- Versions older than 7 years are removed.
- All versions in the last 7 years are kept.
- After 7 years, versions other than the most recent version (in addition to the current file) are removed.
Version Purge Properties
The allowed properties are listed below.
The columns indicating default indicate the default values in the future, when defaults are applied; TBD reflects an environment id that is still not determined.
Property interactions
The following examples illustrate how properties interact when combined.
Example:
maximumAgeDays = 30
maximumVersions = 10
minimumVersions = 2
If there are 11 versions on day 23, the oldest version will be purged next time the purge maintenance task runs, since the maximumVersions
property is set to 10.
If there are 5 versions on day 31, only 3 will be purged since the minimumVersions
property is set to 2.
Example:
maximumAgeDays = 30
maximumVersions = 0
minimumVersions = 1
No versions newer than 30 days will be purged since the maximumVersions
property is set to 0.
One version older than 30 days will be kept.
Audit Log Purge
Audit Log Purge Defaults
Currently, purging is not enabled by default, but this will change in the future.
Environments that were created after the default purging is enabled will have the following default values:
- Replication, DAM, and page audit logs older than 7 days are removed.
- All possible events are logged.
Environments that were created before the default purging is enabled will have the default values listed below, however it is recommended to lower those values in order to optimize performance.
- Replication, DAM, and page audit logs older than 7 years are removed.
- All possible events are logged.
Audit Log Purge Properties
The allowed properties are listed below.
The columns indicating default indicate the default values in the future, when defaults are applied; TBD reflects an environment id that is still not determined.