Cluster Setup
The setup of high-scaling systems differs from a normal installation of Shopware. They are completely customized stores with individual templates and extensions.
This guide contains information for everyone who intends to start with such a project.
Shopware configuration
INFO
This configuration is available starting with Shopware version 6.5.6.0
To configure Shopware for a cluster setup, you have to set the following configuration in your shopware.yaml file:
shopware:
deployment:
cluster_setup: true
This option prevents shopware from running operations locally (meaning only on one node in a cluster), that potentially can corrupt the state of the cluster by having the state of the nodes diverge from each other, e.g. clearing symfony cache files at runtime.
Symfony Flex template
Use the Symfony Flex template and pin the Shopware versions in the composer.json
file. This prevents unwanted updates when deploying (without a composer.lock).
Sources
The following folders are available in the production template:
- /src: Here, the project specific bundles and sources can be stored.
- /config: Here are the .yaml config files and other possible configurations (routing, admin configs, etc).
- /config/bundles.php: In this file, all Symfony bundles are defined, which should be included in the project.
Third-party sources
Most big-scale projects have a development team assigned. It is responsible for the stability and performance of the system. The integration of external sources via apps or plugins can be useful but should always be viewed with a critical eye. By including those sources, the development team relinquishes control over parts of the system. We recommend including necessary plugins as Composer packages instead of user-managed plugins.
Redis
We recommend setting up at least five Redis servers for the following resources:
- Session + cart
- cache.object
- Lock + Increment storage
- Number Ranges
- Message Queue
Instead of setting up a Redis server formessenger
, you can also work directly with RabbitMQ
The PHP Redis extension provides persistent Redis connections. Persistent connections can help in high load scenarios as each request doesn't have to open and close connections. Using non-persistent Redis connections can also hit the system's maximum open sockets. Because of these limitations, the Redis extension is preferred over Predis.
When a Redis cluster is in usage, the php.ini
setting redis.clusters.cache_slots=1
should be set to skip the cluster node lookup on each connection.
Database cluster
We have compiled some best practices and configurations to allow you to operate Shopware in a clustered database environment. Please refer to the guide below.
Filesystem
In a multi-app-server system, manage specific directories over a shared filesystem. This includes assets, theme files, and private as well as public filesystems. The recommendation is to use an S3 compatible bucket.
For more information, refer to the filesystems section of this guide.
Shared directories
Besides the S3 bucket, it is also necessary to create certain directories for the app servers as shared filesystem.
Shopware updates + security
To update your project, we always recommend using a staging environment. However, updates for a project should only be obtained if there are critical problems with the system or if essential features have been provided by Shopware. Updates of such systems require a certain amount of effort, as issues often arise during deployments to production systems.
Security plugin
For obtaining security fixes, without version upgrades, we provide a dedicated Security plugin. This is compatible with all Shopware versions and corresponding hot fixes are only included in versions that are affected.
Update of composer dependencies
To ensure the security of your Shopware installation, it's essential to be vigilant about third-party dependencies that might be affected by security vulnerabilities. In that case, a new Shopware version will be released with updated dependencies. If an update to the latest Shopware version in a timely manner is not possible, it is recommended to update the affected dependency manually. This can be done by using the following command:
composer update <dependency-name>
To identify any potential security risk in your current dependencies, it's a good practice to regularly run the composer audit
command. This command scans your dependencies and alerts you if there are any known vulnerabilities that need to be addressed.
Disable auto-update
Shopware's integrated auto-update functionality should be disabled to prevent unwanted updates. Also, this feature is not multi-app server compatible and should be controlled via deployment.
shopware:
auto_update:
enabled: false
Message queue
On a productive system, the message queue should be processed via CLI processes instead of the Admin worker. This way, messages are completed regardless of logged-in Administration users and CPU load, as messages can be regulated through the amount of worker processes. Furthermore, you can change the transport to another system like RabbitMQ.
It is recommended to run multiple messenger:consume
workers. To automatically start the processes again after they stopped because of exceeding the given limits you can use a process control system like systemd or supervisor.
Own queue
It is also recommended to define your own message queue in addition to the standard message queue. This gives you more control over the load distribution and allows you to prioritize your own processes higher than the data indexing of Shopware.
Monitoring
Likewise, we recommend setting up an appropriate monitoring dashboard with well-known software such as:
Local machines
It is important to keep the local development environments of the developers similar to the live environments. A development environment without Redis or Elasticsearch is always too far away from reality and often leads to complications after deployment. Therefore, it is advisable to maintain internal documentation on how to deploy the server structure and how to set up local machines.
Theme compiling
The theme compilation in Shopware by default depends on the settings in the database. However, since a connection to the database is usually not guaranteed during deployment, we recommend configuring static theme compilation.
Strong CPU
For the server setup, pay special attention to CPU speed. This applies to all servers (app, SQL, Elasticsearch, Redis). Usually, it is more optimal to choose a slightly stronger CPU. This has to be determined more precisely depending on the project and load. Experience has shown that systems with powerful CPUs finish processes faster and can release resources sooner.
Health Check
INFO
This feature is available starting with Shopware version 6.5.5.0
Use the Shopware-provided Health Check API (/api/_info/health-check
) to monitor the health of your Shopware app server. It responds with HTTP status 200
when the Shopware Application is working and 50x
when it is not. For docker, you can use: HEALTHCHECK CMD curl --fail http://localhost/api/_info/health-check || exit 1
Performance tweaks
When setting up big-scale projects, there are some settings and conditions that should be taken into account with regard to performance.
Read more on performance tweaks.