Content Delivery Flow

The current page details publish service content delivery in AEM as a Cloud Service. Publish service content delivery includes:

  • CDN
  • AEM dispatcher
  • AEM publish

The data flow is as follows:

  1. The URL is added in the browser
  2. Request made to CDN mapped in DNS to that domain
  3. If content is fully cached on CDN, CDN serves it to the browser
  4. If content is not fully cached, the CDN calls out (reverse proxy) to the dispatcher
  5. If content is fully cached on dispatcher, dispatcher serves it to the CDN
  6. If content is not fully cached, the dispatcher calls out (reverse proxy) to the AEM publish
  7. The content is rendered by the browser, which may also cache it, depending on the headers

By default, the content type HTML/text is set to expire after 300s (5 minutes) at the dispatcher layer, a threshold which both the dispatcher cache and CDN respect. During redeployments of the publish service, the dispatcher cache is cleared and subsequently warmed up before the new publish nodes accept traffic.

The follwing sections provide greater detail about content delivery:

Information about replication from the author service to the publish service is available here.

On this page