Skip to content

Commit 0add07e

Browse files
Split checks into hypernode and application specific
1 parent cba1c6a commit 0add07e

File tree

1 file changed

+32
-19
lines changed

1 file changed

+32
-19
lines changed

docs/hypernode-platform/autoscaling/how-does-horizontal-autoscaling-work.md

Lines changed: 32 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,19 @@ Horizontal autoscaling is available on all the Falcon cloud plans (OpenStack).
5757

5858
Next to the provider, horizontal autoscaling does have a couple of additional requirements.
5959

60-
### Supported CMS
60+
We will divide them between Hypernode-specific and Application-specific requirements
6161

62-
Horizontal autoscaling is available for Magento2.
63-
To make use of Horizontal autoscaling, there are a couple of other requirements the Hypernode and the application should meet:
62+
### Hypernode Specific Requirements
6463

65-
### Operating system
64+
#### Operating system
6665

6766
- The operating system of the Hypernode should be Debian Bookworm
6867

69-
### Enable and configure Varnish
68+
#### Make sure the Hypernode is a production plan
69+
70+
Unfortunately we don't support Horizontal autoscaling for development plans.
71+
72+
#### Enable and configure Varnish
7073

7174
To make use of Horizontal autoscaling, Varnish should be enabled and configured on the Hypernode.
7275
You can check if Varnish is enabled on your Hypernode by running
@@ -104,7 +107,7 @@ acl purge {
104107
}
105108
```
106109

107-
### Enable and configure Redis Persistent
110+
#### Enable and configure Redis Persistent
108111

109112
Redis persistent is another requirement before you can make use of Horizontal autoscaling.
110113
The persistent instance will be used to store the sessions so we can access the same sessions from the Horizontal autoscale Hypernodes.
@@ -130,17 +133,7 @@ hypernode-systemctl settings redis_persistent_instance --value True
130133
Make sure Redis session is configured as [described](../../ecommerce-applications/magento-2/how-to-configure-redis-for-magento-2.md#configure-magento-2-to-use-redis-as-the-session-store) in our docs
131134
Please notice the Redis host in the setup documentation. The Redis host should be set to `redismaster` instead of `localhost` or `127.0.0.1`.
132135

133-
### Make sure Elasticsearch/Opensearch configured properly
134-
135-
Please make sure Elasticsearch or Opensearch host is set to `elasticsearchmaster` in the Magento2 configuration file at `<magento_root>/app/etc/env.php`
136-
More information about [Elasticsearch o Hypernode](../../hypernode-platform/tools/how-to-use-elasticsearch-on-hypernode.md)
137-
138-
### Make sure RabbitMQ configured properly
139-
140-
Please make sure RabbitMQ host is set to `rabbitmqmaster` in the Magento2 configuration file at `<magento_root>/app/etc/env.php`
141-
More information about [RabbitMQ o Hypernode](../../best-practices/database/how-to-run-rabbitmq-on-hypernode.md)
142-
143-
### Make sure to use MySQL 5.7 or higher
136+
#### Make sure to use MySQL 5.7 or higher
144137

145138
The configured MySQL version should be 5.7 or above. You can check the enabled MySQL version by running the following command.
146139

@@ -160,9 +153,29 @@ After the version validation, please verify the MySQL host is set to `mysqlmaste
160153

161154
You should see something similar to `'host' => 'mysqlmaster',`. If this is not the case please make sure the database connection host is set to `mysqlmaster` instead of `localhost` or `127.0.0.1` in the magento configuration file at `<magento_root>/app/etc/env.php`.
162155

163-
### Make sure the Hypernode is a production plan
156+
### Application Specific Requirements - Magento2
164157

165-
Unfortunately we don't support Horizontal autoscaling for development plans.
158+
#### Supported CMS
159+
160+
Horizontal autoscaling is available for Magento2.
161+
To make use of Horizontal autoscaling, there are a couple of other requirements the application should meet.
162+
163+
#### Make sure Elasticsearch/Opensearch configured properly
164+
165+
Please make sure Elasticsearch or Opensearch host is set to `elasticsearchmaster` in the Magento2 configuration file at `<magento_root>/app/etc/env.php`
166+
More information about [Elasticsearch o Hypernode](../../hypernode-platform/tools/how-to-use-elasticsearch-on-hypernode.md)
167+
168+
#### Make sure RabbitMQ configured properly
169+
170+
Please make sure RabbitMQ host is set to `rabbitmqmaster` in the Magento2 configuration file at `<magento_root>/app/etc/env.php`
171+
More information about [RabbitMQ o Hypernode](../../best-practices/database/how-to-run-rabbitmq-on-hypernode.md)
172+
Also make sure to configured RabbitMQ without guest user.
173+
174+
#### Make sure Database storage is disabled & Remote storage is enabled and configured.
175+
176+
Please make sure to enable remote storage for your application and configure it correctly as only AWS-s3 remote storage drivers are supported.
177+
178+
Make sure that the `remote_storage` key is present in the Magento2 configuration file at `<magento_root>/app/etc/env.php` with the correct config.
166179

167180
## Enabling Horizontal Autoscaling
168181

0 commit comments

Comments
 (0)