The instructions below use make
commands. However, make
is not always
available in a production/build environments. If it is not, you can move the actual commands from the
Makefile into your own scripts and execute them instead.
For any deployment method, when performing the first deployment, it is wise to deploy and prepare the index first, then enable Lightna rendering once the index is ready.
It's important to change the mode to production on the server for proper security, edit
env.php
and set 'mode' => 'prod'
.
For simple projects without a pipeline or a build stage, the following steps are sufficient:
env.php
and apply changes using ./cli
config.apply
.
make
install
.
make build
.make schema.update
./cli
index.entity.invalidate
or ./cli index.update.all
In the context of Lightna, seamless deployment ensures that changes to the index do not break the website. This applies to cases such as:
Starting from here, we consider that the project has a pipeline setup and a build stage.
Preconditions
edition
directory in Lightna is shared across all nodes.compiler_dir
– Contains the compiled build, configured in
config.php
asset_dir
– Contains compiled assets, configured in config.php
storage.opcache.options.dir
is
writable for the indexer.
A backward-compatible deployment means that the development team acknowledges the asynchronous nature of the index and takes responsibility for delivering changes seamlessly.
While this method allows for the possibility of mistakes due to human error or extra conditions in the code that make it less clean, or more deployments, it is nevertheless widely used, especially in complex projects with large databases. You can find detailed guidance and recommendations on the internet under the topic: Ensuring Backward Compatibility in Distributed Systems.
In addition to your existing deployment, you need to add the following:
make install && make build
are completed and that
compiler_dir
and asset_dir
are delivered to the server.
./cli
config.apply
.
make schema.update
.
./cli
index.entity.invalidate
or ./cli index.update.all
This approach helps mitigate extra development routines related to backward-compatible deployment. The main idea is to create a new version of the index while keeping the server using the previous version until the new code is deployed.
In addition to a backward-compatible deployment, you need to add the following steps:
./cli
index.queue.block
.
./cli index.version.bind
./cli index.update.all --next-version
./cli
index.version.up
./cli index.queue.unblock
./cli index.gc
As you might notice, this method requires double the amount of memory for index storage.