Cloud Platform

Checklist for migrating your website to Cloud Platform

Note

This document lists Acquia’s recommendation while migrating your site to Cloud Platform. For additional assistance, consider leveraging Acquia’s paid Assisted migration engagement program.

To help you prepare to launch your new Drupal website and to avoid several common configuration or performance issues, use the suggestions, recommended settings, and information as a prelaunch checklist for your website. Unless otherwise specified, these suggestions apply to all versions of Drupal.

Uninstall and remove incompatible modules

Disable and uninstall the following modules or classes of modules:

  • Boost - This module conflicts with Varnish® caching, and is not needed in Cloud Platform.
  • Database logging core module - The Syslog core module can store logs much faster, because it does not need to write to the database.
  • PHP Filter core module - Incorrect use of this module can cause security problems for your website.
  • Infrastructure-side statistics modules - Instead, use client-side statistics services, such as Google Analytics or Omniture.
  • Remove unneeded modules - Remove modules such as Devel and views_ui (part of the Views module), which are not needed on a production website, to reduce your website’s startup (bootstrap) overhead.
Note

Configure performance settings in Drupal

On the Performance page (URL info), configure or enable the following values:

  • Enable page caching for anonymous website visitors.
    • Current Drupal version: Do this by default.
    • Drupal 7: Caching section > Cache pages for anonymous users checkbox
  • Ensure that block caching is enabled.
  • In the Caching section > Minimum cache lifetime list, set the amount of time that cached pages won’t be re-created to none.
  • In the Caching section > Expiration of cached pages list, set the maximum amount of time that an external cache can use an old version of a page to greater than or equal to five minutes (300 seconds).
  • Enable CSS aggregation in the Bandwidth Optimization section > Aggregate and compress CSS files checkbox.
  • Enable JavaScript aggregation in the Bandwidth Optimization section > Aggregate JavaScript files checkbox.
  • For the Views and Panels modules, check the views content caches, time-based caches, and panels caches.
  • Do not override the PHP memory limit on a global basis. Acquia tunes its infrastructure to use the exact number of threads possible for the memory available to your application, and overriding it on a global basis will lead to HTTP 5xx status codes for your website’s users. If your application needs more than 128MB of memory for each page request, create a Support ticket to request your memory allocation be altered to provide fewer threads, but more memory per thread.
Note

Conditionally overriding the memory limit for certain administration pages can sometimes be acceptable. Create a Support ticket to discuss your options.

  • Use the Acquia Search service, which removes search load from MySQL and offers feature and usability improvements.
  • Ensure that you’re using InnoDB as your website’s table engine. Although InnoDB is now the default for Drupal, you should confirm that you’re using it instead of the MyISAM table engine, which has performance problems. To examine your current database tables to determine if any other engines are in use, use the following SQL query (where [db_name] is your database’s name):

    SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '[db_name]' AND ENGINE <> 'InnoDB';                      

    If you need to convert tables in your database to InnoDB, use this script after you modify it with your own credentials and database information.

Disable page compression

Having the Compress cached pages option enabled can result in Varnish double-compressing page contents. When already-compressed text is compressed again, your website will display characters from the compressed file, rather than the expected website content. We recommend you do the following:

  • Disable Compress cached pages in the Bandwidth Optimization section > Aggregate and compress CSS files checkbox.

Cache your website with Varnish

Cloud Platform uses Varnish in front of all of its websites to help ensure responsiveness. Learn more about Varnish. As part of setting up your website on Cloud Platform, you may need to bypass the Varnish cache, set redirects, or purge it entirely.

Configure Memcached

Memcached is a general-purpose memory cache infrastructure daemon. It can improve Drupal application performance by moving Drupal’s standard caches out of the database and by caching the results of other expensive database operations. Learn more about Memcached.

Protect your website with SSL

Secure Socket Layer, or SSL, is of major importance to many websites, and critical for websites serving personal or financial information. The Enabling SSL documentation page provides an overview of how you can use SSL with Cloud Platform.

Shorten cutover time by lowering your TTL

Several days before DNS cutover, lower your DNS’s Time to Live (TTL) setting to 5–10 minutes. Doing so reduces the amount of time your DNS change will take to propagate when you are ready to turn your new website live, and help you shorten the time that web traffic and email are routed to both your old and new infrastructure. Once the cutover to your new website is complete, you can set your domain’s TTL back to its previous value. Since the method of lowering TTL can differ from provider to provider, you will need to contact your domain name (DNS) provider for specific instructions on how to lower your TTL.

Contact Acquia if you expect a high-traffic event

If you’re expecting an event that will send a significant amount of traffic to your website, we encourage you to contact Acquia Support in advance, so that we can help you prevent a website outage. Events that can cause enough traffic to affect your website’s availability include:

  • Website launches
  • Marketing campaigns
  • Performances

For more information on exactly how to notify Acquia of an important event on your website, visit Expecting a high-traffic event.

Best practices

Acquia recommends the following best practices:

  • Use HTTP authentication during development. HTTP authentication invalidates Varnish caching and should never be used on a production website. For more information, see Password-protecting non-production environments.
  • Avoid putting all user files in a single directory. A directory with thousands of files needs more time to read files in the directory, causing serious performance problems that can affect your website’s availability. To restructure your files into subdirectories, see Proactively set your file fields to use paths.

Additional resources

The Acquia documentation and Support knowledge base includes several other articles that may be helpful to you as you configure your new Drupal website, including the following:

If you require additional assistance, Acquia provides additional services to Enterprise and Elite customers that include website installation and configuration.