Advanced Varnish configuration
Varnish provides several features that prevent customers from experiencing long delays and timeouts when the Magento server is not functioning properly. These features can be configured in the default.vcl
file. This topic describes the additions that Magento provides in the VCL (Varnish Configuration Language) file you download from Magento Admin.
See the Varnish Reference Manual for details about using the Varnish Configuration Language.
Health check
Varnish’s health check feature polls the Magento server to determine whether it is responding in a timely manner. If it is responding normally, fresh content will be regenerated after the Time to Live (TTL) period has expired. If not, Varnish always serves stale content.
Magento defines the following default health check:
Every 5 seconds, this health check calls the pub/health_check.php
script. This script checks the availability of the server, each database, and Redis (if installed). The script must return a response within 2 seconds. If the script determines that any of these resources are down, it returns a 500 HTTP error code. If this error code is received in 6 out of 10 attempts, the backend is considered unhealthy.
The health_check.php
script is located in the pub
directory. If your Magento root directory is pub
, then be sure to change the path in the url
parameter from /pub/health_check.php
to health_check.php
.
For more information, see the Varnish health checks documentation.
Grace mode
Grace mode enables Varnish to keep an object in cache beyond its TTL value. Varnish can then serve the expired (stale) content while it fetches a new version. This improves the flow of traffic and decreases load times. It’s used in the following situations:
- When the Magento backend is healthy, but a request is taking longer than normal
- When the Magento backend is not healthy.
The vcl_hit
subroutine defines how Varnish responds to a request for objects that have been cached.
When the Magento backend is healthy
When the health checks determine that the Magento backend is healthy, Varnish checks whether time remains in the grace period. The default grace period is 300 seconds, but a merchant can set the value from Admin as described in Configure Magento to use Varnish. If the grace period hasn’t expired, Varnish delivers the stale content, and asynchronously refreshes the object from the Magento server. If the grace period has expired, Varnish serves the stale content and synchronously refreshes the object from the Magento backend.
The maximum amount of time that Varnish serves a stale object is the sum of the grace period (300 seconds by default) and the TTL value (86400 seconds by default).
To change the default grace period from within the default.vcl
file, edit the following line in the vcl_hit
subroutine:
if (obj.ttl + 300s > 0s) {
When the Magento backend is not healthy
If the Magento backend is not responsive, Varnish serves stale content from cache for three days (or as defined in beresp.grace
) plus the remaining TTL (which by default is one day), unless the cached content is manually purged.
Saint mode
Saint mode blacklists unhealthy backends for a configurable amount of time. As a result, unhealthy backends cannot serve traffic when using Varnish as a load balancer. Saint mode can be used in conjunction with grace mode to allow for complex handling of unhealthy backend servers. For example, if one backend server is unhealthy, retries can be routed to another server. If all other servers are down, then serve stale cached objects. The saint mode backend hosts and blackout periods are defined in the default.vcl
file.
Saint mode can also be used when Magento instances are individually taken offline to perform maintenance and upgrade tasks without affecting the availability of the Magento site.
Saint mode prerequisites
You should designate one machine as the primary installation. On this machine, install the main instance of Magento, mySQL database, and Varnish.
On all other machines, the Magento instance must have access the primary machine’s mySQL database. The secondary machines should also have access to the files of the primary Magento instance.
Alternatively, static files versioning can be turned off on all machines. This can be accessed from the Admin under Stores > Configuration > Advanced > Developer > Static Files Settings > Sign Static Files = No.
Finally, all Magento instances must be in production mode. Before Varnish starts, clear the cache on each instance. In Admin, go to System > Cache Management and click Flush Magento Cache. You can also run the following command to clear the cache:
bin/magento cache:flush
Installation
Saint mode is not part of the main Varnish package. It is a separately-versioned vmod that must be downloaded and installed. As a result, you should re-compile Varnish from source, as described in the following articles:
After you’ve recompiled, you can install the Saint mode module. In general, follow these steps:
Obtain the source code from Varnish modules . Clone the git version (master version) since the 0.9.x versions contain a source code error.
Build the source code with autotools:
sudo apt-get install libvarnishapi-dev || sudo yum install varnish-libs-devel
./bootstrap # If running from git.
./configure
make
make check # optional
sudo make install
See Varnish module collection for information about installing the Saint mode module.
Sample vcl
file
The following code example shows the code that must be added to your VCL file to enable saint mode. Place the import
statements and backend
definitions at the top of the file.