The server-side delta feature is currently in beta testing and available only for the enterprise plan.
Mender Enterprise supports the server-side generation of Delta Artifacts. This document explains the prerequisites to enable this feature and how it works.
To enable this feature on your Enterprise plan in hosted Mender, please get in touch with the Mender support team with the topic title "Enable server-side delta".
This feature is available starting from the Mender Product bundle version 3.6.
In case of installations in your own infrastructure, there is additional step required: setting the configuration in the deployments service. To this end, and in order to enable the server side delta generation, you have to call an internal endpoint like that:
TENANT_ID=your_tenant_id
curl -v -H "Content-Type: application/json;" -XPUT -d '{ "delta": { "enabled": true, "binary_delta_limits": { "jobs_in_parallel": { "max": 2 }, "queue_length": { "max": 4 } }, "binary_delta": { "timeout": 3600 } } }' http://mender-deployments:8080/api/internal/v1/deployments/tenants/${TENANT_ID}/config
Where your_tenant_id
stands for the id of your tenant for which you enable the feature.
This feature is available starting from the Mender Client version 3.5 or the Mender Product Bundle version 3.6.
Delta updates aren't supported with devices running UBIFS. If this is your use case please contact us at support@mender.io
To support the server-side generation of Delta Artifacts, your device must report the availability of the mender-binary-delta
Update Module to the server.
This will happen automatically if you are building your firmware using Yocto and the meta-mender
layer.
Otherwise, create and install your own bootstrap Artifact to provide these keys:
mender-artifact write bootstrap-artifact \
--artifact-name mender-binary-delta-provide-keys \
--device-type <dev-type> \
--provides "rootfs-image.update-module.mender-binary-delta.mender_update_module:mender-binary-delta" \
--provides "rootfs-image.update-module.mender-binary-delta.version:<version>" \
--output-path mender-binary-delta-provide-keys.mender
The Artifact can be installed in standalone mode or remotely deployed with the Mender Server.
Additionally, to make the server-side generation of Delta Artifacts possible, the Mender Artifact of the current version of the rootfs-image
running on your device and the updated one must be available as Artifact on the Mender Server.
You can enable this feature by selecting the option "Generate and deploy Delta Artifacts (where available)" when you create a deployment for your devices. This option will enable the server-side generation of Delta Artifacts when turned on.
When you target a device running the Mender Client and the Binary Delta Update Module (see Prerequisites above for details) with a deployment where this option is active, the Mender Server tries to look up the correct Delta Artifact from the firmware (rootfs
) version currently running on the Device to the desired version you selected with the deployment.
If the Delta Artifact already exists, the Mender Server selects it and sends the corresponding deployment instructions to the Device. However, if the Delta Artifact does not exist, it will start a Delta Artifact generation job in the background to create it. In this case, the Device will temporarily receive a No updates
response from the Server. Deployment will be in the state pending
during the generation of the delta artifact. The resulting Delta Artifact will be served to the Device in the next update polling cycle after the generation has finished.
A successfully generated artifact will be visible in the Releases section under the name of the original rootfs artifact.
Please note that if the Server cannot generate the Delta Artifact, it will automatically fall back to the non-Delta Artifact. Possible reasons are:
provides
database keys;rootfs
) version the Device is currently running on is not available in the Mender Server.You can customize the Delta Artifact generation settings in the Global settings of your tenant. You can specify a timeout for the generation job; the Mender Server will serve the full image if the server-side generation of the Delta Artifact takes more than the given amount of seconds. You can also set the xDelta3 arguments to customize the Delta generation and the compression level. Please refer to the Create a Delta update Artifact chapter for more information about the available options.
The settings apply to the newly generated Delta Artifacts only. Existing Delta Artifacts previously uploaded to the Mender Server won't be affected by the changes to these values.
The Mender Server will trigger the generation of a binary delta artifact and offer it for deployment only if all the following conditions are met:
rootfs.version
rootfs.chksum
rootfs.version
and rootfs.chksum
mender-binary-delta
module in its available update_modules
If any of these conditions are not met, the server will not trigger the generation of a binary delta artifact.
© 2024 Northern.tech AS